From 141ce887ba443d578c02bd47d4b18383f0a6849f Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 21 Jun 2022 10:02:40 +0200 Subject: [PATCH 1/3] postgresql: Update version from 13.1 to 14.4 https://www.postgresql.org/docs/release/ --- postgresql.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgresql.be0 b/postgresql.be0 index ca452feeb..5756dfa02 100755 --- a/postgresql.be0 +++ b/postgresql.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION postgresql-13.1-0 +# BEE_VERSION postgresql-14.4-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) From c38e53bb5f043f2a62c83715a7f30d8aa86526c8 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 21 Jun 2022 10:04:41 +0200 Subject: [PATCH 2/3] postgresql: Download source archive from beehive.molgen.mpg.de --- postgresql.be0 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/postgresql.be0 b/postgresql.be0 index 5756dfa02..87a29f61d 100755 --- a/postgresql.be0 +++ b/postgresql.be0 @@ -9,7 +9,8 @@ ## The source URL(s) define the location of the sources that will be ## downloaded. Version variables may be used to simplify reuse of this bee-file. -SRCURL[0]="https://ftp.postgresql.org/pub/source/v${PKGVERSION}/postgresql-${PKGVERSION}.tar.gz" +# SRCURL[0]="https://ftp.postgresql.org/pub/source/v${PKGVERSION}/postgresql-${PKGVERSION}.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/69b19b46defe6eded4b3bbc1725025f9/postgresql-14.4.tar.gz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. From 0f80a32306a001511b79d3013b8152dc13a561d6 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 21 Jun 2022 10:05:40 +0200 Subject: [PATCH 3/3] postgresql: Build and install extensions (in `contrib/`) --- postgresql.be0 | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/postgresql.be0 b/postgresql.be0 index 87a29f61d..52bda18d6 100755 --- a/postgresql.be0 +++ b/postgresql.be0 @@ -52,13 +52,15 @@ SRCURL[0]="https://beehive.molgen.mpg.de/69b19b46defe6eded4b3bbc1725025f9/postgr # bee_configure #} -#mee_build() { -# bee_build -#} - -#mee_install() { -# bee_install -#} +mee_build() { + bee_build + bee_build -C contrib +} + +mee_install() { + bee_install + bee_install -C contrib +} ## by default this may be 'make install DESTDIR="${D}"' ###############################################################################