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
7a495280
Commit
7a495280
authored
8 years ago
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix some 'does not realized'
parent
ca1137db
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
7 deletions
+10
-7
epm-filelist
bin/epm-filelist
+2
-2
epm-info
bin/epm-info
+1
-1
epm-packages
bin/epm-packages
+1
-1
epm-query_file
bin/epm-query_file
+1
-1
epm-search_file
bin/epm-search_file
+2
-2
epm-whatdepends
bin/epm-whatdepends
+3
-0
No files found.
bin/epm-filelist
View file @
7a495280
...
@@ -64,7 +64,7 @@ __epm_filelist_remote()
...
@@ -64,7 +64,7 @@ __epm_filelist_remote()
docmd_foreach __deb_local_content_filelist
$@
docmd_foreach __deb_local_content_filelist
$@
;;
;;
*
)
*
)
fatal
"Query filelist for non installed packages
does not realized
"
fatal
"Query filelist for non installed packages
is not implemented yet.
"
;;
;;
esac
esac
}
}
...
@@ -134,7 +134,7 @@ __epm_filelist_name()
...
@@ -134,7 +134,7 @@ __epm_filelist_name()
return
return
;;
;;
slackpkg
)
slackpkg
)
is_installed
$@
||
fatal
"Query filelist for non installed packages
does not realized
"
is_installed
$@
||
fatal
"Query filelist for non installed packages
is not implemented yet
"
docmd
awk
'BEGIN{desk=1}{if(/^FILE LIST:$/){desk=0} else if (desk==0) {print}}'
/var/log/packages/
${
pkg_filenames
}*
| less
docmd
awk
'BEGIN{desk=1}{if(/^FILE LIST:$/){desk=0} else if (desk==0) {print}}'
/var/log/packages/
${
pkg_filenames
}*
| less
return
return
;;
;;
...
...
This diff is collapsed.
Click to expand it.
bin/epm-info
View file @
7a495280
...
@@ -29,7 +29,7 @@ __epm_info_rpm_low()
...
@@ -29,7 +29,7 @@ __epm_info_rpm_low()
}
}
# TODO: separate to _files and _names parts
# TODO: separate to _files and _names parts
#
realize
_files part per package, not by PMTYPE (see filelist)
#
implement
_files part per package, not by PMTYPE (see filelist)
epm_info
()
epm_info
()
{
{
...
...
This diff is collapsed.
Click to expand it.
bin/epm-packages
View file @
7a495280
...
@@ -29,7 +29,7 @@ case $PMTYPE in
...
@@ -29,7 +29,7 @@ case $PMTYPE in
docmd dpkg-query
-W
--showformat
=
"
\$
{Size}.
\$
{Package}-
\$
{Version}
\n
"
$pkg_filenames
|
sort
-n
docmd dpkg-query
-W
--showformat
=
"
\$
{Size}.
\$
{Package}-
\$
{Version}
\n
"
$pkg_filenames
|
sort
-n
;;
;;
*
)
*
)
fatal
"Sorted package list
are not realiz
ed for
$PMTYPE
"
fatal
"Sorted package list
function is not implement
ed for
$PMTYPE
"
;;
;;
esac
esac
}
}
...
...
This diff is collapsed.
Click to expand it.
bin/epm-query_file
View file @
7a495280
...
@@ -118,7 +118,7 @@ __do_query()
...
@@ -118,7 +118,7 @@ __do_query()
;;
;;
aptcyg
)
aptcyg
)
#CMD="apt-cyg packageof"
#CMD="apt-cyg packageof"
#
do not realiz
ed locally
#
is not implement
ed locally
return
1
return
1
;;
;;
*
)
*
)
...
...
This diff is collapsed.
Click to expand it.
bin/epm-search_file
View file @
7a495280
...
@@ -72,12 +72,12 @@ case $PMTYPE in
...
@@ -72,12 +72,12 @@ case $PMTYPE in
return
;;
return
;;
yum-rpm
)
yum-rpm
)
# TODO
# TODO
info
"Search by full packages list
does not realized
"
info
"Search by full packages list
is not implemented yet
"
CMD
=
"yum provides"
CMD
=
"yum provides"
;;
;;
dnf-rpm
)
dnf-rpm
)
# TODO
# TODO
info
"Search by full packages list
does not realized
"
info
"Search by full packages list
i snot implemented yet
"
CMD
=
"dnf provides"
CMD
=
"dnf provides"
;;
;;
urpm-rpm
)
urpm-rpm
)
...
...
This diff is collapsed.
Click to expand it.
bin/epm-whatdepends
View file @
7a495280
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# TODO: will it has local only mode?
load_helper epm-print
load_helper epm-print
epm_whatdepends
()
epm_whatdepends
()
...
@@ -44,6 +46,7 @@ case $PMTYPE in
...
@@ -44,6 +46,7 @@ case $PMTYPE in
CMD
=
"urpmq --whatrequires"
CMD
=
"urpmq --whatrequires"
;;
;;
dnf-rpm
)
dnf-rpm
)
# check command: dnf repoquery --whatrequires
CMD
=
"repoquery --whatrequires"
CMD
=
"repoquery --whatrequires"
;;
;;
emerge
)
emerge
)
...
...
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