summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmcneill <jmcneill@pkgsrc.org>2019-06-22 12:14:49 +0000
committerjmcneill <jmcneill@pkgsrc.org>2019-06-22 12:14:49 +0000
commitb1e2b69f85b3b633f11ce4f604decb4624a3c7a0 (patch)
tree979c4d10853142226af6ddf5c595a9815bd3efc9
parentc2330a436bcb42d4ccb9c268d4251775aaa7bb5a (diff)
downloadpkgsrc-b1e2b69f85b3b633f11ce4f604decb4624a3c7a0.tar.gz
Build fix:
ValueError: invalid literal for int() with base 10: '_PATH_ORIG=/home/jmcneill/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R7/bin:/usr/pkg/bin:/usr/pkg/sbin:/usr/games:/usr/local/bin:/usr/local/sbin'
-rw-r--r--databases/tdb/distinfo3
-rw-r--r--databases/tdb/patches/patch-buildtools_wafsamba_samba__utils.py16
2 files changed, 18 insertions, 1 deletions
diff --git a/databases/tdb/distinfo b/databases/tdb/distinfo
index 1a005fd2e34..32f6e4ed947 100644
--- a/databases/tdb/distinfo
+++ b/databases/tdb/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.18 2019/03/26 11:48:38 adam Exp $
+$NetBSD: distinfo,v 1.19 2019/06/22 12:14:49 jmcneill Exp $
SHA1 (tdb-1.4.0.tar.gz) = 44de73122f1baa3eb3fa8cfbe4d84ef7eda3de19
RMD160 (tdb-1.4.0.tar.gz) = d71ab4dbdda09e8b25cd8c17a4e2407af79cdb46
@@ -6,3 +6,4 @@ SHA512 (tdb-1.4.0.tar.gz) = 3c5e17f8011e61e855a745dbff18ba9f778534f34e1538a68c88
Size (tdb-1.4.0.tar.gz) = 696994 bytes
SHA1 (patch-buildtools_wafsamba_samba__conftests.py) = 50ff76f5b085f770751ca8bb93c8544cfdcd40d9
SHA1 (patch-buildtools_wafsamba_samba__install.py) = d801340617da325e3bb70a90350e45cc8e383c2d
+SHA1 (patch-buildtools_wafsamba_samba__utils.py) = 2d05638e542ecadf4d0475d25d89a1ae59289bd2
diff --git a/databases/tdb/patches/patch-buildtools_wafsamba_samba__utils.py b/databases/tdb/patches/patch-buildtools_wafsamba_samba__utils.py
new file mode 100644
index 00000000000..5aee2cbddc7
--- /dev/null
+++ b/databases/tdb/patches/patch-buildtools_wafsamba_samba__utils.py
@@ -0,0 +1,16 @@
+$NetBSD: patch-buildtools_wafsamba_samba__utils.py,v 1.1 2019/06/22 12:14:49 jmcneill Exp $
+
+--- buildtools/wafsamba/samba_utils.py.orig 2019-03-21 10:12:32.000000000 +0000
++++ buildtools/wafsamba/samba_utils.py
+@@ -519,10 +519,7 @@ def CHECK_MAKEFLAGS(options):
+ setattr(options, opt[0:loc], opt[loc+1:])
+ elif opt[0] != '-':
+ for v in opt:
+- if re.search(r'j[0-9]*$', v):
+- jobs_set = True
+- jobs = opt.strip('j')
+- elif v == 'k':
++ if v == 'k':
+ options.keep = True
+ elif re.search(r'-j[0-9]*$', opt):
+ jobs_set = True