blob: 0fe5d58e1cb4943c9933eec4b0297d7ba94b18ac [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "PostgreSQL is a powerful, open source relational database system."
2DESCRIPTION = "\
3 PostgreSQL is an advanced Object-Relational database management system \
4 (DBMS) that supports almost all SQL constructs (including \
5 transactions, subselects and user-defined types and functions). The \
6 postgresql package includes the client programs and libraries that \
7 you'll need to access a PostgreSQL DBMS server. These PostgreSQL \
8 client programs are programs that directly manipulate the internal \
9 structure of PostgreSQL databases on a PostgreSQL server. These client \
10 programs can be located on the same machine with the PostgreSQL \
11 server, or may be on a remote machine which accesses a PostgreSQL \
12 server over a network connection. This package contains the docs \
13 in HTML for the whole package, as well as command-line utilities for \
14 managing PostgreSQL databases on a PostgreSQL server. \
15 \
16 If you want to manipulate a PostgreSQL database on a local or remote \
17 PostgreSQL server, you need this package. You also need to install \
18 this package if you're installing the postgresql-server package. \
19"
20HOMEPAGE = "http://www.postgresql.com"
21LICENSE = "BSD"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080022DEPENDS = "libnsl2 zlib readline tzcode-native"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050023
24ARM_INSTRUCTION_SET = "arm"
25
26SRC_URI = "http://ftp.postgresql.org/pub/source/v${PV}/${BP}.tar.bz2 \
27 file://postgresql.init \
Andrew Geissler1548c072019-02-22 16:03:50 -060028 file://postgresql-profile \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050029 file://postgresql.pam \
30 file://postgresql-setup \
31 file://postgresql.service \
32 file://0001-Use-pkg-config-for-libxml2-detection.patch \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050033"
34
35LEAD_SONAME = "libpq.so"
36
37# LDFLAGS for shared libraries
38export LDFLAGS_SL = "${LDFLAGS}"
39
Brad Bishop19323692019-04-05 15:28:33 -040040inherit autotools pkgconfig perlnative pythonnative useradd update-rc.d systemd gettext cpan-base
Patrick Williamsb48b7b42016-08-17 15:04:38 -050041
Brad Bishop6e60e8b2018-02-01 10:27:11 -050042CFLAGS += "-I${STAGING_INCDIR}/${PYTHON_DIR} -I${STAGING_INCDIR}/tcl8.6"
Patrick Williamsddad1a12017-02-23 20:36:32 -060043
Patrick Williamsb48b7b42016-08-17 15:04:38 -050044SYSTEMD_SERVICE_${PN} = "postgresql.service"
45SYSTEMD_AUTO_ENABLE_${PN} = "disable"
46
47DEPENDS_append = " ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd-systemctl-native', '', d)}"
48pkg_postinst_${PN} () {
49 if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd sysvinit', 'true', 'false', d)}; then
50 if [ -n "$D" ]; then
51 OPTS="--root=$D"
52 fi
53 systemctl $OPTS mask postgresql-server.service
54 fi
55}
56
Brad Bishop6e60e8b2018-02-01 10:27:11 -050057enable_pam = "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050058PACKAGECONFIG ??= "${enable_pam} openssl python uuid libxml tcl nls libxml perl"
59PACKAGECONFIG[pam] = "--with-pam,--without-pam,libpam,"
60PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl,"
61PACKAGECONFIG[python] = "--with-python,--without-python,python,python"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080062PACKAGECONFIG[uuid] = "--with-uuid=e2fs,--without-uuid,util-linux,"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050063PACKAGECONFIG[tcl] = "--with-tcl --with-tclconfig=${STAGING_BINDIR_CROSS},--without-tcl,tcl tcl-native,"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050064PACKAGECONFIG[nls] = "--enable-nls,--disable-nls,,"
65PACKAGECONFIG[libxml] = "--with-libxml,--without-libxml,libxml2,libxml2"
66PACKAGECONFIG[perl] = "--with-perl,--without-perl,perl,perl"
67
68EXTRA_OECONF += "--enable-thread-safety --disable-rpath \
69 --datadir=${datadir}/${BPN} \
70 --sysconfdir=${sysconfdir}/${BPN} \
71"
72EXTRA_OECONF_sh4 += "--disable-spinlocks"
73EXTRA_OECONF_aarch64 += "--disable-spinlocks"
74
Brad Bishopc342db32019-05-15 21:57:59 -040075DEBUG_OPTIMIZATION_remove_mips = " -Og"
76DEBUG_OPTIMIZATION_append_mips = " -O"
77BUILD_OPTIMIZATION_remove_mips = " -Og"
78BUILD_OPTIMIZATION_append_mips = " -O"
79
80DEBUG_OPTIMIZATION_remove_mipsel = " -Og"
81DEBUG_OPTIMIZATION_append_mipsel = " -O"
82BUILD_OPTIMIZATION_remove_mipsel = " -Og"
83BUILD_OPTIMIZATION_append_mipsel = " -O"
84
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080085PACKAGES_DYNAMIC += "^${PN}-plperl \
86 ^${PN}-pltcl \
87 ^${PN}-plpython \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050088"
89
90python populate_packages_prepend() {
91
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080092 def fill_more(name):
Patrick Williamsb48b7b42016-08-17 15:04:38 -050093 if name is None or name.strip() == "":
94 return
95
96 fpack=d.getVar('PACKAGES', False) or ""
97 fpack="${PN}-" + name + " " + fpack
Patrick Williamsb48b7b42016-08-17 15:04:38 -050098 d.setVar('PACKAGES', fpack)
99
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500100 conf=(d.getVar('PACKAGECONFIG') or "").split()
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500101 pack=d.getVar('PACKAGES', False) or ""
102 bb.debug(1, "PACKAGECONFIG=%s" % conf)
103 bb.debug(1, "PACKAGES1=%s" % pack )
104
105 if "perl" in conf :
106 fill_more("plperl")
107
108 if "tcl" in conf:
109 fill_more("pltcl")
110
111 if "python" in conf:
112 fill_more("plpython")
113
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500114 pack=d.getVar('PACKAGES') or ""
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500115 bb.debug(1, "PACKAGES2=%s" % pack)
116
117}
118
Brad Bishop19323692019-04-05 15:28:33 -0400119# This will make native perl use target settings (for include dirs etc.)
120export PERLCONFIGTARGET = "${@is_target(d)}"
121export PERL_ARCHLIB = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl5/${@get_perl_version(d)}/${@get_perl_arch(d)}"
122
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500123do_configure() {
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500124 # do_configure
125 autotools_do_configure
126
127 # do_configure_append
128 # workaround perl package related bugs
129 sed -i -e "s:-L/usr/local/lib:-L=/usr/local/lib:g" \
130 ${B}/src/Makefile.global
131 LIBPNA="\${STAGING_LIBDIR_NATIVE}/perl-native"
132 LIBNA="\${STAGING_LIBDIR_NATIVE}"
133 BLIBNA="\${STAGING_BASE_LIBDIR_NATIVE}"
134 sed -i -e "/^perl_archlibexp/s:${LIBPNA}:${STAGING_LIBDIR}:g" \
135 ${B}/src/Makefile.global
Brad Bishop19323692019-04-05 15:28:33 -0400136 sed -i -e "/^perl_privlibexp/s:${libdir}:${STAGING_LIBDIR}:g" \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500137 ${B}/src/Makefile.global
138 # remove the rpath, replace with correct lib path
139 sed -i \
140 -e "/^perl_embed_ldflags/s:-Wl,-rpath,${LIBNA}::g" \
141 -e "/^perl_embed_ldflags/s:-Wl,-rpath,${BLIBNA}::g" \
142 -e "/^perl_embed_ldflags/s:-Wl,-rpath-link,${LIBNA}::g" \
143 -e "/^perl_embed_ldflags/s:-Wl,-rpath-link,${BLIBNA}::g" \
144 -e "/^perl_embed_ldflags/s:${LIBPNA}:${STAGING_LIBDIR}:g" \
145 -e "/^perl_embed_ldflags/s:${LIBNA}:${STAGING_LIBDIR}:g" \
146 -e "/^perl_embed_ldflags/s:${BLIBNA}:${STAGING_BASELIBDIR}:g" \
147 -e "/^TCLSH/s:=.*:= ${bindir}/tclsh:g" \
148 ${B}/src/Makefile.global
149
150 if ${@bb.utils.contains('PACKAGECONFIG', 'perl', 'true', 'false', d)}; then
151 # workaround perl package's libperl.so problem
152 # we are using perlnative so this perl should have same version
153 perl_version=`perl -v 2>/dev/null | \
154 sed -n 's/This is perl.*v[a-z ]*\([0-9]\.[0-9][0-9.]*\).*$/\1/p'`
155 if [ ! -h "${STAGING_LIBDIR}/perl/$perl_version/CORE/libperl.so" -a \
156 ! -h "${STAGING_LIBDIR}/libperl.so" ]; then
157 ln -sf ../../../libperl.so.5 \
158 ${STAGING_LIBDIR}/perl/$perl_version/CORE/libperl.so
159 fi
160 fi
161}
162
163do_compile_append() {
164 oe_runmake -C contrib all
165}
166
167# server needs to configure user and group
168usernum = "28"
169groupnum = "28"
170USERADD_PACKAGES = "${PN}"
171USERADD_PARAM_${PN} = "-M -g postgres -o -r -d ${localstatedir}/lib/${BPN} \
Andrew Geissler1548c072019-02-22 16:03:50 -0600172 -s /bin/sh -c 'PostgreSQL Server' -u ${usernum} postgres"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500173GROUPADD_PARAM_${PN} = "-g ${groupnum} -o -r postgres"
174
175INITSCRIPT_PACKAGES = "${PN}"
176INITSCRIPT_NAME = "${BPN}-server"
177INITSCRIPT_PARAMS = "start 64 . stop 36 0 1 2 3 4 5 6 ."
178
179do_install_append() {
180 # install contrib
181 oe_runmake DESTDIR=${D} -C contrib install
182 # install tutorial
183 install -d -m 0755 ${D}${libdir}/${BPN}/tutorial
184 install ${B}/src/tutorial/* ${D}${libdir}/${BPN}/tutorial
185
186 # install COPYRIGHT README HISTORY
187 install -d -m 0755 ${D}${docdir}/${BPN}
Patrick Williamsddad1a12017-02-23 20:36:32 -0600188 for i in ${B}/COPYRIGHT ${B}/README ${B}/HISTORY ${B}/doc/KNOWN_BUGS ${B}/doc/MISSING_FEATURES ${B}/doc/README* ${B}/doc/bug.template; do
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500189 [ -f $i ] && install $i ${D}${docdir}/${BPN}
190 done
191
192 # install dirs and server init
193 install -d ${D}${sysconfdir}/init.d
194 install -m 0755 ${WORKDIR}/${BPN}.init ${D}${sysconfdir}/init.d/${BPN}-server
195 sed -i -e "s/^PGVERSION=.*$/PGVERSION=${PV}/g" ${D}${sysconfdir}/init.d/${BPN}-server
196 install -m 0755 ${WORKDIR}/${BPN}-setup ${D}${bindir}/${BPN}-setup
197 install -d -m 700 ${D}${localstatedir}/lib/${BPN}/data
198 install -d -m 700 ${D}${localstatedir}/lib/${BPN}/backups
Andrew Geissler1548c072019-02-22 16:03:50 -0600199 install -m 644 ${WORKDIR}/${BPN}-profile ${D}${localstatedir}/lib/${BPN}/.profile
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500200 chown -R postgres:postgres ${D}${localstatedir}/lib/${BPN}
201 # multiple server config directory
202 install -d -m 700 ${D}${sysconfdir}/default/${BPN}
203
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500204 if [ "${@d.getVar('enable_pam')}" = "pam" ]; then
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500205 install -d ${D}${sysconfdir}/pam.d
206 install -m 644 ${WORKDIR}/postgresql.pam ${D}${sysconfdir}/pam.d/postgresql
207 fi
208
209 # Install systemd unit files
210 install -d ${D}${systemd_unitdir}/system
211 install -m 0644 ${WORKDIR}/postgresql.service ${D}${systemd_unitdir}/system
212 sed -i -e 's,@BINDIR@,${bindir},g' \
213 ${D}${systemd_unitdir}/system/postgresql.service
214}
215
216SSTATE_SCAN_FILES += "Makefile.global"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800217SSTATE_SCAN_FILES_remove = "*_config"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500218
219PACKAGES =+ "${PN}-client ${PN}-server-dev ${PN}-timezone \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800220 libecpg-compat libecpg-compat-dev \
221 libecpg libecpg-dev libecpg-staticdev libecpg-doc \
222 libpq libpq-dev libpq-staticdev \
223 libpgtypes libpgtypes-staticdev libpgtypes-dev \
224 ${PN}-contrib \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500225"
226
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800227RPROVIDES_${PN}-dbg += "libecpg-compat-dbg \
228 libecpg-dbg \
229 libpq-dbg \
230 libpgtypes-dbg \
231 ${PN}-contrib-dbg \
232 ${PN}-pltcl-dbg \
233 ${PN}-plpython-dbg \
234 ${PN}-plperl-dbg \
235 "
236
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500237FILES_${PN} += "${sysconfdir}/init.d/${BPN}-server \
238 ${localstatedir}/lib/${BPN}/data ${localstatedir}/lib/${BPN}/backups \
Andrew Geissler1548c072019-02-22 16:03:50 -0600239 ${localstatedir}/lib/${BPN}/.profile ${sysconfdir}/default/${BPN} \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500240 ${libdir}/${BPN}/dict_snowball.so ${libdir}/${BPN}/plpgsql.so \
241 ${libdir}/${BPN}/euc2004_sjis2004.so \
242 ${libdir}/${BPN}/libpqwalreceiver.so \
243 ${libdir}/${BPN}/*_and_*.so \
244 ${@'${sysconfdir}/pam.d/postgresql' \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500245 if 'pam' == d.getVar('enable_pam') \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500246 else ''} \
247"
248
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500249FILES_${PN}-client = "${bindir}/clusterdb \
250 ${bindir}/createdb \
251 ${bindir}/createlang \
252 ${bindir}/createuser \
253 ${bindir}/dropdb \
254 ${bindir}/droplang \
255 ${bindir}/dropuser \
256 ${bindir}/pg_dump \
257 ${bindir}/pg_dumpall \
258 ${bindir}/pg_restore \
259 ${bindir}/psql \
260 ${bindir}/reindexdb \
261 ${bindir}/vacuumdb \
262 ${bindir}/vacuumlo \
263 ${datadir}/${BPN}/psqlrc.sample \
264"
265FILES_${PN}-client-doc = "${mandir}/man1/clusterdb.* \
266 ${mandir}/man1/createdb.* ${mandir}/man1/createlang.* \
267 ${mandir}/man1/createuser.* ${mandir}/man1/dropdb.* \
268 ${mandir}/man1/droplang.* ${mandir}/man1/dropuser.* \
269 ${mandir}/man1/pg_dump.* ${mandir}/man1/pg_dumpall.* \
270 ${mandir}/man1/pg_restore.* ${mandir}/man1/psql.* \
271 ${mandir}/man1/reindexdb.* ${mandir}/man1/vacuumdb.* \
272 ${mandir}/man7/* \
273"
274FILES_${PN}-doc += "${docdir}/${BPN}/html ${libdir}/${BPN}/tutorial/ \
275 ${mandir}/man1/initdb.* ${mandir}/man1/pg_controldata.* \
276 ${mandir}/man1/pg_ctl.* ${mandir}/man1/pg_resetxlog.* \
277 ${mandir}/man1/postgres.* ${mandir}/man1/postmaster.* \
278"
279FILES_${PN}-timezone = "${datadir}/${BPN}/timezone \
280 ${datadir}/${BPN}/timezonesets \
281"
282RDEPENDS_${PN} += "${PN}-timezone"
Brad Bishop15ae2502019-06-18 21:44:24 -0400283FILES_${PN}-server-dev = "${includedir}/${BPN}/server \
284 ${libdir}/${BPN}/pgxs \
285"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500286
287FILES_libecpg = "${libdir}/libecpg*${SOLIBS}"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500288FILES_libecpg-dev = "${libdir}/libecpg*${SOLIBSDEV} \
289 ${libdir}/libpgtypes*${SOLIBSDEV} \
290 ${includedir}/ecpg*.h ${includedir}/${BPN}/ecpg*.h \
291 ${includedir}/pgtypes*.h ${includedir}/${BPN}/informix \
292 ${includedir}/sql3types.h ${includedir}/sqlca.h \
293"
294FILES_libecpg-doc = "${mandir}/man1/ecpg.*"
295FILES_libecpg-staticdev = "${libdir}/libecpg*.a"
296SECTION_libecpg-staticdev = "devel"
297RDEPENDS_libecpg-staticdev = "libecpg-dev (= ${EXTENDPKGV})"
298
299FILES_libpq = "${libdir}/libpq*${SOLIBS}"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500300FILES_libpq-dev = "${libdir}/libpq*${SOLIBSDEV} \
301 ${includedir} \
302"
303FILES_libpq-staticdev = "${libdir}/libpq*.a ${libdir}/libpgport.a"
304SECTION_libpq-staticdev = "devel"
305RDEPENDS_libpq-staticdev = "libpq-dev (= ${EXTENDPKGV})"
306
307FILES_libecpg-compat = "${libdir}/libecpg_compat*${SOLIBS}"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500308FILES_libecpg-compat-dev = "${libdir}/libecpg_compat*${SOLIBS}"
309FILES_libpgtypes = "${libdir}/libpgtypes*${SOLIBS}"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500310FILES_libpgtypes-staticdev = "${libdir}/libpgtypes*.a"
311FILES_libpgtypes-dev = "${libdir}/libpgtypes*${SOLIBS} ${includedir}/pgtypes*.h"
312
313FILES_${PN}-contrib = " ${bindir}/oid2name ${bindir}/pg_standby \
314 ${bindir}/pgbench ${bindir}/vacuumlo \
315 ${S}/contrib/spi/*.example \
316 ${libdir}/${BPN}/_int.so ${libdir}/${BPN}/adminpack.so \
317 ${libdir}/${BPN}/autoinc.so ${libdir}/${BPN}/auto_explain.so \
318 ${libdir}/${BPN}/auth_delay.so ${libdir}/${BPN}/btree_gin.so \
319 ${libdir}/${BPN}/btree_gist.so ${libdir}/${BPN}/.so \
320 ${libdir}/${BPN}/chkpass.so ${libdir}/${BPN}/citext.so \
321 ${libdir}/${BPN}/cube.so ${libdir}/${BPN}/dblink.so \
322 ${libdir}/${BPN}/dict_int.so ${libdir}/${BPN}/dict_xsyn.so \
323 ${libdir}/${BPN}/dummy_seclabel.so ${libdir}/${BPN}/earthdistance.so \
324 ${libdir}/${BPN}/file_fdw.so ${libdir}/${BPN}/fuzzystrmatch.so \
325 ${libdir}/${BPN}/hstore.so ${libdir}/${BPN}/insert_username.so \
326 ${libdir}/${BPN}/isn.so ${libdir}/${BPN}/lo.so \
327 ${libdir}/${BPN}/ltree.so ${libdir}/${BPN}/moddatetime.so \
328 ${libdir}/${BPN}/pageinspect.so ${libdir}/${BPN}/pg_buffercache.so \
329 ${libdir}/${BPN}/pg_freespacemap.so ${libdir}/${BPN}/pg_trgm.so \
330 ${libdir}/${BPN}/pgcrypto.so ${libdir}/${BPN}/pgrowlocks.so \
331 ${libdir}/${BPN}/pgstattuple.so ${libdir}/${BPN}/pg_stat_statements.so \
332 ${libdir}/${BPN}/refint.so ${libdir}/${BPN}/seg.so \
333 ${libdir}/${BPN}/sslinfo.so \
334 ${libdir}/${BPN}/tablefunc.so \
335 ${libdir}/${BPN}/test_parser.so ${libdir}/${BPN}/timetravel.so \
336 ${libdir}/${BPN}/tsearch2.so ${libdir}/${BPN}/uuid-ossp.so \
337 ${libdir}/${BPN}/pgxml.so ${libdir}/${BPN}/passwordcheck.so \
338 ${libdir}/${BPN}/pg_upgrade_support.so ${libdir}/${BPN}/.so \
339 ${libdir}/${BPN}/unaccent.so \
340"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500341DESCRIPTION_${PN}-contrib = "The postgresql-contrib package contains \
342 contributed packages that are included in the PostgreSQL distribution."
343
344FILES_${PN}-pltcl = "${libdir}/${BPN}/pltcl.so ${bindir}/pltcl_delmod \
345 ${binddir}/pltcl_listmod ${bindir}/pltcl_loadmod \
346 ${datadir}/${BPN}/unknown.pltcl"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500347SUMMARY_${PN}-pltcl = "The Tcl procedural language for PostgreSQL"
348DESCRIPTION_${PN}-pltcl = "PostgreSQL is an advanced Object-Relational \
349 database management system. The postgresql-pltcl package contains the PL/Tcl \
350 procedural language for the backend."
351
352FILES_${PN}-plperl = "${libdir}/${BPN}/plperl.so"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500353SUMMARY_${PN}-plperl = "The Perl procedural language for PostgreSQL"
354DESCRIPTION_${PN}-plperl = "PostgreSQL is an advanced Object-Relational \
355 database management system. The postgresql-plperl package contains the \
356 PL/Perl procedural language for the backend."
357
358# In version 8, it will be plpython.so
359# In version 9, it might be plpython{2,3}.so depending on python2 or 3
360FILES_${PN}-plpython = "${libdir}/${BPN}/plpython*.so"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500361SUMMARY_${PN}-plpython = "The Python procedural language for PostgreSQL"
362DESCRIPTION_${PN}-plpython = "PostgreSQL is an advanced Object-Relational \
363 database management system. The postgresql-plpython package contains \
364 the PL/Python procedural language for the backend."