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:           Tue Apr 22 10:38:18 UTC 2025

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

Log Message:
revbump: postgresql fixup code is obsolete, remove it

Bump version.


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 pkgsrc/pkgtools/revbump/Makefile
cvs rdiff -u -r1.9 -r1.10 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.60 pkgsrc/pkgtools/revbump/Makefile:1.61
--- pkgsrc/pkgtools/revbump/Makefile:1.60       Sat Apr 19 07:58:05 2025
+++ pkgsrc/pkgtools/revbump/Makefile    Tue Apr 22 10:38:18 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.60 2025/04/19 07:58:05 wiz Exp $
+# $NetBSD: Makefile,v 1.61 2025/04/22 10:38:18 wiz Exp $
 
-PKGNAME=               revbump-3.7
+PKGNAME=               revbump-3.8
 CATEGORIES=            pkgtools
 
 MAINTAINER=            wiz%NetBSD.org@localhost

Index: pkgsrc/pkgtools/revbump/files/revbump.py
diff -u pkgsrc/pkgtools/revbump/files/revbump.py:1.9 pkgsrc/pkgtools/revbump/files/revbump.py:1.10
--- pkgsrc/pkgtools/revbump/files/revbump.py:1.9        Sat Apr 19 07:58:05 2025
+++ pkgsrc/pkgtools/revbump/files/revbump.py    Tue Apr 22 10:38:18 2025
@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 #
-# $NetBSD: revbump.py,v 1.9 2025/04/19 07:58:05 wiz Exp $
+# $NetBSD: revbump.py,v 1.10 2025/04/22 10:38:18 wiz Exp $
 #
 # Copyright (c) 2023 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -46,7 +46,6 @@ bldir_re = re.compile(r'^BUILDLINK_PKGSR
 pkgrevision_re = re.compile(r'PKGREVISION=([ \t]+)([0-9]+)$')
 pr_before_re = re.compile(r'(?:CATEGORIES=|\.\s*include)([ \t]+)')
 pr_after_re = re.compile(r'(?:PKGNAME=|COMMENT=)([ \t]+)')
-pgsql_fix_re = re.compile(r'postgresql[0-9]*-')
 python_fix_re = re.compile(r'py[0-9]*-')
 ruby_fix_re = re.compile(r'ruby[0-9]*-')
 
@@ -68,8 +67,6 @@ def bl3bump(path):
     version = version_process.stdout
     last_dash = version.rfind('-')
     version = version[:last_dash] + '>=' + version[last_dash+1:]
-    if pgsql_fix_re.match(version):
-        version = re.sub(pgsql_fix_re, 'postgresql${PGSQL_VERSION}-', version)
     if python_fix_re.match(version):
         version = re.sub(python_fix_re, '${PYPKGPREFIX}-', version)
     if ruby_fix_re.match(version):



Home | Main Index | Thread Index | Old Index