diff options
author | Volker Stolz <vs@FreeBSD.org> | 2004-09-13 19:48:56 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2004-09-13 19:48:56 +0000 |
commit | 8cd0b8010f723bc2790171d830d70476612f59cb (patch) | |
tree | e660b16c4103b0822b68cd581a1c6f482b78b0e0 | |
parent | 18683c440fc1c51d2508462463a826328b8cc27e (diff) | |
download | ports-8cd0b8010f723bc2790171d830d70476612f59cb.tar.gz ports-8cd0b8010f723bc2790171d830d70476612f59cb.zip |
Notes
-rw-r--r-- | MOVED | 1 | ||||
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/portindex/Makefile | 95 | ||||
-rw-r--r-- | sysutils/portindex/distinfo | 2 | ||||
-rw-r--r-- | sysutils/portindex/files/loadindex.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/files/minorupdates.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/files/patch-varju | 14 | ||||
-rw-r--r-- | sysutils/portindex/files/pointupdates.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/files/portindex.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/files/portindexdb.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/files/portreadmes.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/files/query.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/files/stealthupdates.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/files/updateall.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/files/updinst.sh | 2 | ||||
-rw-r--r-- | sysutils/portindex/pkg-descr | 23 |
16 files changed, 1 insertions, 155 deletions
@@ -1258,3 +1258,4 @@ net/kontact-plugins||2004-08-30|removed palm/kpilot|deskutils/kdepim3|2004-08-30|kpilot has been reintegrated into kdepim devel/calltree|devel/callgrind|2004-09-01|renamed by author sysutils/top||2004-09-02|No longer maintained +sysutils/portindex||2004-09-13|Removed on maintainer's request diff --git a/sysutils/Makefile b/sysutils/Makefile index 5c5a24c8423d..a7d9161cae78 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -321,7 +321,6 @@ SUBDIR += port-authoring-tools SUBDIR += port-maintenance-tools SUBDIR += portdowngrade - SUBDIR += portindex SUBDIR += portmanager SUBDIR += portsman SUBDIR += portupgrade diff --git a/sysutils/portindex/Makefile b/sysutils/portindex/Makefile deleted file mode 100644 index 6af862d68f1d..000000000000 --- a/sysutils/portindex/Makefile +++ /dev/null @@ -1,95 +0,0 @@ -# New ports collection makefile for: portindex -# Date created: 1 Jul 2004 -# Whom: Radim Kolar -# -# $FreeBSD$ -# - -PORTNAME= portindex -PORTVERSION= 18 -PORTREVISION= 1 -CATEGORIES= sysutils -MASTER_SITES= http://people.tecnik93.com/~radim/distfiles/ -DISTNAME= bsdportsutils-${PORTVERSION} - -MAINTAINER= hsn@netmag.cz -COMMENT= Incremental ports INDEX file builder - -USE_PYTHON= yes -NO_WRKSUBDIR= yes -USE_REINPLACE= yes - -PORTDOCS= *.TXT -PLIST_DIRS= share/${PORTNAME} -PLIST_FILES= etc/portindex.conf.sample -PORTINDEX= bsdpkg freebsdports indexer updatereadmes config \ - portindexdb -MINORUPDATES= minorupdates stealthupdates pointupdates -MISCTOOLS= updateall -PKGHISTORY= loadindex query updinst - -SOURCES= ${PORTINDEX} -EXECUTABLES= portindex portreadmes portindexdb - -OPTIONS= PKGHISTORY "Install pkghistory package" off \ - MINORUPDATES "Install point/minor/stealth updates scripts" off \ - MISCTOOLS "Install updateall script" off - -.include <bsd.port.pre.mk> - -.ifdef WITH_MINORUPDATES -SOURCES+= ${MINORUPDATES} -EXECUTABLES+= ${MINORUPDATES} -.endif - -.ifdef WITH_MISCTOOLS -.ifndef WITH_PKGHISTORY -BROKEN= Option updateall requires pkghistory option -.else -SOURCES+= ${MISCTOOLS} -EXECUTABLES+= ${MISCTOOLS} -.endif -.endif - -.ifdef WITH_PKGHISTORY -SOURCES+= ${PKGHISTORY} -EXECUTABLES+= ${PKGHISTORY} -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pg.py:${PORTSDIR}/databases/py-PyGreSQL -PLIST_FILES+= share/${PORTNAME}/create.sql -.endif - -.for i in ${SOURCES} -PLIST_FILES+= share/${PORTNAME}/${i}.py -PLIST_FILES+= share/${PORTNAME}/${i}.pyc -.endfor - -.for i in ${EXECUTABLES} -PLIST_FILES+= bin/${i} -.endfor - -do-build: - ${REINPLACE_CMD} -e "s,ports.pck,/var/db/portindex.pck," ${WRKSRC}/freebsdports.py - ${REINPLACE_CMD} -e "s,portindex.conf,${PREFIX}/etc/portindex.conf," ${WRKSRC}/config.py -.for i in ${EXECUTABLES} - ${SED} -e "s,%%DATADIR%%,${DATADIR}," ${FILESDIR}/${i}.sh > ${WRKSRC}/${i} -.endfor - -do-install: - ${INSTALL_DATA} ${WRKSRC}/portindex.conf ${PREFIX}/etc/portindex.conf.sample - ${MKDIR} ${DATADIR} -.for i in ${SOURCES} - ${INSTALL_DATA} ${WRKSRC}/${i}.py ${DATADIR} -.endfor - ${PYTHON_CMD} -c "import compileall;compileall.compile_dir('${DATADIR}')" -.for i in ${EXECUTABLES} - ${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/bin -.endfor -.ifdef WITH_PKGHISTORY - ${INSTALL_DATA} ${WRKSRC}/create.sql ${DATADIR} -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/*.TXT ${DOCSDIR} -.endif - -.include <bsd.port.post.mk> diff --git a/sysutils/portindex/distinfo b/sysutils/portindex/distinfo deleted file mode 100644 index c72fc978b591..000000000000 --- a/sysutils/portindex/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (bsdportsutils-18.tar.gz) = 75f59389ce4d5ce798500fd99df8741d -SIZE (bsdportsutils-18.tar.gz) = 23510 diff --git a/sysutils/portindex/files/loadindex.sh b/sysutils/portindex/files/loadindex.sh deleted file mode 100644 index 2072247c6854..000000000000 --- a/sysutils/portindex/files/loadindex.sh +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -exec /usr/bin/env python %%DATADIR%%/loadindex.py $* diff --git a/sysutils/portindex/files/minorupdates.sh b/sysutils/portindex/files/minorupdates.sh deleted file mode 100644 index 119495b62e04..000000000000 --- a/sysutils/portindex/files/minorupdates.sh +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -exec /usr/bin/env python %%DATADIR%%/minorupdates.py $* diff --git a/sysutils/portindex/files/patch-varju b/sysutils/portindex/files/patch-varju deleted file mode 100644 index 242dd74426f5..000000000000 --- a/sysutils/portindex/files/patch-varju +++ /dev/null @@ -1,14 +0,0 @@ ---- freebsdports.py.orig Wed Jul 28 14:03:59 2004 -+++ freebsdports.py Sat Aug 21 22:45:41 2004 -@@ -117,9 +117,9 @@ - print 'Output of make describe has',len(spl),'fields.' - return False - if this.path!=spl[1]: -- print "Port path is",this.path,"but Makefile reports",spl[1] -+ print "Warning: port path is",this.path,"but Makefile reports",spl[1] - this.name=spl[0] -- this.path=spl[1] -+ #this.path=spl[1] - this.prefix=spl[2] - this.comment=sre.sub(r'\s{2,}',' ',spl[3].strip()) - this.dfile=spl[4] diff --git a/sysutils/portindex/files/pointupdates.sh b/sysutils/portindex/files/pointupdates.sh deleted file mode 100644 index 81948f781689..000000000000 --- a/sysutils/portindex/files/pointupdates.sh +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -exec /usr/bin/env python %%DATADIR%%/pointupdates.py $* diff --git a/sysutils/portindex/files/portindex.sh b/sysutils/portindex/files/portindex.sh deleted file mode 100644 index d3cd388531e5..000000000000 --- a/sysutils/portindex/files/portindex.sh +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -exec /usr/bin/env python %%DATADIR%%/indexer.py $* diff --git a/sysutils/portindex/files/portindexdb.sh b/sysutils/portindex/files/portindexdb.sh deleted file mode 100644 index 44a041401f93..000000000000 --- a/sysutils/portindex/files/portindexdb.sh +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -exec /usr/bin/env python %%DATADIR%%/portindexdb.py $* diff --git a/sysutils/portindex/files/portreadmes.sh b/sysutils/portindex/files/portreadmes.sh deleted file mode 100644 index 8cecf8a55474..000000000000 --- a/sysutils/portindex/files/portreadmes.sh +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -exec /usr/bin/env python %%DATADIR%%/updatereadmes.py $* diff --git a/sysutils/portindex/files/query.sh b/sysutils/portindex/files/query.sh deleted file mode 100644 index faf160604d46..000000000000 --- a/sysutils/portindex/files/query.sh +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -exec /usr/bin/env python %%DATADIR%%/query.py $* diff --git a/sysutils/portindex/files/stealthupdates.sh b/sysutils/portindex/files/stealthupdates.sh deleted file mode 100644 index b1a7e9458f86..000000000000 --- a/sysutils/portindex/files/stealthupdates.sh +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -exec /usr/bin/env python %%DATADIR%%/stealthupdates.py $* diff --git a/sysutils/portindex/files/updateall.sh b/sysutils/portindex/files/updateall.sh deleted file mode 100644 index 67eae4fc9fe4..000000000000 --- a/sysutils/portindex/files/updateall.sh +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -exec /usr/bin/env python %%DATADIR%%/updateall.py $* diff --git a/sysutils/portindex/files/updinst.sh b/sysutils/portindex/files/updinst.sh deleted file mode 100644 index 51349381ad6b..000000000000 --- a/sysutils/portindex/files/updinst.sh +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -exec /usr/bin/env python %%DATADIR%%/updinst.py $* diff --git a/sysutils/portindex/pkg-descr b/sysutils/portindex/pkg-descr deleted file mode 100644 index 1c46bd67de28..000000000000 --- a/sysutils/portindex/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -Portindex - Alternative /usr/ports/INDEX file builder. - -Features -1. You do not need to wait 1 hour after every cvsup for make index to finish. - This program supports incremental index builds. -2. Supports indexing of incomplete ports trees. -3. Dependences between ports (including multiple) are correctly tracked. - tracking is done by .include hunting -4. Dependences on /usr/port/Mk/* are tracked -5. Dependences on /var/db/ports are tracked -6. Dependences on Makefile.local are tracked -7. No known difference between make index and this program - -Portindexdb - Alternative INDEX.db file builder. - -Features -1. 2.5 times faster than portsdb -2. Currently do not generates list of categories -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 |