summaryrefslogtreecommitdiff
path: root/ports-mgmt/pkg-devel
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-04-15 14:48:12 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-04-15 14:48:12 +0000
commit7a4ec467a98cd02a65c734810162e89385513299 (patch)
tree5ddae5cf41c2edb4f6305eacdb3f5ff079887a03 /ports-mgmt/pkg-devel
parent- Stage (diff)
Update to 1.3.0 alpha8
Changes: - Detect invalid packages that list directories in plist - new pkg_emit_query_(yesno|select) to allow the library to ask question to the user - Reinstall packages on upgrade if remote abi changed (this catches up automatically major upgrade of freebsd) - Ability the specify the file to read the ABI from - add --relocate to pkg add and register (this is totally unsafe to use a a normal user, it is intended to be used in the ports tree) - clean/improvements in the repo handling functions - validate the directory is actually a port directory when running pkg version against the ports tree - new pkg audit -f <file> to run pkg audit against a local file - pkg -j and pkg -c are now able to restart themself - pkg version against the ports tree now works even if current working directory has been deleted out from underneath us. - Improved pkg upgrade/install/delete output - Improve cache handling - Make pkg update more verbose - new RUN_SCRIPTS options (default on) to be able to switch of the running pre/post operation scripts
Notes
Notes: svn path=/head/; revision=351336
Diffstat (limited to 'ports-mgmt/pkg-devel')
-rw-r--r--ports-mgmt/pkg-devel/Makefile3
-rw-r--r--ports-mgmt/pkg-devel/distinfo4
-rw-r--r--ports-mgmt/pkg-devel/files/patch-libpkg__pkg_elf.c25
3 files changed, 3 insertions, 29 deletions
diff --git a/ports-mgmt/pkg-devel/Makefile b/ports-mgmt/pkg-devel/Makefile
index 0750f95300c5..418cf5fc1fc4 100644
--- a/ports-mgmt/pkg-devel/Makefile
+++ b/ports-mgmt/pkg-devel/Makefile
@@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= pkg
-DISTVERSION= 1.3.0.a7
-PORTREVISION= 1
+DISTVERSION= 1.3.0.a8
CATEGORIES= ports-mgmt
MASTER_SITES= \
http://files.etoilebsd.net/pkg/ \
diff --git a/ports-mgmt/pkg-devel/distinfo b/ports-mgmt/pkg-devel/distinfo
index ea3b0e1cf9e9..3233ca48a6c5 100644
--- a/ports-mgmt/pkg-devel/distinfo
+++ b/ports-mgmt/pkg-devel/distinfo
@@ -1,2 +1,2 @@
-SHA256 (pkg-1.3.0.a7.tar.xz) = 4d37890d17c902f21ee4cf0729e6d97cf69ae3aaabf91084b08059dc9abcb777
-SIZE (pkg-1.3.0.a7.tar.xz) = 1646552
+SHA256 (pkg-1.3.0.a8.tar.xz) = bf47424579f3247f5e212eb799f37eeaaeca14d6a9ef85cf7aee3730e1ef144e
+SIZE (pkg-1.3.0.a8.tar.xz) = 1678324
diff --git a/ports-mgmt/pkg-devel/files/patch-libpkg__pkg_elf.c b/ports-mgmt/pkg-devel/files/patch-libpkg__pkg_elf.c
deleted file mode 100644
index 587a06b94fb2..000000000000
--- a/ports-mgmt/pkg-devel/files/patch-libpkg__pkg_elf.c
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/libpkg/pkg_elf.c b/libpkg/pkg_elf.c
-index 507e09d..b404cc0 100644
---- libpkg/pkg_elf.c
-+++ libpkg/pkg_elf.c
-@@ -640,6 +640,11 @@
- int ret = EPKG_OK;
- int i;
- const char *arch, *abi, *endian_corres_str, *wordsize_corres_str, *fpu;
-+ const char *path;
-+
-+ path = getenv("ABI_FILE");
-+ if (path == NULL)
-+ path = _PATH_BSHELL;
-
- if (elf_version(EV_CURRENT) == EV_NONE) {
- pkg_emit_error("ELF library initialization failed: %s",
-@@ -647,7 +652,7 @@
- return (EPKG_FATAL);
- }
-
-- if ((fd = open(_PATH_BSHELL, O_RDONLY)) < 0) {
-+ if ((fd = open(path, O_RDONLY)) < 0) {
- pkg_emit_errno("open", _PATH_BSHELL);
- snprintf(dest, sz, "%s", "unknown");
- return (EPKG_FATAL);