Commit 7a495280 authored by Vitaly Lipatov's avatar Vitaly Lipatov

fix some 'does not realized'

parent ca1137db
......@@ -64,7 +64,7 @@ __epm_filelist_remote()
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
}
......@@ -134,7 +134,7 @@ __epm_filelist_name()
return
;;
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
return
;;
......
......@@ -29,7 +29,7 @@ __epm_info_rpm_low()
}
# 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()
{
......
......@@ -29,7 +29,7 @@ case $PMTYPE in
docmd dpkg-query -W --showformat="\${Size}.\${Package}-\${Version}\n" $pkg_filenames | sort -n
;;
*)
fatal "Sorted package list are not realized for $PMTYPE"
fatal "Sorted package list function is not implemented for $PMTYPE"
;;
esac
}
......
......@@ -118,7 +118,7 @@ __do_query()
;;
aptcyg)
#CMD="apt-cyg packageof"
# do not realized locally
# is not implemented locally
return 1
;;
*)
......
......@@ -72,12 +72,12 @@ case $PMTYPE in
return ;;
yum-rpm)
# TODO
info "Search by full packages list does not realized"
info "Search by full packages list is not implemented yet"
CMD="yum provides"
;;
dnf-rpm)
# TODO
info "Search by full packages list does not realized"
info "Search by full packages list i snot implemented yet"
CMD="dnf provides"
;;
urpm-rpm)
......
......@@ -17,6 +17,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# TODO: will it has local only mode?
load_helper epm-print
epm_whatdepends()
......@@ -44,6 +46,7 @@ case $PMTYPE in
CMD="urpmq --whatrequires"
;;
dnf-rpm)
# check command: dnf repoquery --whatrequires
CMD="repoquery --whatrequires"
;;
emerge)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment