pkgsrc-Changes archive

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

CVS commit: pkgsrc/pkgtools/pkg_rolling-replace



Module Name:    pkgsrc
Committed By:   gdt
Date:           Mon Jul 29 14:48:17 UTC 2019

Modified Files:
        pkgsrc/pkgtools/pkg_rolling-replace: Makefile
        pkgsrc/pkgtools/pkg_rolling-replace/files: pkg_rolling-replace.sh

Log Message:
pkgtools/pkg_rollingreplace: Update to 0.24.7

When running pkg_chk, ignore packages marked "missing", which tend to
be the wrong python version.

This is a temporary kludge, but should allow pkg_rr to run on systems
that have changed python versions.


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 pkgsrc/pkgtools/pkg_rolling-replace/Makefile
cvs rdiff -u -r1.38 -r1.39 \
    pkgsrc/pkgtools/pkg_rolling-replace/files/pkg_rolling-replace.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/pkg_rolling-replace/Makefile
diff -u pkgsrc/pkgtools/pkg_rolling-replace/Makefile:1.43 pkgsrc/pkgtools/pkg_rolling-replace/Makefile:1.44
--- pkgsrc/pkgtools/pkg_rolling-replace/Makefile:1.43   Fri Apr 26 18:14:15 2019
+++ pkgsrc/pkgtools/pkg_rolling-replace/Makefile        Mon Jul 29 14:48:17 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.43 2019/04/26 18:14:15 gdt Exp $
+# $NetBSD: Makefile,v 1.44 2019/07/29 14:48:17 gdt Exp $
 
-PKGNAME=       pkg_rolling-replace-0.24.6
+PKGNAME=       pkg_rolling-replace-0.24.7
 CATEGORIES=    pkgtools
 
 MAINTAINER=    gdt%NetBSD.org@localhost

Index: pkgsrc/pkgtools/pkg_rolling-replace/files/pkg_rolling-replace.sh
diff -u pkgsrc/pkgtools/pkg_rolling-replace/files/pkg_rolling-replace.sh:1.38 pkgsrc/pkgtools/pkg_rolling-replace/files/pkg_rolling-replace.sh:1.39
--- pkgsrc/pkgtools/pkg_rolling-replace/files/pkg_rolling-replace.sh:1.38       Fri Apr 26 18:14:15 2019
+++ pkgsrc/pkgtools/pkg_rolling-replace/files/pkg_rolling-replace.sh    Mon Jul 29 14:48:17 2019
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# $NetBSD: pkg_rolling-replace.sh,v 1.38 2019/04/26 18:14:15 gdt Exp $
+# $NetBSD: pkg_rolling-replace.sh,v 1.39 2019/07/29 14:48:17 gdt Exp $
 #<license>
 # Copyright (c) 2006 BBN Technologies Corp.  All rights reserved.
 #
@@ -151,7 +151,7 @@ OPC='rr>' # continuation
 # supported.  Newer versions may or may not work (patches welcome).
 check_packages_mismatched()
 {
-    ${PKG_CHK} -u -q $opt_B | while read line; do
+    ${PKG_CHK} -u -q $opt_B | egrep -v missing | while read line; do
         # duplicate output of pkg_chk to stderr (bypass $(...) or `...`)
         echo "${OPC} $line" 1>&2
        # Look for the first thing that looks like pkg-version rather



Home | Main Index | Thread Index | Old Index