diff options
author | marino <marino@FreeBSD.org> | 2016-11-03 20:56:30 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-11-03 20:56:30 +0800 |
commit | b3ace567e26ffd3c77b7d832d36d5f22180d18fb (patch) | |
tree | 7aa498f7aba6b390cee039a44247828a1c542061 | |
parent | 790b6f689313cb33aa6ac584d86a56897bae72c1 (diff) | |
download | freebsd-ports-gnome-b3ace567e26ffd3c77b7d832d36d5f22180d18fb.tar.gz freebsd-ports-gnome-b3ace567e26ffd3c77b7d832d36d5f22180d18fb.tar.zst freebsd-ports-gnome-b3ace567e26ffd3c77b7d832d36d5f22180d18fb.zip |
ports-mgmt/pkg_search: Remove deprecation, but IGNORE on DragonFly
At the request of a user, further review reveal that the pkg_* tools
aren't actually used. It just awks the INDEX file. The maintainer
forgot the technical details, especially since the SEE ALSO section of
the man page references pkg_* tools.
A minor update is needed to re-support DragonFly and update the man
page. Until this, it's been marked IGNORE for DragonFly.
-rw-r--r-- | ports-mgmt/pkg_search/Makefile | 3 | ||||
-rw-r--r-- | ports-mgmt/pkg_search/pkg-descr | 17 |
2 files changed, 16 insertions, 4 deletions
diff --git a/ports-mgmt/pkg_search/Makefile b/ports-mgmt/pkg_search/Makefile index 68886fe71978..d729ed3c3b38 100644 --- a/ports-mgmt/pkg_search/Makefile +++ b/ports-mgmt/pkg_search/Makefile @@ -10,8 +10,7 @@ MASTER_SITES= http://www.mathematik.uni-marburg.de/~schmidtm/pkg_search/ \ MAINTAINER= schmidtm@mathematik.uni-marburg.de COMMENT= Nifty script searching the ports database -DEPRECATED= works only with pkg_* tools and not pkg(8) -EXPIRATION_DATE= 2016-11-30 +IGNORE_DragonFly= Requires update to work for DragonFly PLIST_FILES= bin/pkg_search man/man1/pkg_search.1.gz diff --git a/ports-mgmt/pkg_search/pkg-descr b/ports-mgmt/pkg_search/pkg-descr index 4faa0bec1671..9d4c66aa51c7 100644 --- a/ports-mgmt/pkg_search/pkg-descr +++ b/ports-mgmt/pkg_search/pkg-descr @@ -1,4 +1,17 @@ -pkg_search queries the appropriate database file of FreeBSD, DragonFlyBSD or -NetBSD for a given package name. +pkg_search scans the ports INDEX file to use as a database, fetching it +if necessary. Example of usage to search for a package: + + # pkg_search cyrus-sasl + cyrus-sasl-1.5.28_5 RFC 2222 SASL (Simple Authentication and Security Layer) + cyrus-sasl-2.1.22 RFC 2222 SASL (Simple Authentication and Security Layer) + cyrus-sasl-ldapdb-2.1.22 SASL LDAPDB auxprop plugin + cyrus-sasl-saslauthd-2.1.22 SASL authentication server for cyrus-sasl2 + + # pkg_search -i cyrus-sasl-2.1.22 + Name : cyrus-sasl-2.1.22-50 + Dir : /usr/ports/security/cyrus-sasl2 + Desc : RFC 2222 SASL (Simple Authentication and Security Layer) + URL : http://cyrusimap.web.cmu.edu/ + Deps : WWW: http://www.mathematik.uni-marburg.de/~schmidtm/pkg_search/ |