diff options
author | bapt <bapt@FreeBSD.org> | 2012-11-07 00:32:41 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-11-07 00:32:41 +0800 |
commit | 0f94a59880e36996c066655772e10fd3b27c0124 (patch) | |
tree | 0dc940d55b39379aa981fb188fc12e6eaa09439e /ports-mgmt/pkg | |
parent | 6f29e2b190f37556d8300f2383edb27cca21fe57 (diff) | |
download | freebsd-ports-gnome-0f94a59880e36996c066655772e10fd3b27c0124.tar.gz freebsd-ports-gnome-0f94a59880e36996c066655772e10fd3b27c0124.tar.zst freebsd-ports-gnome-0f94a59880e36996c066655772e10fd3b27c0124.zip |
- update to 1.0.2
- changes:
* Add a completion for zsh
* 1 in pkg.conf is consider as true or yes for booleans
* Fix incremental pkg repo
* Provide a pkgconf pkg.pc file for third party software using libpkg
* Multiple grammar fixes
* Several fixes in pkg create
* Do not emit error if the deletion of a directory fails with EBUSY
* Use isdigit(3) rather than isnumber(3)
* Jail support is automatically disabled it /usr/include/jail.h is not present
* Fix a regression leading to pkg install always returning 0 even when
something wrong happened
* Improve portability so that it now builds on DragonFly BSD
Feature safe: yes
Diffstat (limited to 'ports-mgmt/pkg')
-rw-r--r-- | ports-mgmt/pkg/Makefile | 5 | ||||
-rw-r--r-- | ports-mgmt/pkg/distinfo | 4 | ||||
-rw-r--r-- | ports-mgmt/pkg/pkg-plist | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/ports-mgmt/pkg/Makefile b/ports-mgmt/pkg/Makefile index a5834e54a891..951fa8c3b774 100644 --- a/ports-mgmt/pkg/Makefile +++ b/ports-mgmt/pkg/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pkg -DISTVERSION= 1.0.1 +DISTVERSION= 1.0.2 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/portmgr \ http://files.etoilebsd.net/pkg/ @@ -74,6 +74,9 @@ post-install: @${INSTALL_SCRIPT} ${WRKSRC}/scripts/periodic/411.pkg-backup ${PREFIX}/etc/periodic/daily @${INSTALL_SCRIPT} ${WRKSRC}/ports/pkg2ng ${PREFIX}/sbin @${INSTALL_DATA} ${WRKSRC}/pkg/pkg.conf.sample ${PREFIX}/etc + @${INSTALL_DATA} ${WRKSRC}/libpkg/pkg.pc ${PREFIX}/libdata/pkgconfig/ + @${MKDIR} ${PREFIX}/share/zsh/site-functions + @${INSTALL_DATA} ${WRKSRC}/scripts/zsh/_pkg ${PREFIX}/share/zsh/site-functions/ @${CAT} ${PKGMESSAGE} .include <bsd.port.post.mk> diff --git a/ports-mgmt/pkg/distinfo b/ports-mgmt/pkg/distinfo index 475b96497068..1ca45c9e5594 100644 --- a/ports-mgmt/pkg/distinfo +++ b/ports-mgmt/pkg/distinfo @@ -1,2 +1,2 @@ -SHA256 (pkg-1.0.1.tar.xz) = 61d34e8efa8ed296c16ab5d76ce3ca83364478f963197365c711042a5eaee10e -SIZE (pkg-1.0.1.tar.xz) = 1372588 +SHA256 (pkg-1.0.2.tar.xz) = c1ee0d74cc17760f78139219ef84c67dd74e0caf68cf50b2c70f138c07a6728e +SIZE (pkg-1.0.2.tar.xz) = 1444532 diff --git a/ports-mgmt/pkg/pkg-plist b/ports-mgmt/pkg/pkg-plist index 9bffb318c927..1b84b6a92b1e 100644 --- a/ports-mgmt/pkg/pkg-plist +++ b/ports-mgmt/pkg/pkg-plist @@ -8,6 +8,10 @@ lib/libpkg.so lib/libpkg.a etc/periodic/daily/411.pkg-backup etc/periodic/security/410.pkg-audit +libdata/pkgconfig/pkg.pc +share/zsh/site-functions/_pkg @dirrmtry etc/periodic/daily @dirrmtry etc/periodic/security @dirrmtry etc/periodic +@dirrmtry share/zsh/site-functions +@dirrmtry share/zsh |