mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
- update to 1.0-beta10
- changes: * Fix memory corruption * Fix handle_rc_script when upgrading services are now really restarted * Report Already installed/Not found when installing packages if any * when trying to pkg add something that doesn't exists, recommend the user to use pkg install * Fix abi detection on recent current * pkg -v report the version, -vv more informaton, -vvv even more :) * new pkg fetch command (not yet documented) * code factorisation * pkg repo is now incremental * install/upgrade now first forces installation/upgrade of pkg before anything Feature safe: yes
This commit is contained in:
parent
9fe9d71c52
commit
16932b8e47
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=294346
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= pkg
|
||||
DISTVERSION= 1.0-beta9
|
||||
PORTREVISION= 2
|
||||
DISTVERSION= 1.0-beta10
|
||||
CATEGORIES= ports-mgmt
|
||||
MASTER_SITES= LOCAL/portmgr \
|
||||
http://files.etoilebsd.net/pkg/
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (pkg-1.0-beta9.tar.xz) = acf1e8db9a0921009f0fdec0365b76f823b0483fabf2c2eeed4015c21955588f
|
||||
SIZE (pkg-1.0-beta9.tar.xz) = 1298464
|
||||
SHA256 (pkg-1.0-beta10.tar.xz) = fa9526e3218083fcce28a2e2b7f766f3df3cdb84331c4fbe789373ae57f6f8c8
|
||||
SIZE (pkg-1.0-beta10.tar.xz) = 1300596
|
||||
|
@ -1,11 +0,0 @@
|
||||
--- ./libpkg/pkg_ports.c.orig 2012-03-31 23:46:19.121855756 +0200
|
||||
+++ ./libpkg/pkg_ports.c 2012-03-31 23:46:24.356886561 +0200
|
||||
@@ -726,6 +726,8 @@
|
||||
for (i = 0; i <= nbel; i++) {
|
||||
if (pplist.ignore_next) {
|
||||
pplist.ignore_next = false;
|
||||
+ plist_p += next + 1;
|
||||
+ next = strlen(plist_p);
|
||||
continue;
|
||||
}
|
||||
|
@ -1,10 +0,0 @@
|
||||
--- ./pkg/check.c.orig 2012-03-29 23:57:58.000000000 +0200
|
||||
+++ ./pkg/check.c 2012-03-30 12:27:58.010105703 +0200
|
||||
@@ -313,6 +313,7 @@
|
||||
break;
|
||||
case 'r':
|
||||
recomputeflatsize = true;
|
||||
+ flags |= PKG_LOAD_FILES;
|
||||
if (geteuid() != 0)
|
||||
errx(EX_USAGE, "Needs to be root to recompute the flatsize");
|
||||
break;
|
@ -1,4 +1,3 @@
|
||||
To test/use pkg you first needs to upgrade your local package database this,
|
||||
just run:
|
||||
If you are upgrading from the old package format, first run:
|
||||
|
||||
$ pkg2ng
|
||||
|
Loading…
Reference in New Issue
Block a user