diff options
-rw-r--r-- | .depend | 2 | ||||
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | applets.h | 4 | ||||
-rw-r--r-- | include_applets.h | 1 |
4 files changed, 7 insertions, 3 deletions
@@ -7,4 +7,4 @@ main.o: main.c porting.h main.h libq/libq.c libq/busybox.h libq/i18n.h \ libq/prelink.c libq/profile.c libq/vdb.c libq/vdb_get_next_dir.c \ libq/virtuals.c applets.h include_applets.h q.c qcheck.c qdepends.c \ qfile.c qlist.c qlop.c qsearch.c qsize.c qtbz2.c quse.c qxpak.c qpkg.c \ - qgrep.c qatom.c qmerge.c qcache.c qglsa.c qtegrity.c + qgrep.c qatom.c qmerge.c qcache.c qtegrity.c diff --git a/Makefile.am b/Makefile.am index 425a0181..db208798 100644 --- a/Makefile.am +++ b/Makefile.am @@ -76,6 +76,7 @@ dist_man_MANS += \ man/qsearch.1 \ man/qsize.1 \ man/qtbz2.1 \ + man/qtegrity.1 \ man/quse.1 \ man/qxpak.1 APPLETS += \ @@ -164,6 +165,8 @@ EXTRA_DIST += \ tests/atom_explode/basic.good \ tests/atom_explode/basic.tests \ tests/atom_explode/dotest \ + tests/atom_explode/ebuildlist.xz \ + tests/atom_explode/portageatoms.xz \ tests/atom_explode/test.c \ tests/copy_file/.gitignore \ tests/copy_file/Makefile \ @@ -30,7 +30,7 @@ DECLARE_APPLET(qgrep) DECLARE_APPLET(qatom) DECLARE_APPLET(qmerge) DECLARE_APPLET(qcache) -DECLARE_APPLET(qglsa) /* disable */ +/*DECLARE_APPLET(qglsa) disable */ DECLARE_APPLET(qtegrity) #undef DECLARE_APPLET @@ -52,7 +52,9 @@ static const struct applet_t { {"qcheck", qcheck_main, "<pkgname>", "verify integrity of installed packages"}, {"qdepends", qdepends_main, "<pkgname>", "show dependency info"}, {"qfile", qfile_main, "<filename>", "list all pkgs owning files"}, + /* {"qglsa", qglsa_main, "<action> <list>", "check GLSAs against system"}, + */ {"qgrep", qgrep_main, "<misc args>", "grep in ebuilds"}, {"qlist", qlist_main, "<pkgname>", "list files owned by pkgname"}, {"qlop", qlop_main, "<pkgname>", "emerge log analyzer"}, diff --git a/include_applets.h b/include_applets.h index 6ff8f8a7..916e5f75 100644 --- a/include_applets.h +++ b/include_applets.h @@ -14,5 +14,4 @@ #include "qatom.c" #include "qmerge.c" #include "qcache.c" -#include "qglsa.c" #include "qtegrity.c" |