pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/pkgtools/url2pkg/files pkgtools/url2pkg: ignore commen...
details: https://anonhg.NetBSD.org/pkgsrc/rev/97ef470bb890
branches: trunk
changeset: 340494:97ef470bb890
user: rillig <rillig%pkgsrc.org@localhost>
date: Thu Oct 03 18:28:29 2019 +0000
description:
pkgtools/url2pkg: ignore commented variables
diffstat:
pkgtools/url2pkg/files/url2pkg.py | 6 +++---
pkgtools/url2pkg/files/url2pkg_test.py | 6 ++++--
2 files changed, 7 insertions(+), 5 deletions(-)
diffs (53 lines):
diff -r e53cf80d1fb1 -r 97ef470bb890 pkgtools/url2pkg/files/url2pkg.py
--- a/pkgtools/url2pkg/files/url2pkg.py Thu Oct 03 16:57:20 2019 +0000
+++ b/pkgtools/url2pkg/files/url2pkg.py Thu Oct 03 18:28:29 2019 +0000
@@ -1,5 +1,5 @@
#! @PYTHONBIN@
-# $NetBSD: url2pkg.py,v 1.5 2019/10/03 16:43:58 rillig Exp $
+# $NetBSD: url2pkg.py,v 1.6 2019/10/03 18:28:29 rillig Exp $
# Copyright (c) 2019 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -386,7 +386,7 @@
string.
"""
varassign = self.unique_varassign(varname)
- return varassign.value if varassign is not None else ''
+ return varassign.value if varassign is not None and varassign.varname == varname else ''
def remove_if(self, varname: str, expected_value: str) -> bool:
""" Removes a variable assignment if its value is the expected one. """
@@ -775,7 +775,7 @@
lines = Lines(*self.makefile_lines.lines[: marker_index])
- if lines.index(r'^PKGNAME=') == -1:
+ if lines.get('PKGNAME=') == '':
distname_index = lines.index(r'^DISTNAME=(\t+)')
if distname_index != -1:
pkgname_line = 'PKGNAME=\t%s${DISTNAME%s}' % (self.pkgname_prefix, self.pkgname_transform)
diff -r e53cf80d1fb1 -r 97ef470bb890 pkgtools/url2pkg/files/url2pkg_test.py
--- a/pkgtools/url2pkg/files/url2pkg_test.py Thu Oct 03 16:57:20 2019 +0000
+++ b/pkgtools/url2pkg/files/url2pkg_test.py Thu Oct 03 18:28:29 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: url2pkg_test.py,v 1.4 2019/10/03 16:43:58 rillig Exp $
+# $NetBSD: url2pkg_test.py,v 1.5 2019/10/03 18:28:29 rillig Exp $
from url2pkg import *
@@ -250,12 +250,14 @@
lines = Lines(
"VAR=value",
"VAR=\tvalue # comment",
- "UNIQUE=\tunique"
+ "UNIQUE=\tunique",
+ "#COMMENTED=\tvalue",
)
assert lines.get("VAR") == "" # too many values
assert lines.get("ENOENT") == "" # no value at all
assert lines.get("UNIQUE") == "unique"
+ assert lines.get("COMMENTED") == "" # commented out
def test_generate_initial_package_Makefile_lines__GitHub_archive():
Home |
Main Index |
Thread Index |
Old Index