We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent77fd5f9 commitddf5199Copy full SHA for ddf5199
packaging/Dockerfiles/Dockerfile-centos_6
packaging/Dockerfiles/Dockerfile-rhel_7
@@ -1,5 +1,7 @@
1
-FROM registry.access.redhat.com/rhel7
2
-RUN yum install -y tar wget rpm-build yum-utils
3
-RUN yum install -y gcc make perl libicu-devel glibc-devel bison flex
+FROM registry.access.redhat.com/ubi7
+RUN yum install -y http://mirror.centos.org/centos/7/os/x86_64/Packages/elfutils-0.176-5.el7.x86_64.rpm
+RUN yum install -y http://mirror.centos.org/centos/7/os/x86_64/Packages/rpm-build-4.11.3-45.el7.x86_64.rpm
4
+RUN yum install -y tar wget yum-utils
5
+RUN yum install -y gcc make perl libicu-devel glibc-devel
6
RUN yum install -y git
7
RUN yum upgrade -y
packaging/Dockerfiles/Dockerfile-rhel_8
@@ -1,5 +1,5 @@
-FROMecpe4s/rhel8-spack
+FROMregistry.access.redhat.com/ubi8
RUN yum install -y tar wget rpm-build yum-utils
packaging/Makefile.pkg
@@ -86,12 +86,9 @@ include packaging/pkg/Makefile.debian
86
include packaging/pkg/Makefile.ubuntu
87
88
# CENTOS
89
-build/centos: build/centos_6 build/centos_7 build/centos_8 #build/rpm_repo_package_centos
+build/centos: build/centos_7 build/centos_8 #build/rpm_repo_package_centos
90
@echo Centos: done
91
92
-build/centos_6: build/centos_6_9.5 build/centos_6_9.6 build/centos_6_10 build/centos_6_11 build/centos_6_12 build/centos_6_13
93
-@echo Centos 6: done
94
-
95
build/centos_7: build/centos_7_9.5 build/centos_7_9.6 build/centos_7_10 build/centos_7_11 build/centos_7_12 build/centos_7_13
96
@echo Centos 7: done
97
@@ -112,12 +109,9 @@ build/oraclelinux_8: build/oraclelinux_8_9.5 build/oraclelinux_8_9.6 build/oracl
112
109
@echo Oraclelinux 8: done
113
110
114
111
# RHEL
115
-build/rhel: build/rhel_6 build/rhel_7 build/rhel_8 #build/rpm_repo_package_rhel
+build/rhel: build/rhel_7 build/rhel_8 #build/rpm_repo_package_rhel
116
@echo Rhel: done
117
118
-build/rhel_6: build/rhel_6_9.5 build/rhel_6_9.6 build/rhel_6_10 build/rhel_6_11 build/rhel_6_12 build/rhel_6_13
119
-@echo Rhel 6: done
120
121
build/rhel_7: build/rhel_7_9.5 build/rhel_7_9.6 build/rhel_7_10 build/rhel_7_11 build/rhel_7_12 build/rhel_7_13
122
@echo Rhel 7: done
123
packaging/Makefile.repo
@@ -39,13 +39,9 @@ build/repo_ubuntu_20.04:
39
touch build/repo_ubuntu_20.04
40
41
# Centos
42
-repo/centos: build/repo_centos_6 build/repo_centos_7 build/repo_centos_8
+repo/centos: build/repo_centos_7 build/repo_centos_8
43
@echo Build repo for centos platforms: done
44
45
-build/repo_centos_6:
46
-$(call build_repo_rpm,centos,6,,)
47
-touch build/repo_centos_6
48
49
build/repo_centos_7:
50
$(call build_repo_rpm,centos,7,,)
51
touch build/repo_centos_7
@@ -71,13 +67,9 @@ build/repo_oraclelinux_8:
71
67
touch build/repo_oraclelinux_8
72
68
73
69
74
-repo/rhel: build/repo_rhel_6 build/repo_rhel_7 build/repo_rhel_8
70
+repo/rhel: build/repo_rhel_7 build/repo_rhel_8
75
@echo Build repo for rhel platforms: done
76
77
-build/repo_rhel_6:
78
-$(call build_repo_rpm,rhel,6,6Server)
79
-touch build/repo_rhel_6
80
81
build/repo_rhel_7:
82
$(call build_repo_rpm,rhel,7,7Server)
83
touch build/repo_rhel_7
packaging/Makefile.test
@@ -71,16 +71,13 @@ build/test_oraclelinux_8: build/test_oraclelinux_8_9.6 build/test_oraclelinux_8_
-build/test_rhel: build/test_rhel_6 build/test_rhel_7 build/test_rhel_8
+build/test_rhel: build/test_rhel_7 build/test_rhel_8
-build/test_rhel_6: build/test_rhel_6_9.6 build/test_rhel_6_10 build/test_rhel_6_11 build/test_rhel_6_12 build/test_rhel_6_13
-build/test_rhel_7: build/test_rhel_7_9.6 build/test_rhel_7_10 build/test_rhel_7_11 build/test_rhel_7_12 build/test_rhel_7_13
+build/test_rhel_7: build/test_rhel_7_9.5 build/test_rhel_7_9.6 build/test_rhel_7_10 build/test_rhel_7_11 build/test_rhel_7_12 build/test_rhel_7_13
-build/test_rhel_8: build/test_rhel_8_9.6 build/test_rhel_8_10 build/test_rhel_8_11 build/test_rhel_8_12 build/test_rhel_8_13
+build/test_rhel_8: build/test_rhel_8_9.5 build/test_rhel_8_9.6 build/test_rhel_8_10 build/test_rhel_8_11 build/test_rhel_8_12 build/test_rhel_8_13
84
@echo Rhel 8: done
85
define test_rpm
packaging/pkg/Makefile.centos
@@ -1,28 +1,3 @@
-# CENTOS 6
-build/centos_6_9.5:
-$(call build_rpm,centos,6,,9.5,9.5.25)
-touch build/centos_6_9.5
-build/centos_6_9.6:
-$(call build_rpm,centos,6,,9.6,9.6.21)
8
-touch build/centos_6_9.6
9
10
-build/centos_6_10:
11
-$(call build_rpm,centos,6,,10,10.16)
12
-touch build/centos_6_10
13
14
-build/centos_6_11:
15
-$(call build_rpm,centos,6,,11,11.11)
16
-touch build/centos_6_11
17
18
-build/centos_6_12:
19
-$(call build_rpm,centos,6,,12,12.6)
20
-touch build/centos_6_12
21
22
-build/centos_6_13:
23
-$(call build_rpm,centos,6,,13,13.2)
24
-touch build/centos_6_13
25
26
# CENTOS 7
27
build/centos_7_9.5:
28
$(call build_rpm,centos,7,,9.5,9.5.25)
packaging/pkg/Makefile.rhel
-# RHEL 6
-build/rhel_6_9.5:
-$(call build_rpm,rhel,6,6Server,9.5,9.5.25)
-touch build/rhel_6_9.5
-build/rhel_6_9.6:
-$(call build_rpm,rhel,6,6Server,9.6,9.6.21)
-touch build/rhel_6_9.6
-build/rhel_6_10:
-$(call build_rpm,rhel,6,6Server,10,10.16)
-touch build/rhel_6_10
-build/rhel_6_11:
-$(call build_rpm,rhel,6,6Server,11,11.11)
-touch build/rhel_6_11
-build/rhel_6_12:
-$(call build_rpm,rhel,6,6Server,12,12.6)
-touch build/rhel_6_12
-build/rhel_6_13:
-$(call build_rpm,rhel,6,6Server,13,13.2)
-touch build/rhel_6_13
# RHEL 7
build/rhel_7_9.5:
$(call build_rpm,rhel,7,7Server,9.5,9.5.25)
packaging/pkg/specs/rpm/rpmbuild/SPECS/pg_probackup-pgpro.spec
@@ -18,8 +18,8 @@ Url: http://postgrespro.ru/
#Source1: pg_probackup-%{version}.tar.bz2
Source0: postgrespro-%{edition}-%{pgsql_full}
Source1: pg_probackup-%{version}
-BuildRequires: gcc make perl glibc-devel bison flex
-BuildRequires:readline-developenssl-devel gettext zlib-devel
+BuildRequires: gcc make perl glibc-devel
+BuildRequires: openssl-devel gettext zlib-devel
%description
packaging/pkg/specs/rpm/rpmbuild/SPECS/pg_probackup.spec
@@ -13,7 +13,7 @@ License: BSD
Url: http://postgrespro.ru/
Source0: http://ftp.postgresql.org/pub/source/v%{pgsql_full}/postgresql-%{pgsql_major}.tar.bz2
Source1: pg_probackup-%{version}.tar.bz2
-BuildRequires: gcc make perl glibc-develbison flex readline-developenssl-devel gettext zlib-devel
+BuildRequires: gcc make perl glibc-devel openssl-devel gettext zlib-devel
Backup tool for PostgreSQL.