blob: 2d68ce5ec42dc7873152513c0e6c89aaf5f3a541 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
# Maintainer: Marc Rechté <marc4@rechte.fr>
pkgbase=postgresql15
pkgver=15.8
_majorver=${pkgver%.*}
pkgname=("${pkgbase}-libs" "${pkgbase}-docs" "${pkgbase}")
pkgrel=1
pkgdesc='Sophisticated object-relational DBMS'
url='https://www.postgresql.org/'
arch=('x86_64')
provides=("postgresql")
license=('custom:PostgreSQL')
makedepends=('krb5' 'libxml2' 'python' 'tcl>=8.6.0' 'openssl>=1.0.0'
'pam' 'zlib' 'icu' 'systemd' 'libldap' 'llvm' 'clang' 'libxslt')
optdepends=('perl: perl support requires recompile with --with-perl')
source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2
postgresql.service
postgresql-check-db-dir
postgresql.sysusers
postgresql.tmpfiles
pgenv.sh
postgresql-run-socket.patch
postgresql-perl-rpath.patch
postgresql-test-xml.patch)
sha256sums=('4403515f9a69eeb3efebc98f30b8c696122bfdf895e92b3b23f5b8e769edcb6a'
'fe19a0f68a9f10435fe09efbe7407de8cbe9bf16686d63524778e90dad67f863'
'8426f2ad548fb00452b340a631ab070899c0d44e7a88c8c3eec087c75ce32e6e'
'7fa8f0ef3f9d40abd4749cc327c2f52478cb6dfb6e2405bd0279c95e9ff99f12'
'fddc68565151077b4f514345087c38ca069d049b8a17dbf7eef2826f49ccbc7b'
'1ea08f0f7819c9ef965ef7851a2262ae6f4837242d7fde2b6a8098b969d1133e'
'02ffb53b0a5049233f665c873b96264db77daab30e5a2194d038202d815a8e6a'
'af6186d40128e043f333da4591455bf62b7c96e80214835f5c8c60b635ea9afb'
'9aff2a0c5101e6a4256f73abd21caa2b0a3e62e0e70611ca538c8e14b9f5f6fa')
prepare() {
cd postgresql-${pkgver}
patch -p1 < ../postgresql-run-socket.patch
patch -p1 < ../postgresql-perl-rpath.patch
# fixed with 15.8 patch -p1 < ../postgresql-test-xml.patch
}
build() {
cd postgresql-${pkgver}
local options=(
--prefix=/opt/${pkgbase}
--sysconfdir=/etc
--with-gssapi
--with-libxml
--with-openssl
--with-perl
--with-python
--with-tcl
--with-pam
--with-system-tzdata=/usr/share/zoneinfo
--with-uuid=e2fs
--with-icu
--with-systemd
--with-ldap
--with-llvm
--with-libxslt
--with-lz4
--with-zstd
--enable-nls
--enable-thread-safety
--disable-rpath
)
# Fix static libs (will not link if not set)
CFLAGS+=" -ffat-lto-objects"
# Add RUNPATH to locate libraries
LDFLAGS="-Wl,-rpath,/opt/${pkgbase}/lib"
# build
./configure "${options[@]}"
make world
}
_postgres_check() {
LANG=C make "${1}" || (find . -name regression.diffs | \
while read -r line; do
echo "make ${1} failure: ${line}"
cat "${line}"
done; exit 1)
}
check() {
cd postgresql-${pkgver}
_postgres_check check
_postgres_check check-world
}
package_postgresql15-libs() {
pkgdesc="Libraries for use with PostgreSQL"
depends=('krb5' 'openssl>=1.0.0' 'readline>=6.0' 'zlib' 'libldap')
provides=("${pkgbase}-client" 'libpq.so' 'libecpg.so' 'libecpg_compat.so' 'libpgtypes.so')
conflicts=("${pkgbase}-client")
pushd postgresql-${pkgver}
# install license
install -Dm 644 COPYRIGHT -t "${pkgdir}/opt/${pkgbase}/share/licenses/${pkgname}"
# install libs and non-server binaries
for dir in src/interfaces src/bin/pg_config src/bin/pg_dump src/bin/psql src/bin/scripts; do
make -C ${dir} DESTDIR="${pkgdir}" install
done
for util in pg_config pg_dump pg_dumpall pg_restore psql \
clusterdb createdb createuser dropdb dropuser pg_isready reindexdb vacuumdb; do
install -Dm 644 doc/src/sgml/man1/${util}.1 "${pkgdir}"/opt/${pkgbase}/share/man/man1/${util}.1
done
cd src/include
install -d "${pkgdir}"/opt/${pkgbase}/include/{libpq,postgresql/internal/libpq}
# these headers are needed by the public headers of the interfaces
install -m 644 pg_config.h "${pkgdir}/opt/${pkgbase}/include"
install -m 644 pg_config_os.h "${pkgdir}/opt/${pkgbase}/include"
install -m 644 pg_config_ext.h "${pkgdir}/opt/${pkgbase}/include"
install -m 644 postgres_ext.h "${pkgdir}/opt/${pkgbase}/include"
install -m 644 libpq/libpq-fs.h "${pkgdir}/opt/${pkgbase}/include/libpq"
install -m 644 pg_config_manual.h "${pkgdir}/opt/${pkgbase}/include"
# these he aders are needed by the not-so-public headers of the interfaces
install -m 644 c.h "${pkgdir}/opt/${pkgbase}/include/postgresql/internal"
install -m 644 port.h "${pkgdir}/opt/${pkgbase}/include/postgresql/internal"
install -m 644 postgres_fe.h "${pkgdir}/opt/${pkgbase}/include/postgresql/internal"
install -m 644 libpq/pqcomm.h "${pkgdir}/opt/${pkgbase}/include/postgresql/internal/libpq"
# this utility is to be sourced in order to find proper libs and bins
popd
install -m 755 pgenv.sh "${pkgdir}/opt/${pkgbase}/bin"
}
package_postgresql15-docs() {
pkgdesc="HTML documentation for PostgreSQL"
options=('docs')
cd postgresql-${pkgver}
install -Dm 644 COPYRIGHT -t "${pkgdir}/opt/${pkgbase}/share/licenses/${pkgname}"
make -C doc/src/sgml DESTDIR="${pkgdir}" install-html
chown -R root:root "${pkgdir}/opt/${pkgbase}/share/doc/html"
# clean up
rmdir "${pkgdir}"/opt/${pkgbase}/share/man/man{1,3,7}
rmdir "${pkgdir}"/opt/${pkgbase}/share/man
}
package_postgresql15() {
pkgdesc='Sophisticated object-relational DBMS'
# backup=('etc/pam.d/postgresql' 'etc/logrotate.d/postgresql')
depends=("${pkgbase}-libs>=${pkgver}" 'krb5' 'libxml2' 'readline>=6.0'
'openssl>=1.0.0' 'pam' 'icu' 'systemd-libs' 'libldap' 'llvm-libs' 'libxslt')
optdepends=('python: for PL/Python 3 support'
'perl: for PL/Perl support'
'tcl: for PL/Tcl support')
options=('staticlibs')
install=postgresql.install
pushd postgresql-${pkgver}
# install
make DESTDIR="${pkgdir}" install
make -C contrib DESTDIR="${pkgdir}" install
make -C doc/src/sgml DESTDIR="${pkgdir}" install-man
# we don't want these, they are in the -libs package
for dir in src/interfaces src/bin/pg_config src/bin/pg_dump src/bin/psql src/bin/scripts; do
make -C ${dir} DESTDIR="${pkgdir}" uninstall
done
for util in pg_config pg_dump pg_dumpall pg_restore psql \
clusterdb createdb createuser dropdb dropuser pg_isready reindexdb vacuumdb; do
rm "${pkgdir}"/opt/${pkgbase}/share/man/man1/${util}.1
done
install -Dm 644 COPYRIGHT -t "${pkgdir}/opt/${pkgbase}/share/licenses/${pkgname}"
popd
install -Dm 755 postgresql-check-db-dir -t "${pkgdir}/opt/${pkgbase}/bin"
#install -Dm 644 postgresql.pam "${pkgdir}/etc/pam.d/${pkgname}"
sed -e "s/\$pkgver/$pkgver/" -e "s/\$pkgbase/$pkgbase/" -e "s/\$_majorver/$_majorver/" postgresql.service >postgresql.service.tmp
install -Dm 644 postgresql.service.tmp "${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
install -Dm 644 postgresql.sysusers "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
sed -e "s/\$_majorver/$_majorver/" postgresql.tmpfiles >postgresql.tmpfiles.tmp
install -Dm 644 postgresql.tmpfiles.tmp "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
# clean up unneeded installed items
rm -rf "${pkgdir}/opt/${pkgbase}/include/internal"
rm -rf "${pkgdir}/opt/${pkgbase}/include/informix"
rm -rf "${pkgdir}/opt/${pkgbase}/include/libpq"
find "${pkgdir}//opt/${pkgbase}/include" -maxdepth 1 -type f -execdir rm {} +
rmdir "${pkgdir}/opt/${pkgbase}/share/doc/html"
}
# vim: ts=2 sw=2 et:
|