diff options
author | imil <imil@pkgsrc.org> | 2012-05-28 20:17:36 +0000 |
---|---|---|
committer | imil <imil@pkgsrc.org> | 2012-05-28 20:17:36 +0000 |
commit | 7538b5ef5e8d1eddfc3dd9785655c4eb0e754fa0 (patch) | |
tree | 623cda1bb276f753e7e4c3ce68b68bb33c19a515 /pkgtools | |
parent | 34dd6b84d95846f1be1e6f4cefa149eccac4fcdb (diff) | |
download | pkgsrc-7538b5ef5e8d1eddfc3dd9785655c4eb0e754fa0.tar.gz |
20120528
Added SQLite build patch from sbd@
Added show-all-categories
unlink() before symlink()
20120525
Dynamically read PKG_DBDIR from pkg_admin
20120524
Do not delete repository entries if the new one is unreachable.
20120429
When a package is marked as TOREMOVE and TOUPGRADE because of a
dependency breakage during upgrade, just follow the usual upgrade
process.
20120427
Handled "no value field" for buggy packages.
20120419
Hopefuly fixed the "dirty repository" bug thanks to bapt
20120416
Added show-{pkg-,}category as requested by Julian Fagir
Added pkg-build-defs as requested by gls@
20120415
Added pkg-content and pkg-descr
Introduced pkg_infos.c to fetch remote informations
Removed -D_FILE_OFFSET_BITS=64 from Makefile and added it in fsops.c
20120414
Fire up pkgin 0.6.0
case: cleanup in summary.c (stacktic)
Packages list queries ordered differently for display and internals
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkgin/Makefile | 5 | ||||
-rw-r--r-- | pkgtools/pkgin/distinfo | 8 | ||||
-rw-r--r-- | pkgtools/pkgin/patches/patch-Makefile.in | 26 |
3 files changed, 6 insertions, 33 deletions
diff --git a/pkgtools/pkgin/Makefile b/pkgtools/pkgin/Makefile index 1acd5080c96..f196ce797ba 100644 --- a/pkgtools/pkgin/Makefile +++ b/pkgtools/pkgin/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.22 2012/04/27 12:32:01 obache Exp $ +# $NetBSD: Makefile,v 1.23 2012/05/28 20:17:36 imil Exp $ # -DISTNAME= pkgin-0.5.2.3 -PKGREVISION= 1 +DISTNAME= pkgin-0.6.0 CATEGORIES= pkgtools MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/imil/ diff --git a/pkgtools/pkgin/distinfo b/pkgtools/pkgin/distinfo index 9affc20d6a4..9e0ad6adcbc 100644 --- a/pkgtools/pkgin/distinfo +++ b/pkgtools/pkgin/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.18 2012/05/20 04:14:58 sbd Exp $ +$NetBSD: distinfo,v 1.19 2012/05/28 20:17:36 imil Exp $ -SHA1 (pkgin-0.5.2.3.tar.gz) = c0915229913adb94ff608d2412ddcfd19fd9269d -RMD160 (pkgin-0.5.2.3.tar.gz) = b3ff60f8065e2d45b330f9a8d70b2adb01f4171b -Size (pkgin-0.5.2.3.tar.gz) = 1458840 bytes +SHA1 (pkgin-0.6.0.tar.gz) = df3866eb61d67a07472773816169b64e81e6dd44 +RMD160 (pkgin-0.6.0.tar.gz) = ad51e08cba33c4ed553df449383506efd90530b3 +Size (pkgin-0.6.0.tar.gz) = 1461785 bytes SHA1 (patch-Makefile.in) = 37fc6a02b17fc06b733ae0f1c64a89e3417b336d diff --git a/pkgtools/pkgin/patches/patch-Makefile.in b/pkgtools/pkgin/patches/patch-Makefile.in deleted file mode 100644 index 535c6171f63..00000000000 --- a/pkgtools/pkgin/patches/patch-Makefile.in +++ /dev/null @@ -1,26 +0,0 @@ -$NetBSD: patch-Makefile.in,v 1.1 2012/05/20 04:14:58 sbd Exp $ - -Omit the SQLite load extension and insure that sqlite3.o is compiled -with it's extra CPPFLAGS. - ---- Makefile.in.orig 2011-10-01 18:06:44.000000000 +0000 -+++ Makefile.in -@@ -37,7 +37,7 @@ CPPFLAGS+= -D_POSIX_SOURCE -D_MINIX - LDADD+= -lsqlite3 - .else - SRCS+= sqlite3.c --CPPFLAGS.sqlite3.c+= -DUSE_PREAD -+CPPFLAGS.sqlite3.c+= -DUSE_PREAD -DSQLITE_OMIT_LOAD_EXTENSION - .endif - - LOCALBASE?= @prefix@ -@@ -92,6 +92,9 @@ CLEANFILES+= ${DPSRCS} - pkgindb_create.h: - @SEDCMD=@SED@ ./mkpkgindb.sh > pkgindb_create.h - -+sqlite3.o: sqlite3.c -+ ${COMPILE.c} ${.IMPSRC} ${CPPFLAGS.sqlite3.c} -+ - afterinstall: configinstall - - beforeinstall: |