pkgsrc-Changes archive

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

CVS commit: pkgsrc/pkgtools/url2pkg



Module Name:    pkgsrc
Committed By:   maya
Date:           Mon Sep  9 08:08:03 UTC 2019

Modified Files:
        pkgsrc/pkgtools/url2pkg: Makefile
        pkgsrc/pkgtools/url2pkg/files: url2pkg.pl

Log Message:
url2pkg 2.33: fix cargo packaging typo.

We don't have a third match to the regex.


To generate a diff of this commit:
cvs rdiff -u -r1.95 -r1.96 pkgsrc/pkgtools/url2pkg/Makefile
cvs rdiff -u -r1.63 -r1.64 pkgsrc/pkgtools/url2pkg/files/url2pkg.pl

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

Modified files:

Index: pkgsrc/pkgtools/url2pkg/Makefile
diff -u pkgsrc/pkgtools/url2pkg/Makefile:1.95 pkgsrc/pkgtools/url2pkg/Makefile:1.96
--- pkgsrc/pkgtools/url2pkg/Makefile:1.95       Sun Aug 18 13:32:21 2019
+++ pkgsrc/pkgtools/url2pkg/Makefile    Mon Sep  9 08:08:02 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.95 2019/08/18 13:32:21 rillig Exp $
+# $NetBSD: Makefile,v 1.96 2019/09/09 08:08:02 maya Exp $
 
-PKGNAME=       url2pkg-2.32
+PKGNAME=       url2pkg-2.33
 CATEGORIES=    pkgtools
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/pkgtools/url2pkg/files/url2pkg.pl
diff -u pkgsrc/pkgtools/url2pkg/files/url2pkg.pl:1.63 pkgsrc/pkgtools/url2pkg/files/url2pkg.pl:1.64
--- pkgsrc/pkgtools/url2pkg/files/url2pkg.pl:1.63       Sun Aug 18 21:04:37 2019
+++ pkgsrc/pkgtools/url2pkg/files/url2pkg.pl    Mon Sep  9 08:08:02 2019
@@ -1,5 +1,5 @@
 #! @PERL5@
-# $NetBSD: url2pkg.pl,v 1.63 2019/08/18 21:04:37 rillig Exp $
+# $NetBSD: url2pkg.pl,v 1.64 2019/09/09 08:08:02 maya Exp $
 #
 
 # Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -427,7 +427,7 @@ sub adjust_cargo() {
        while (defined(my $line = <CONF>)) {
                # "checksum cargo-package-name cargo-package-version
                if ($line =~ qr"^\"checksum\s(\S+)\s(\S+)") {
-                       push(@build_vars, var("CARGO_CRATE_DEPENDS", "+=", "$2-$3"));
+                       push(@build_vars, var("CARGO_CRATE_DEPENDS", "+=", "$1-$2"));
                }
        }
        close(CONF);



Home | Main Index | Thread Index | Old Index