diff options
author | is <is@pkgsrc.org> | 2010-06-10 08:05:00 +0000 |
---|---|---|
committer | is <is@pkgsrc.org> | 2010-06-10 08:05:00 +0000 |
commit | 724021e527ba52d15706e9cee45cc02a67e0c2a1 (patch) | |
tree | 2978cbe6a6117aa581e4dcbf478e41d7405cec66 /pkgtools | |
parent | 6cfa1fcf1266912b56200a99176ed2818f2bf6a2 (diff) | |
download | pkgsrc-724021e527ba52d15706e9cee45cc02a67e0c2a1.tar.gz |
Update to 0.3.3.1 (on wip: 20100124) + a local patch to fix building on
Solaris (and, I suspect, other autoconf-using architectures). En detail:
20100123:
Many cleanups from stacktic
- Replaced strstr's with str{n}cmp when possible
- #ifdef'ed PROVIDES
- Queries are now const chars
20100102:
Solaris 10 support
Mac OS X support
Many cleanups from stacktic
20100101:
Many fixes by stacktic :
- Added -n (no-flag)
- Various memleaks fixed
- pkgname comparison fix
- Cleaned up trailing spaces
- Got rid of recursion !
20091206:
Added -l status flags
20091203:
autoconf support
percentage redraw fix (jmcneill)
variables cleanups (PKG_SYSCONFDIR, VARBASE) (sketch)
auto-lookup for SUMEXTS, removed options.mk (sketch)
opensolaris fixes (sketch)
repositories.conf variables substitution (tuxillo)
impact mutex (Johannes Hofmann)
SunOS 5.8 support (Mikhail T.)
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkgin/MESSAGE | 2 | ||||
-rw-r--r-- | pkgtools/pkgin/Makefile | 3 | ||||
-rw-r--r-- | pkgtools/pkgin/distinfo | 3 | ||||
-rw-r--r-- | pkgtools/pkgin/patches/patch-aa | 13 |
4 files changed, 18 insertions, 3 deletions
diff --git a/pkgtools/pkgin/MESSAGE b/pkgtools/pkgin/MESSAGE index c5e25a7f8a7..29aa809e51f 100644 --- a/pkgtools/pkgin/MESSAGE +++ b/pkgtools/pkgin/MESSAGE @@ -1,5 +1,5 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.2 2010/01/24 14:56:24 imil Exp $ +$NetBSD: MESSAGE,v 1.3 2010/06/10 08:05:00 is Exp $ First steps before using pkgin. diff --git a/pkgtools/pkgin/Makefile b/pkgtools/pkgin/Makefile index 96199462bdf..ee5363067c0 100644 --- a/pkgtools/pkgin/Makefile +++ b/pkgtools/pkgin/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2010/01/24 17:11:04 imil Exp $ +# $NetBSD: Makefile,v 1.5 2010/06/10 08:05:00 is Exp $ # DISTNAME= pkgin-0.3.3.1 +PKGREVISION= 1 CATEGORIES= pkgtools MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/imil/ diff --git a/pkgtools/pkgin/distinfo b/pkgtools/pkgin/distinfo index 62694ff72bf..4edfd9f9111 100644 --- a/pkgtools/pkgin/distinfo +++ b/pkgtools/pkgin/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2010/01/24 17:11:04 imil Exp $ +$NetBSD: distinfo,v 1.4 2010/06/10 08:05:00 is Exp $ SHA1 (pkgin-0.3.3.1.tar.gz) = 32e51abf2460a41285c68bc60df9d57870ca7d2f RMD160 (pkgin-0.3.3.1.tar.gz) = 88f22e5eae5416fe163a656f8da5f1a8c3b143d8 Size (pkgin-0.3.3.1.tar.gz) = 140765 bytes +SHA1 (patch-aa) = 63f261b20e05eb229d9dceff880b05e888d505b4 diff --git a/pkgtools/pkgin/patches/patch-aa b/pkgtools/pkgin/patches/patch-aa new file mode 100644 index 00000000000..2f85084dcd5 --- /dev/null +++ b/pkgtools/pkgin/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2010/06/10 08:05:00 is Exp $ + +--- tools.h.orig 2010-01-23 16:10:54.000000000 +0000 ++++ tools.h +@@ -70,7 +70,7 @@ + #include <sys/utsname.h> + #endif + +-#if WANT_NBCOMPAT_H /* needed for strsep on SunOS < 5.11 */ ++#if HAVE_NBCOMPAT_H /* needed for strsep on SunOS < 5.11 */ + #include <nbcompat.h> + #include <nbcompat/string.h> + #endif |