pkgsrc-Changes archive

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

CVS commit: pkgsrc/pkgtools/revbump



Module Name:    pkgsrc
Committed By:   wiz
Date:           Wed May 31 14:04:40 UTC 2023

Modified Files:
        pkgsrc/pkgtools/revbump: Makefile
        pkgsrc/pkgtools/revbump/files: revbump.py

Log Message:
revbump: update to 3.1

Bugfix: add package itself to commitlist


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 pkgsrc/pkgtools/revbump/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/pkgtools/revbump/files/revbump.py

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

Modified files:

Index: pkgsrc/pkgtools/revbump/Makefile
diff -u pkgsrc/pkgtools/revbump/Makefile:1.50 pkgsrc/pkgtools/revbump/Makefile:1.51
--- pkgsrc/pkgtools/revbump/Makefile:1.50       Fri May 26 06:47:54 2023
+++ pkgsrc/pkgtools/revbump/Makefile    Wed May 31 14:04:40 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.50 2023/05/26 06:47:54 wiz Exp $
+# $NetBSD: Makefile,v 1.51 2023/05/31 14:04:40 wiz Exp $
 
-PKGNAME=               revbump-3.0
+PKGNAME=               revbump-3.1
 CATEGORIES=            pkgtools
 
 MAINTAINER=            wiz%NetBSD.org@localhost

Index: pkgsrc/pkgtools/revbump/files/revbump.py
diff -u pkgsrc/pkgtools/revbump/files/revbump.py:1.1 pkgsrc/pkgtools/revbump/files/revbump.py:1.2
--- pkgsrc/pkgtools/revbump/files/revbump.py:1.1        Fri May 26 06:47:54 2023
+++ pkgsrc/pkgtools/revbump/files/revbump.py    Wed May 31 14:04:40 2023
@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 #
-# $NetBSD: revbump.py,v 1.1 2023/05/26 06:47:54 wiz Exp $
+# $NetBSD: revbump.py,v 1.2 2023/05/31 14:04:40 wiz Exp $
 #
 # Copyright (c) 2023 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -272,6 +272,7 @@ if args.package == 'lang/perl5':
 directories = [path[:path.rfind('/')] for path in makefile_result + bl3result]
 directories = filter(lambda name: name != args.package, directories)
 with open(args.output, 'w', encoding='utf-8') as f:
+    f.write(args.package + '\n')
     for directory in sorted(set(directories)):
         revbump(directory)
         f.write(directory + '\n')



Home | Main Index | Thread Index | Old Index