diff options
author | Volker Stolz <vs@FreeBSD.org> | 2004-07-19 06:42:48 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2004-07-19 06:42:48 +0000 |
commit | 5ff54b1bbde085ecf3d95cbe4d4cba0a98092e60 (patch) | |
tree | 499374bc363c0f7322185be8a69d095d6284f267 | |
parent | s/WITH_XLIB/USE_XLIB/ -- fixes missing dependency. (diff) |
Update to v.16:
- This version supports 13 fields long make describe format. closes ports/69238
- Database format changed in both python and postgresql backends.
- You need to delete portindex.pck file if you have more than 0 entries in index generated by portindex 15
- You need to update postgresql tables (added some columns) by hand or use create.sql script for drop + create.
- loadindex and updinst are 100% faster due to using of prepared statements in portgresql.
- updateall script optimized. When used, slow fs walking is avoided in portreadmes, loadindex
- updinst updates alive package status
- added stealthupdates script for listing changes without portrevision bumps
- added options to configuration file for keeping dupes in index (recommended) and keeping ports with partial unresolved depends
- added back link to portindex homepage because downloading rate drops
PR: ports/69256
Submitted by: Radim Kolar (maintainer)
Notes
Notes:
svn path=/head/; revision=113945
-rw-r--r-- | sysutils/portindex/Makefile | 6 | ||||
-rw-r--r-- | sysutils/portindex/distinfo | 4 | ||||
-rw-r--r-- | sysutils/portindex/files/stealthupdates.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/pkg-descr | 2 |
4 files changed, 9 insertions, 5 deletions
diff --git a/sysutils/portindex/Makefile b/sysutils/portindex/Makefile index 3c9f23083e0d..de1688e21617 100644 --- a/sysutils/portindex/Makefile +++ b/sysutils/portindex/Makefile @@ -6,7 +6,7 @@ # PORTNAME= portindex -PORTVERSION= 15 +PORTVERSION= 16 CATEGORIES= sysutils MASTER_SITES= http://people.tecnik93.com/~radim/distfiles/ DISTNAME= bsdportsutils-${PORTVERSION} @@ -23,7 +23,7 @@ PLIST_DIRS= share/${PORTNAME} PLIST_FILES= etc/portindex.conf.sample PORTINDEX= bsdpkg freebsdports indexer updatereadmes config \ portindexdb -MINORUPDATES= minorupdates +MINORUPDATES= minorupdates stealthupdates MISCTOOLS= updateall PKGHISTORY= loadindex query updinst @@ -40,7 +40,7 @@ EXECUTABLES+= ${MINORUPDATES} .ifdef WITH_MISCTOOLS .ifndef WITH_PKGHISTORY -BROKEN= Updateall needs pkghistory package +BROKEN= Option updateall requires pkghistory option .else SOURCES+= ${MISCTOOLS} EXECUTABLES+= ${MISCTOOLS} diff --git a/sysutils/portindex/distinfo b/sysutils/portindex/distinfo index 2c53f449a904..32fad6cb79d6 100644 --- a/sysutils/portindex/distinfo +++ b/sysutils/portindex/distinfo @@ -1,2 +1,2 @@ -MD5 (bsdportsutils-15.tar.gz) = f37804609a030a37b910b9e93c009d2b -SIZE (bsdportsutils-15.tar.gz) = 20004 +MD5 (bsdportsutils-16.tar.gz) = 60dd00ee94986dca77c6a7de2304a97d +SIZE (bsdportsutils-16.tar.gz) = 21857 diff --git a/sysutils/portindex/files/stealthupdates.sh b/sysutils/portindex/files/stealthupdates.sh new file mode 100644 index 000000000000..b1a7e9458f86 --- /dev/null +++ b/sysutils/portindex/files/stealthupdates.sh @@ -0,0 +1,2 @@ +#! /bin/sh +exec /usr/bin/env python %%DATADIR%%/stealthupdates.py $* diff --git a/sysutils/portindex/pkg-descr b/sysutils/portindex/pkg-descr index c4a787fd8d84..1c46bd67de28 100644 --- a/sysutils/portindex/pkg-descr +++ b/sysutils/portindex/pkg-descr @@ -19,3 +19,5 @@ Features 3. Unlike portsdb output database is in valid btree format This package also contains FreeBSD port of 'package history'. + +WWW: http://home.tiscali.cz/~cz210552/bsdportsutils.html |