Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Dec 2013 15:35:13 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r335764 - in head/ports-mgmt: pkg pkg-devel
Message-ID:  <201312061535.rB6FZD8P014970@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Fri Dec  6 15:35:13 2013
New Revision: 335764
URL: http://svnweb.freebsd.org/changeset/ports/335764

Log:
  Update to 1.2.2
  Changelog:
  - Fix pkg which returns bogus non-zero exit status on success
  - Better check libucl returns
  - Fix bad build system resulting in broken binaries on arm and ia64
  - Update pkg.conf documentation
  - Add manpage for pkg config
  - OOTB support for dragonfly
  - Lots of fixes in libucl
  - Fix pkg register complaining about shared libraries not found
  - Do not resume a jailed or chrooted pkg(8) upgrade
  - Document the plist format (in pkg-create(8))
  - Pet mandoc -Tlint
  - Add manpage for pkg_repos(3)
  - Fix dependencies losing portepoch information
  - pkg-[r]query: Add %q to display architecture
  - Fix pkg add allowing to install package with missing dependencies
  - Fix description being stored escaped
  
  Special thanks to mat@ (for bug busting) and cognet@ (tracking down 2 issues
  on arm and as a side effect fixing on ia64

Modified:
  head/ports-mgmt/pkg-devel/Makefile
  head/ports-mgmt/pkg-devel/distinfo
  head/ports-mgmt/pkg-devel/pkg-plist
  head/ports-mgmt/pkg/Makefile
  head/ports-mgmt/pkg/distinfo
  head/ports-mgmt/pkg/pkg-plist

Modified: head/ports-mgmt/pkg-devel/Makefile
==============================================================================
--- head/ports-mgmt/pkg-devel/Makefile	Fri Dec  6 15:33:41 2013	(r335763)
+++ head/ports-mgmt/pkg-devel/Makefile	Fri Dec  6 15:35:13 2013	(r335764)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	pkg
-DISTVERSION=	1.2.1
+DISTVERSION=	1.2.2
 CATEGORIES=	ports-mgmt
 MASTER_SITES=	http://files.etoilebsd.net/pkg/ \
 		http://mirror.shatow.net/freebsd/${PORTNAME}/ \

Modified: head/ports-mgmt/pkg-devel/distinfo
==============================================================================
--- head/ports-mgmt/pkg-devel/distinfo	Fri Dec  6 15:33:41 2013	(r335763)
+++ head/ports-mgmt/pkg-devel/distinfo	Fri Dec  6 15:35:13 2013	(r335764)
@@ -1,2 +1,2 @@
-SHA256 (pkg-1.2.1.tar.xz) = 829100ff78ea930d1cb9e5af7907a17fa1e1063ab6b25b8aea7e1d04280c93ab
-SIZE (pkg-1.2.1.tar.xz) = 1802908
+SHA256 (pkg-1.2.2.tar.xz) = f02dad746653447284861e52c38ce31a3e207ac909c6c1f9dbcaabd1c79e1688
+SIZE (pkg-1.2.2.tar.xz) = 1807456

Modified: head/ports-mgmt/pkg-devel/pkg-plist
==============================================================================
--- head/ports-mgmt/pkg-devel/pkg-plist	Fri Dec  6 15:33:41 2013	(r335763)
+++ head/ports-mgmt/pkg-devel/pkg-plist	Fri Dec  6 15:35:13 2013	(r335764)
@@ -11,6 +11,7 @@ lib/libpkg.so
 lib/libpkg.so.1
 libdata/pkgconfig/pkg.pc
 man/man3/pkg_printf.3.gz
+man/man3/pkg_repos.3.gz
 man/man5/pkg-repository.5.gz
 man/man5/pkg.conf.5.gz
 man/man8/pkg-add.8.gz
@@ -20,6 +21,7 @@ man/man8/pkg-autoremove.8.gz
 man/man8/pkg-backup.8.gz
 man/man8/pkg-check.8.gz
 man/man8/pkg-clean.8.gz
+man/man8/pkg-config.8.gz
 man/man8/pkg-convert.8.gz
 man/man8/pkg-create.8.gz
 man/man8/pkg-delete.8.gz

Modified: head/ports-mgmt/pkg/Makefile
==============================================================================
--- head/ports-mgmt/pkg/Makefile	Fri Dec  6 15:33:41 2013	(r335763)
+++ head/ports-mgmt/pkg/Makefile	Fri Dec  6 15:35:13 2013	(r335764)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	pkg
-DISTVERSION=	1.2.1
+DISTVERSION=	1.2.2
 CATEGORIES=	ports-mgmt
 MASTER_SITES=	http://files.etoilebsd.net/pkg/ \
 		http://mirror.shatow.net/freebsd/${PORTNAME}/ \
@@ -18,8 +18,7 @@ USE_XZ=		yes
 # With no dependency at all
 NO_CCACHE=	yes
 USE_LDCONFIG=	yes
-USES=		uidfix shebangfix
-SHEBANG_FILES=	scripts/completion/_pkg.bash.in
+USES=		uidfix
 MAKE_ARGS+=	PKG_PORTSDIR=${PORTSDIR}
 
 MAKE_ENV+=	WITHOUT_PROFILE=yes __MAKE_CONF=/dev/null SRCCONF=/dev/null \

Modified: head/ports-mgmt/pkg/distinfo
==============================================================================
--- head/ports-mgmt/pkg/distinfo	Fri Dec  6 15:33:41 2013	(r335763)
+++ head/ports-mgmt/pkg/distinfo	Fri Dec  6 15:35:13 2013	(r335764)
@@ -1,2 +1,2 @@
-SHA256 (pkg-1.2.1.tar.xz) = 829100ff78ea930d1cb9e5af7907a17fa1e1063ab6b25b8aea7e1d04280c93ab
-SIZE (pkg-1.2.1.tar.xz) = 1802908
+SHA256 (pkg-1.2.2.tar.xz) = f02dad746653447284861e52c38ce31a3e207ac909c6c1f9dbcaabd1c79e1688
+SIZE (pkg-1.2.2.tar.xz) = 1807456

Modified: head/ports-mgmt/pkg/pkg-plist
==============================================================================
--- head/ports-mgmt/pkg/pkg-plist	Fri Dec  6 15:33:41 2013	(r335763)
+++ head/ports-mgmt/pkg/pkg-plist	Fri Dec  6 15:35:13 2013	(r335764)
@@ -11,6 +11,7 @@ lib/libpkg.so
 lib/libpkg.so.1
 libdata/pkgconfig/pkg.pc
 man/man3/pkg_printf.3.gz
+man/man3/pkg_repos.3.gz
 man/man5/pkg-repository.5.gz
 man/man5/pkg.conf.5.gz
 man/man8/pkg-add.8.gz
@@ -20,6 +21,7 @@ man/man8/pkg-autoremove.8.gz
 man/man8/pkg-backup.8.gz
 man/man8/pkg-check.8.gz
 man/man8/pkg-clean.8.gz
+man/man8/pkg-config.8.gz
 man/man8/pkg-convert.8.gz
 man/man8/pkg-create.8.gz
 man/man8/pkg-delete.8.gz



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312061535.rB6FZD8P014970>