- update to 1.0
- changes: * SRV mirroring is on by default * fix large scripts executions * pkg check -d now installed packages tags as automatic * performance improvements
This commit is contained in:
parent
f74c314361
commit
72e4b80c71
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=303375
3 changed files with 3 additions and 15 deletions
|
@ -6,8 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= pkg
|
||||
DISTVERSION= 1.0-rc6
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 1.0
|
||||
CATEGORIES= ports-mgmt
|
||||
MASTER_SITES= LOCAL/portmgr \
|
||||
http://files.etoilebsd.net/pkg/
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (pkg-1.0-rc6.tar.xz) = 5613cff659caec850719d957206ec29454cdba44e6642242d7818f6290162230
|
||||
SIZE (pkg-1.0-rc6.tar.xz) = 1371072
|
||||
SHA256 (pkg-1.0.tar.xz) = 191ab4d1e199aaba193b29b0d37fcec00ae2b7687046927dac71557eec49df53
|
||||
SIZE (pkg-1.0.tar.xz) = 1372044
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- libpkg/pkg_config.c
|
||||
+++ libpkg/pkg_config.c
|
||||
@@ -268,7 +268,7 @@ subst_packagesite(void)
|
||||
|
||||
oldval = c[PKG_CONFIG_REPO].val;
|
||||
|
||||
- if ((variable_string = strstr(oldval, ABI_VAR_STRING)) == NULL)
|
||||
+ if (oldval == NULL || (variable_string = strstr(oldval, ABI_VAR_STRING)) == NULL)
|
||||
return;
|
||||
|
||||
newval = sbuf_new_auto();
|
Loading…
Reference in a new issue