diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-12 15:18:21 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-12 15:18:21 +0800 |
commit | f06ddbef54ef202f9e48c735429afc52266b5025 (patch) | |
tree | 1b72166631b74af0631efd43e59077bd1500945f /ports-mgmt | |
parent | 6629e19386e63eeaa3b5fb0de5650e0e150f4004 (diff) | |
download | freebsd-ports-gnome-f06ddbef54ef202f9e48c735429afc52266b5025.tar.gz freebsd-ports-gnome-f06ddbef54ef202f9e48c735429afc52266b5025.tar.zst freebsd-ports-gnome-f06ddbef54ef202f9e48c735429afc52266b5025.zip |
Update to 1.1.0.b4
Changes:
- A package can now be marked to only be upgraded from a given repository via annotations
- install and upgrade will now show from which repository packages are taken (if at least 2 repositories are setup)
- old/unused 'informations' field has been removed in favor of using annotations
- important cleanup using pkg_printf(3)
- add seat belt so pkg-devel can only be removed with -f
- signing key is only asked once now in pkg repo
- only look withing the note version of elf files
- fix pkg delete -a
- pkg repo has been changed to produce repo.txz in 1.0 only format
- catalog is now only take from digest in 1.1
- fix pkg update to that is is really incremental.
- fix pkg convert (thus fix pkg2ng)
- Add a DISABLE_MTREE option, which just disables processing +MTREE data
- Rename ENV to PKG_ENV to not conflict with sh(1)'s ENV
- Refactor 'pkg [-v|-vv|-vvv]' handling
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/pkg-devel/Makefile | 3 | ||||
-rw-r--r-- | ports-mgmt/pkg-devel/distinfo | 4 | ||||
-rw-r--r-- | ports-mgmt/pkg-devel/files/patch-fix-valid-packages | 14 |
3 files changed, 3 insertions, 18 deletions
diff --git a/ports-mgmt/pkg-devel/Makefile b/ports-mgmt/pkg-devel/Makefile index 3aa2d024733f..2e1b471f5f46 100644 --- a/ports-mgmt/pkg-devel/Makefile +++ b/ports-mgmt/pkg-devel/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= pkg -DISTVERSION= 1.1.0.b3 -PORTREVISION= 1 +DISTVERSION= 1.1.0.b4 CATEGORIES= ports-mgmt MASTER_SITES= http://files.etoilebsd.net/pkg/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ diff --git a/ports-mgmt/pkg-devel/distinfo b/ports-mgmt/pkg-devel/distinfo index fc00ef0d2e9e..d29b6f697780 100644 --- a/ports-mgmt/pkg-devel/distinfo +++ b/ports-mgmt/pkg-devel/distinfo @@ -1,2 +1,2 @@ -SHA256 (pkg-1.1.0.b3.tar.xz) = 5187eaebe6b2813eb5efa0430c3b598eb99cbbd2c2afe994c563dfad8306669c -SIZE (pkg-1.1.0.b3.tar.xz) = 1549396 +SHA256 (pkg-1.1.0.b4.tar.xz) = c0c6c54523200079dc446a760844c2eb5b6bd64a381505b9236b3dab7b0009fa +SIZE (pkg-1.1.0.b4.tar.xz) = 1551056 diff --git a/ports-mgmt/pkg-devel/files/patch-fix-valid-packages b/ports-mgmt/pkg-devel/files/patch-fix-valid-packages deleted file mode 100644 index 8686d5823430..000000000000 --- a/ports-mgmt/pkg-devel/files/patch-fix-valid-packages +++ /dev/null @@ -1,14 +0,0 @@ -diff --git libpkg/pkg.c libpkg/pkg.c -index e77138c..3168c0f 100644 ---- libpkg/pkg.c -+++ libpkg/pkg.c -@@ -59,7 +59,8 @@ static struct _fields { - [PKG_OLD_VERSION] = {"oldversion", PKG_REMOTE, 1}, - [PKG_REPONAME] = {"reponame", PKG_REMOTE, 1}, - [PKG_REPOURL] = {"repourl", PKG_REMOTE, 1}, -- [PKG_DIGEST] = {"manifestdigest", PKG_REMOTE, 1} -+ [PKG_DIGEST] = {"manifestdigest", PKG_REMOTE, 1}, -+ [PKG_REASON] = {"reason", PKG_REMOTE, 1} - }; - - int |