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
Nurlan
eepm
Commits
0391547b
Commit
0391547b
authored
5 years ago
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more clean and strict rules
parent
563f545d
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
22 additions
and
36 deletions
+22
-36
epm-dedup
bin/epm-dedup
+2
-3
epm-download
bin/epm-download
+2
-2
epm-install
bin/epm-install
+2
-2
epm-packages
bin/epm-packages
+6
-13
epm-policy
bin/epm-policy
+3
-3
epm-query_file
bin/epm-query_file
+1
-7
epm-remove
bin/epm-remove
+6
-6
No files found.
bin/epm-dedup
View file @
0391547b
...
@@ -49,9 +49,8 @@ try_fix_apt_rpm_dupls()
...
@@ -49,9 +49,8 @@ try_fix_apt_rpm_dupls()
epm_dedup
()
epm_dedup
()
{
{
case
$PMTYPE
in
case
"
$DISTRNAME
"
in
apt-rpm
)
"ALTLinux"
)
# ALT Linux only
assure_exists /usr/share/apt/scripts apt-scripts
assure_exists /usr/share/apt/scripts apt-scripts
if
[
-f
/usr/share/apt/scripts/dedup.lua
]
;
then
if
[
-f
/usr/share/apt/scripts/dedup.lua
]
;
then
"Check for duplicates via apt-get dedup from apt-scripts"
"Check for duplicates via apt-get dedup from apt-scripts"
...
...
This diff is collapsed.
Click to expand it.
bin/epm-download
View file @
0391547b
...
@@ -184,8 +184,8 @@ epm_download()
...
@@ -184,8 +184,8 @@ epm_download()
{
{
local
CMD
local
CMD
case
$DISTRNAME
in
case
$DISTRNAME
-
$PMTYPE
in
ALTLinux
)
ALTLinux
-apt-rpm
)
__epm_download_alt
$pkg_filenames
__epm_download_alt
$pkg_filenames
return
return
;;
;;
...
...
This diff is collapsed.
Click to expand it.
bin/epm-install
View file @
0391547b
...
@@ -442,10 +442,10 @@ epm_print_install_command()
...
@@ -442,10 +442,10 @@ epm_print_install_command()
#[ -z "$1" ] && return
#[ -z "$1" ] && return
[
-z
"
$1
"
]
&&
[
-n
"
$pkg_names
"
]
&&
return
[
-z
"
$1
"
]
&&
[
-n
"
$pkg_names
"
]
&&
return
case
$PMTYPE
in
case
$PMTYPE
in
apt-rpm|yum-rpm|urpm-rpm|zypper-rpm|dnf
-rpm
)
*
-rpm
)
echo
"rpm -Uvh --force
$nodeps
$*
"
echo
"rpm -Uvh --force
$nodeps
$*
"
;;
;;
apt-dpkg|aptitude
-dpkg
)
*
-dpkg
)
echo
"dpkg -i
$*
"
echo
"dpkg -i
$*
"
;;
;;
pkgsrc
)
pkgsrc
)
...
...
This diff is collapsed.
Click to expand it.
bin/epm-packages
View file @
0391547b
...
@@ -23,12 +23,12 @@ __epm_packages_sort()
...
@@ -23,12 +23,12 @@ __epm_packages_sort()
{
{
# FIXME: sort depends on --sort value
# FIXME: sort depends on --sort value
case
$PMTYPE
in
case
$PMTYPE
in
apt-rpm|yum-rpm|urpm-rpm|zypper-rpm|dnf
-rpm
)
*
-rpm
)
# FIXME: space with quotes problems, use point instead
# FIXME: space with quotes problems, use point instead
warmup_rpmbase
warmup_rpmbase
docmd rpm
-qa
--queryformat
"%{size}@%{name}-%{version}-%{release}
\n
"
$pkg_filenames
|
sed
-e
"s|@| |g"
|
sort
-n
-k1
docmd rpm
-qa
--queryformat
"%{size}@%{name}-%{version}-%{release}
\n
"
$pkg_filenames
|
sed
-e
"s|@| |g"
|
sort
-n
-k1
;;
;;
apt
-dpkg
)
*
-dpkg
)
warmup_dpkgbase
warmup_dpkgbase
docmd dpkg-query
-W
--showformat
=
"
\$
{Installed-Size}@
\$
{Package}-
\$
{Version}:
\$
{Architecture}
\n
"
$pkg_filenames
|
sed
-e
"s|@| |g"
|
sort
-n
-k1
docmd dpkg-query
-W
--showformat
=
"
\$
{Installed-Size}@
\$
{Package}-
\$
{Version}:
\$
{Architecture}
\n
"
$pkg_filenames
|
sed
-e
"s|@| |g"
|
sort
-n
-k1
;;
;;
...
@@ -57,13 +57,6 @@ epm_packages()
...
@@ -57,13 +57,6 @@ epm_packages()
[
-n
"
$sort
"
]
&&
__epm_packages_sort
&&
return
[
-n
"
$sort
"
]
&&
__epm_packages_sort
&&
return
case
$PMTYPE
in
case
$PMTYPE
in
apt-rpm
)
warmup_rpmbase
# FIXME: strong equal
CMD
=
"rpm -qa
$pkg_filenames
"
[
-n
"
$short
"
]
&&
CMD
=
"rpm -qa --queryformat %{name}
\n
$pkg_filenames
"
docmd
$CMD
return
;;
*
-dpkg
)
*
-dpkg
)
warmup_dpkgbase
warmup_dpkgbase
# FIXME: strong equal
# FIXME: strong equal
...
@@ -74,10 +67,7 @@ case $PMTYPE in
...
@@ -74,10 +67,7 @@ case $PMTYPE in
showcmd
$CMD
showcmd
$CMD
$CMD
|
grep
"^i"
|
sed
-e
"s|.* ||g"
| __fo_pfn
$CMD
|
grep
"^i"
|
sed
-e
"s|.* ||g"
| __fo_pfn
return
;;
return
;;
snappy
)
*
-rpm
)
CMD
=
"snappy info"
;;
yum-rpm|urpm-rpm|zypper-rpm|dnf-rpm
)
warmup_rpmbase
warmup_rpmbase
# FIXME: strong equal
# FIXME: strong equal
CMD
=
"rpm -qa
$pkg_filenames
"
CMD
=
"rpm -qa
$pkg_filenames
"
...
@@ -87,6 +77,9 @@ case $PMTYPE in
...
@@ -87,6 +77,9 @@ case $PMTYPE in
packagekit-
*
)
packagekit-
*
)
docmd pkcon get-packages
--filter
installed
docmd pkcon get-packages
--filter
installed
;;
;;
snappy
)
CMD
=
"snappy info"
;;
emerge
)
emerge
)
CMD
=
"qlist -I -C"
CMD
=
"qlist -I -C"
# print with colors for console output
# print with colors for console output
...
...
This diff is collapsed.
Click to expand it.
bin/epm-policy
View file @
0391547b
#!/bin/sh
#!/bin/sh
#
#
# Copyright (C) 2015, 2017 Etersoft
# Copyright (C) 2015, 2017
, 2019
Etersoft
# Copyright (C) 2015, 2017 Vitaly Lipatov <lav@etersoft.ru>
# Copyright (C) 2015, 2017
, 2019
Vitaly Lipatov <lav@etersoft.ru>
#
#
# This program is free software: you can redistribute it and/or modify
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# it under the terms of the GNU Affero General Public License as published by
...
@@ -31,7 +31,7 @@ warmup_bases
...
@@ -31,7 +31,7 @@ warmup_bases
pkg_names
=
$(
__epm_get_hilevel_name
$pkg_names
)
pkg_names
=
$(
__epm_get_hilevel_name
$pkg_names
)
case
$PMTYPE
in
case
$PMTYPE
in
apt-
rpm
)
apt-
*
)
docmd apt-cache policy
$pkg_names
docmd apt-cache policy
$pkg_names
;;
;;
packagekit-
*
)
packagekit-
*
)
...
...
This diff is collapsed.
Click to expand it.
bin/epm-query_file
View file @
0391547b
...
@@ -78,17 +78,11 @@ __do_query()
...
@@ -78,17 +78,11 @@ __do_query()
{
{
local
CMD
local
CMD
case
$PMTYPE
in
case
$PMTYPE
in
apt-rpm
)
CMD
=
"rpm -qf"
;;
*
-dpkg
)
*
-dpkg
)
showcmd dpkg
-S
"
$1
"
showcmd dpkg
-S
"
$1
"
dpkg_print_name_version
"
$(
dpkg
-S
$1
|
grep
-v
"^diversion by"
|
sed
-e
"s|:.*||"
)
"
dpkg_print_name_version
"
$(
dpkg
-S
$1
|
grep
-v
"^diversion by"
|
sed
-e
"s|:.*||"
)
"
return
;;
return
;;
yum-rpm|dnf-rpm|urpm-rpm
)
*
-rpm
)
CMD
=
"rpm -qf"
;;
zypper-rpm
)
CMD
=
"rpm -qf"
CMD
=
"rpm -qf"
;;
;;
emerge
)
emerge
)
...
...
This diff is collapsed.
Click to expand it.
bin/epm-remove
View file @
0391547b
#!/bin/sh
#!/bin/sh
#
#
# Copyright (C) 2012-2014, 2016, 2017 Etersoft
# Copyright (C) 2012-2014, 2016, 2017
, 2019
Etersoft
# Copyright (C) 2012-2014, 2016, 2017 Vitaly Lipatov <lav@etersoft.ru>
# Copyright (C) 2012-2014, 2016, 2017
, 2019
Vitaly Lipatov <lav@etersoft.ru>
#
#
# This program is free software: you can redistribute it and/or modify
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# it under the terms of the GNU Affero General Public License as published by
...
@@ -30,10 +30,10 @@ epm_remove_low()
...
@@ -30,10 +30,10 @@ epm_remove_low()
warmup_lowbase
warmup_lowbase
case
$PMTYPE
in
case
$PMTYPE
in
apt-rpm|yum-rpm|zypper-rpm|urpm-rpm|dnf
-rpm
)
*
-rpm
)
sudocmd rpm
-ev
$nodeps
$@
sudocmd rpm
-ev
$nodeps
$@
return
;;
return
;;
apt-dpkg|aptitude
-dpkg
)
*
-dpkg
|
-dpkg
)
# shellcheck disable=SC2046
# shellcheck disable=SC2046
sudocmd dpkg
-P
$(
subst_option nodeps
--force-all
)
$(
print_name
"
$@
"
)
sudocmd dpkg
-P
$(
subst_option nodeps
--force-all
)
$(
print_name
"
$@
"
)
return
;;
return
;;
...
@@ -204,10 +204,10 @@ epm_remove_nonint()
...
@@ -204,10 +204,10 @@ epm_remove_nonint()
epm_print_remove_command
()
epm_print_remove_command
()
{
{
case
$PMTYPE
in
case
$PMTYPE
in
apt-rpm|yum-rpm|zypper-rpm|urpm-rpm|dnf
-rpm
)
*
-rpm
)
echo
"rpm -ev
$nodeps
$*
"
echo
"rpm -ev
$nodeps
$*
"
;;
;;
apt-dpkg|aptitude
-dpkg
)
*
-dpkg
)
echo
"dpkg -P
$*
"
echo
"dpkg -P
$*
"
;;
;;
packagekit-
*
)
packagekit-
*
)
...
...
This diff is collapsed.
Click to expand it.
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