pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases/tdb Build fix:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/3a7da8f7a2d0
branches:  trunk
changeset: 335575:3a7da8f7a2d0
user:      jmcneill <jmcneill%pkgsrc.org@localhost>
date:      Sat Jun 22 12:14:49 2019 +0000

description:
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'

diffstat:

 databases/tdb/distinfo                                          |   3 +-
 databases/tdb/patches/patch-buildtools_wafsamba_samba__utils.py |  16 ++++++++++
 2 files changed, 18 insertions(+), 1 deletions(-)

diffs (34 lines):

diff -r afe3ddbc3fac -r 3a7da8f7a2d0 databases/tdb/distinfo
--- a/databases/tdb/distinfo    Sat Jun 22 11:52:31 2019 +0000
+++ b/databases/tdb/distinfo    Sat Jun 22 12:14:49 2019 +0000
@@ -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 @@
 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 -r afe3ddbc3fac -r 3a7da8f7a2d0 databases/tdb/patches/patch-buildtools_wafsamba_samba__utils.py
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/tdb/patches/patch-buildtools_wafsamba_samba__utils.py   Sat Jun 22 12:14:49 2019 +0000
@@ -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



Home | Main Index | Thread Index | Old Index