Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav
eepm
Commits
8ebc1c2d
Commit
8ebc1c2d
authored
Aug 19, 2015
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Plain Diff
backported to p7 as 1.5.17-alt0.M70P.1 (with rpmbph script)
parents
1841bca5
f956f29b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
11 deletions
+30
-11
epm-changelog
bin/epm-changelog
+2
-2
epm-check_updated_repo
bin/epm-check_updated_repo
+20
-6
epm-sh-functions
bin/epm-sh-functions
+1
-1
eepm.spec
eepm.spec
+7
-2
No files found.
bin/epm-changelog
View file @
8ebc1c2d
...
...
@@ -35,7 +35,7 @@ __epm_changelog_files()
case
$(
get_package_type
$1
)
in
rpm
)
assure_exists rpm
docmd_foreach
"rpm -p --changelog"
$@
| less
docmd_foreach
"rpm -
q -
p --changelog"
$@
| less
;;
# deb)
#
...
...
@@ -52,7 +52,7 @@ __epm_changelog_local_names()
case
$PMTYPE
in
apt-rpm|yum-rpm|dnf-rpm|urpm-rpm|zypper-rpm
)
docmd_foreach
"rpm --changelog"
$@
| less
docmd_foreach
"rpm -
q -
-changelog"
$@
| less
;;
apt-dpkg|aptitude-dpkg
)
docmd zcat /usr/share/doc/
$1
/changelog.Debian.gz | less
...
...
bin/epm-check_updated_repo
View file @
8ebc1c2d
...
...
@@ -17,15 +17,31 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
__is_repo_info_download
()
__is_repo_info_download
ed
()
{
case
$PMTYPE
in
apt-
*
)
if
[
-r
/var/cache/apt
]
;
then
# FIXME: only if root permissions
# FIXME: only if root permissions, now skip for user
test
-r
/var/cache/apt/pkgcache.bin
||
return
fi
;;
*
)
;;
esac
return
0
}
__is_repo_info_uptodate
()
{
case
$PMTYPE
in
apt-
*
)
if
[
-r
/var/cache/apt
]
;
then
# FIXME: only if root permissions, now skip for user
test
-r
/var/cache/apt/pkgcache.bin
||
return
# if repo older than 1 day, return false
test
-n
"
$(
find /var/cache/apt/pkgcache.bin
-ctime
+1
)
"
||
return
# find print string if file is obsoleted
test
-z
"
$(
find /var/cache/apt/pkgcache.bin
-mtime
+1
)
"
||
return
fi
;;
*
)
...
...
@@ -36,12 +52,10 @@ __is_repo_info_download()
update_repo_if_needed
()
{
if
!
__is_repo_info_download
;
then
if
!
__is_repo_info_download
ed
||
!
__is_repo_info_uptodate
;
then
load_helper epm-update
epm_update
return
fi
# TODO: if repo info is very obsoleted (a few days?), we need run update
}
bin/epm-sh-functions
View file @
8ebc1c2d
...
...
@@ -283,7 +283,7 @@ set_eatmydata()
# use if possible
which eatmydata
>
/dev/null 2>/dev/null
||
return
SUDO
=
"
$SUDO
eatmydata"
info
"Uwaga! eatmydata is installed, we will use it for disable all sync operations."
[
-n
"
$verbose
"
]
&&
info
"Uwaga! eatmydata is installed, we will use it for disable all sync operations."
return
0
}
...
...
eepm.spec
View file @
8ebc1c2d
# This spec is backported to ALTLinux p7 automatically by rpmbph script. Do not edit it.
#
Name: eepm
Version: 1.5.1
6
Version: 1.5.1
7
Release: alt0.M70P.1
Summary: Etersoft EPM package manager
...
...
@@ -67,9 +67,14 @@ chmod a+x %buildroot%_datadir/%name/{serv-,epm-}*
%_sysconfdir/bash_completion.d/cerv
%changelog
*
Sun Aug 16 2015 Vitaly Lipatov <lav@altlinux.ru> 1.5.16
-alt0.M70P.1
*
Wed Aug 19 2015 Vitaly Lipatov <lav@altlinux.ru> 1.5.17
-alt0.M70P.1
- backport to ALTLinux p7 (by rpmbph script)
* Wed Aug 19 2015 Vitaly Lipatov <lav@altlinux.ru> 1.5.17-alt1
- fix update repo checking
- print Uwaga about eatmydata only if verbose mode
- changelog: use query rpm mode for --changelog
* Sun Aug 16 2015 Vitaly Lipatov <lav@altlinux.ru> 1.5.16-alt1
- run update if repo info older than 1 day
- epm-query_file: fix read link
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment