From hsn@netmag.cz Mon Jul 19 22:23:43 2004 Return-Path: Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64DBC16A4CE for ; Mon, 19 Jul 2004 22:23:43 +0000 (GMT) Received: from mail.tiscali.cz (stateless3.tiscali.cz [213.235.135.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id E30CB43D46 for ; Mon, 19 Jul 2004 22:23:42 +0000 (GMT) (envelope-from hsn@netmag.cz) Received: from sanatana.dharma (213.235.70.232) by mail.tiscali.cz (6.7.021) id 40AE2ED301620CA9 for FreeBSD-gnats-submit@freebsd.org; Tue, 20 Jul 2004 00:23:41 +0200 Received: from hsn@localhost by sanatana.dharma (Exim 4.34_0 FreeBSD) id 1BmgV5-0005Ts-7j ; Tue, 20 Jul 2004 00:20:47 +0200 Message-Id: Date: Tue, 20 Jul 2004 00:20:47 +0200 From: Radim Kolar To: FreeBSD-gnats-submit@freebsd.org Cc: hsn@netmag.cz Subject: [PATCH] sysutils/portindex: update to 17 X-Send-Pr-Version: 3.113 X-GNATS-Notify: >Number: 69316 >Category: ports >Synopsis: [PATCH] sysutils/portindex: update to 17 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: closed >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 22:30:17 GMT 2004 >Closed-Date: Tue Jul 20 15:03:39 GMT 2004 >Last-Modified: Tue Jul 20 15:03:39 GMT 2004 >Originator: Radim Kolar >Release: FreeBSD 5.2.1-RELEASE-p6 i386 >Organization: >Environment: System: FreeBSD sanatana.dharma 5.2.1-RELEASE-p6 FreeBSD 5.2.1-RELEASE-p6 #7: Mon May 10 17:15:51 CEST 2004 >Description: - Update to 17, bugfix release - added pointupdates tool - do not crash when generating port with incomplete depends - keep unresolved cfg option was reversed by mistake - updateall: print generating readme.html - updateall: ports with unresolved depends needs to be removed from in-memory list also - do not warn about missing port multiple times - check for write errors while generating readme.html Port maintainer (hsn@netmag.cz) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- portindex-17.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/Makefile /home/hsn/myports/portindex/Makefile --- /usr/ports/sysutils/portindex/Makefile Mon Jul 19 18:07:31 2004 +++ /home/hsn/myports/portindex/Makefile Mon Jul 19 21:47:05 2004 @@ -6,7 +6,7 @@ # PORTNAME= portindex -PORTVERSION= 16 +PORTVERSION= 17 CATEGORIES= sysutils MASTER_SITES= http://people.tecnik93.com/~radim/distfiles/ DISTNAME= bsdportsutils-${PORTVERSION} @@ -23,7 +23,7 @@ PLIST_FILES= etc/portindex.conf.sample PORTINDEX= bsdpkg freebsdports indexer updatereadmes config \ portindexdb -MINORUPDATES= minorupdates stealthupdates +MINORUPDATES= minorupdates stealthupdates pointupdates MISCTOOLS= updateall PKGHISTORY= loadindex query updinst diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/README.html /home/hsn/myports/portindex/README.html --- /usr/ports/sysutils/portindex/README.html Mon Jul 19 21:45:53 2004 +++ /home/hsn/myports/portindex/README.html Mon Jul 12 18:36:14 2004 @@ -11,7 +11,7 @@

You are now in the directory for the port "sysutils/portindex".

-

The package name of this port is "portindex-16".

+

The package name of this port is "portindex-15".

This is the one-line description for this port:


@@ -22,15 +22,15 @@

Please read the "description file" for a - longer description and/or visit the web site for futher informations.

+ longer description.

If needed, you may contact the maintainer of this port or the port mailing-list.

-

This port requires package(s) "python-2.3.4_1" to build.

+

This port requires package(s) "python-2.3.4" to build.

-

This port requires package(s) "expat-1.95.7 gettext-0.13.1_1 libiconv-1.9.2 postgresql-7.4.3 py23-PyGreSQL-3.4_1,1 py23-mx-base-2.0.5 python-2.3.4_1" to run.

+

This port requires package(s) "expat-1.95.7 gettext-0.13.1_1 libiconv-1.9.1_3 postgresql-7.4.3 py23-PyGreSQL-3.4_1,1 py23-mx-base-2.0.5 python-2.3.4" to run.

Go to the top of the ports tree for a summary on how to use the ports collection.

diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/distinfo /home/hsn/myports/portindex/distinfo --- /usr/ports/sysutils/portindex/distinfo Mon Jul 19 18:07:31 2004 +++ /home/hsn/myports/portindex/distinfo Tue Jul 20 00:13:25 2004 @@ -1,2 +1,2 @@ -MD5 (bsdportsutils-16.tar.gz) = 60dd00ee94986dca77c6a7de2304a97d -SIZE (bsdportsutils-16.tar.gz) = 21857 +MD5 (bsdportsutils-17.tar.gz) = f3d9829c96e012db87527c78d47671b8 +SIZE (bsdportsutils-17.tar.gz) = 23041 diff -ruN --exclude=CVS /usr/ports/sysutils/portindex/files/pointupdates.sh /home/hsn/myports/portindex/files/pointupdates.sh --- /usr/ports/sysutils/portindex/files/pointupdates.sh Thu Jan 1 01:00:00 1970 +++ /home/hsn/myports/portindex/files/pointupdates.sh Mon Jul 19 21:47:28 2004 @@ -0,0 +1,2 @@ +#! /bin/sh +exec /usr/bin/env python %%DATADIR%%/pointupdates.py $* --- portindex-17.patch ends here --- >Release-Note: >Audit-Trail: State-Changed-From-To: open->closed State-Changed-By: vs State-Changed-When: Tue Jul 20 15:03:16 GMT 2004 State-Changed-Why: Committed, thanks! Once again contained patch for the readme.html... http://www.freebsd.org/cgi/query-pr.cgi?pr=69316 >Unformatted: