pkgsrc-Changes archive

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

CVS commit: pkgsrc/pkgtools/depgraph/files



Module Name:    pkgsrc
Committed By:   agc
Date:           Fri Mar 13 02:59:31 UTC 2026

Modified Files:
        pkgsrc/pkgtools/depgraph/files: depgraph.sh

Log Message:
pkgtools/depgraph: update to 20260312, fixing a tyop I made in a regexp which
made GNU sed unhappy (but which BSD sed was happy with). Thanks to Mark
Davies for pointing it out. Tested on a ubuntu VM from September 2025 I found
lurking...


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/pkgtools/depgraph/files/depgraph.sh

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/pkgtools/depgraph/files/depgraph.sh
diff -u pkgsrc/pkgtools/depgraph/files/depgraph.sh:1.1 pkgsrc/pkgtools/depgraph/files/depgraph.sh:1.2
--- pkgsrc/pkgtools/depgraph/files/depgraph.sh:1.1      Wed Mar 11 21:54:30 2026
+++ pkgsrc/pkgtools/depgraph/files/depgraph.sh  Fri Mar 13 02:59:31 2026
@@ -25,7 +25,7 @@
 #
 # Usage: depgraph [-V] [-v] [pkg...]
 
-DEPGRAPH_VERSION=20260309
+DEPGRAPH_VERSION=20260312
 
 case "$(uname -s)" in
 NetBSD)
@@ -136,7 +136,7 @@ dopkg() {
                # llvm-19.1.7{,nb*}
                # llvm>=19.1.7
                deps=$(${pkg_info} -nq "${name}" | \
-                       ${sed} -E -e 's/(>=.*|\-\[0\-\9\]\*|\-[0-9.]+)(\{.*\})?$//' | \
+                       ${sed} -E -e 's/(>=.*|\-\[0\-9\]\*|\-[0-9.]+)(\{.*\})?$//' | \
                        ${sort} -u)
                for dep in ${deps}; do
                        if ${json}; then



Home | Main Index | Thread Index | Old Index