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

fix some 'does not realized'

parent ca1137db
...@@ -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
;; ;;
......
...@@ -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()
{ {
......
...@@ -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 realized for $PMTYPE" fatal "Sorted package list function is not implemented for $PMTYPE"
;; ;;
esac esac
} }
......
...@@ -118,7 +118,7 @@ __do_query() ...@@ -118,7 +118,7 @@ __do_query()
;; ;;
aptcyg) aptcyg)
#CMD="apt-cyg packageof" #CMD="apt-cyg packageof"
# do not realized locally # is not implemented locally
return 1 return 1
;; ;;
*) *)
......
...@@ -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)
......
...@@ -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)
......
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