global: Remove v13 targets
authorDevrim Gunduz <devrim@gunduz.org>
Tue, 18 Nov 2025 07:17:00 +0000 (10:17 +0300)
committerDevrim Gunduz <devrim@gunduz.org>
Tue, 18 Nov 2025 07:17:00 +0000 (10:17 +0300)
rpm/redhat/global/Makefile.global
rpm/redhat/global/Makefile.global-PG13 [deleted file]
rpm/redhat/global/Makefile.global-PG13-testing [deleted file]

index cb2bfe5ee42f1b26175e758ae815eb2cb780550a..7e1719f4e263c8366eda1e967739bddc5c5b06d5 100644 (file)
@@ -28,8 +28,6 @@ include ../../../../global/Makefile.global-common
 include ../../../../global/Makefile.global-common-testing
 include ../../../../global/Makefile.global-extras
 include ../../../../global/Makefile.global-extras-testing
-include ../../../../global/Makefile.global-PG13-testing
-include ../../../../global/Makefile.global-PG13
 include ../../../../global/Makefile.global-PG14-testing
 include ../../../../global/Makefile.global-PG14
 include ../../../../global/Makefile.global-PG15-testing
diff --git a/rpm/redhat/global/Makefile.global-PG13 b/rpm/redhat/global/Makefile.global-PG13
deleted file mode 100644 (file)
index 39391bf..0000000
+++ /dev/null
@@ -1,118 +0,0 @@
-#################################
-# Makefile for PostgreSQL 13   #
-# packaging                    #
-# https://yum.postgresql.org   #
-#                              #
-# Devrim Gunduz                        #
-# devrim@gunduz.org            #
-#################################
-#                              #
-#                              #
-# build target is for          #
-# RPM buildfarm                        #
-#                              #
-#                              #
-#################################
-
-
-## PostgreSQL 13
-
-prep13:
-       if [ -f dead.package ]; then echo "This package is marked as dead. Build won't continue"; exit 1; fi
-       # Update spec file, patches, etc, before running spectool:
-       git pull
-       # Use spectool to download source files, especially tarballs.
-       spectool -g -S --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" $(SPECFILE)
-
-build13: prep13
-       rpmbuild --define "_sourcedir $(PWD)" \
-       --define "_specdir $(PWD)" \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "_builddir $(HOME)/rpm13/BUILD" \
-       --define "_srcrpmdir $(HOME)/rpm13/SRPMS" \
-       --define "_rpmdir $(HOME)/rpm13/RPMS/" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "dist $(DIST)" -bb $(SPECFILE)
-       make bfsrpm13
-
-srpm13: prep13
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_builddir ." --define "_srcrpmdir ." \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13"  --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)
-
-bfsrpm13: prep13
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_builddir ." --define "_srcrpmdir $(HOME)/rpm13/SRPMS" \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13"  --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)
-
-bfnoprepsrpm13:
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_builddir ." --define "_srcrpmdir $(HOME)/rpm13/SRPMS" \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13"  --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)
-
-bfnosignsrpm13: prep13
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "_builddir ." --define "_srcrpmdir $(HOME)/rpm13/SRPMS" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13"  --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)
-
-rpm13: prep13
-       rpmbuild --define "_sourcedir $(PWD)" \
-       --define "_specdir $(PWD)" \
-       --define  "_builddir $(PWD)" \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "_srcrpmdir $(PWD)" \
-       --define "_rpmdir $(PWD)" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "dist $(DIST)" -bb $(SPECFILE)
-
-nosignbuild13: prep13
-       rpmbuild --define "_sourcedir $(PWD)" \
-       --define "_specdir $(PWD)" \
-       --define  "_builddir $(HOME)/rpm13/BUILD" \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "_srcrpmdir $(HOME)/rpm13/SRPMS" \
-       --define "_rpmdir $(HOME)/rpm13/RPMS/" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "dist $(DIST)" -bb $(SPECFILE)
-       make bfnosignsrpm13
-
-noprepbuild13:
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_builddir ." --define "_srcrpmdir $(HOME)/rpm13/SRPMS" \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)
-
-       rpmbuild --define "_sourcedir $(PWD)" \
-       --define "_specdir $(PWD)" \
-       --define  "_builddir $(HOME)/rpm13/BUILD" \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "_srcrpmdir $(HOME)/rpm13/SRPMS" \
-       --define "_rpmdir $(HOME)/rpm13/RPMS/" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "dist $(DIST)" -bb $(SPECFILE)
-
-nopreprpm13:
-       rpmbuild --define "_sourcedir $(PWD)" \
-       --define "_specdir $(PWD)" \
-       --define  "_builddir $(PWD)" \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "_srcrpmdir $(PWD)" \
-       --define "_rpmdir $(PWD)" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "dist $(DIST)" -bb $(SPECFILE)
-
-noprepsrpm13:
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_builddir ." --define "_srcrpmdir ." \
-       --define "_buildrootdir $(HOME)/rpm13/BUILDROOT" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)
diff --git a/rpm/redhat/global/Makefile.global-PG13-testing b/rpm/redhat/global/Makefile.global-PG13-testing
deleted file mode 100644 (file)
index cf8f181..0000000
+++ /dev/null
@@ -1,104 +0,0 @@
-#################################
-# Makefile for PostgreSQL 13   #
-# testing packaging            #
-# https://yum.postgresql.org   #
-#                              #
-# Devrim Gunduz                        #
-# devrim@gunduz.org            #
-#################################
-#                              #
-#                              #
-# build target is for          #
-# RPM buildfarm                        #
-#                              #
-#                              #
-#################################
-
-
-## PostgreSQL 13 Testing
-
-build13testing: prep13
-       rpmbuild --define "_sourcedir $(PWD)" \
-       --define "_specdir $(PWD)" \
-       --define "_buildrootdir $(HOME)/rpm13testing/BUILDROOT" \
-       --define "_builddir $(HOME)/rpm13testing/BUILD" \
-       --define "_srcrpmdir $(HOME)/rpm13testing/SRPMS" \
-       --define "_rpmdir $(HOME)/rpm13testing/RPMS/" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "dist $(DIST)" -bb $(SPECFILE)
-       make bfsrpm13testing
-
-srpm13testing: prep13
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_builddir ." --define "_srcrpmdir ." \
-       --define "_buildrootdir $(HOME)/rpm13testing/BUILDROOT" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13"  --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)
-
-bfsrpm13testing: prep13
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_builddir ." --define "_srcrpmdir $(HOME)/rpm13testing/SRPMS" \
-       --define "_buildrootdir $(HOME)/rpm13testing/BUILDROOT" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13"  --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)
-
-bfnosignsrpm13testing: prep13
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_buildrootdir $(HOME)/rpm13testing/BUILDROOT" \
-       --define "_builddir ." --define "_srcrpmdir $(HOME)/rpm13testing/SRPMS" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13"  --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)
-
-rpm13testing: prep13
-       rpmbuild --define "_sourcedir $(PWD)" \
-       --define "_specdir $(PWD)" \
-       --define  "_builddir $(PWD)" \
-       --define "_buildrootdir $(HOME)/rpm13testing/BUILDROOT" \
-       --define "_srcrpmdir $(PWD)" \
-       --define "_rpmdir $(PWD)" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "dist $(DIST)" -bb $(SPECFILE)
-
-nosignbuild13testimg:
-       rpmbuild --define "_sourcedir $(PWD)" \
-       --define "_specdir $(PWD)" \
-       --define  "_builddir $(HOME)/rpm13testing/BUILD" \
-       --define "_buildrootdir $(HOME)/rpm13testing/BUILDROOT" \
-       --define "_srcrpmdir $(HOME)/rpm13testing/SRPMS" \
-       --define "_rpmdir $(HOME)/rpm13testing/RPMS/" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "dist $(DIST)" -bb $(SPECFILE)
-       make bfnosignsrpm13testing
-
-noprepbuild13testing:
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_builddir ." --define "_srcrpmdir $(HOME)/rpm13testing/SRPMS" \
-       --define "_buildrootdir $(HOME)/rpm13testing/BUILDROOT" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)
-
-       rpmbuild --define "_sourcedir $(PWD)" \
-       --define "_specdir $(PWD)" \
-       --define  "_builddir $(HOME)/rpm13testing/BUILD" \
-       --define "_buildrootdir $(HOME)/rpm13testing/BUILDROOT" \
-       --define "_srcrpmdir $(HOME)/rpm13testing/SRPMS" \
-       --define "_rpmdir $(HOME)/rpm13testing/RPMS/" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "dist $(DIST)" -bb $(SPECFILE)
-
-nopreprpm13testing:
-       rpmbuild --define "_sourcedir $(PWD)" \
-       --define "_specdir $(PWD)" \
-       --define  "_builddir $(PWD)" \
-       --define "_buildrootdir $(HOME)/rpm13testing/BUILDROOT" \
-       --define "_srcrpmdir $(PWD)" \
-       --define "_rpmdir $(PWD)" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "dist $(DIST)" -bb $(SPECFILE)
-
-noprepsrpm13testing:
-       rpmbuild --define "_sourcedir ." --define "_specdir ." \
-       --define "_builddir ." --define "_srcrpmdir ." \
-       --define "_buildrootdir $(HOME)/rpm13testing/BUILDROOT" \
-       --define "pgmajorversion 13" --define "pginstdir /usr/pgsql-13" --define "pgpackageversion 13" \
-       --define "_rpmdir ." --define "dist $(DIST)" --nodeps -bs $(SPECFILE)