From 6e521929c1d8df1e6fd3e8bd132c9fdad34bc283 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 1 Apr 2022 10:20:01 +0200 Subject: [PATCH 1/3] Botan: Add version 2.19.1 new depency of keepassxc https://botan.randombit.net/ --- botan.be0 | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 botan.be0 diff --git a/botan.be0 b/botan.be0 new file mode 100755 index 000000000..9b92d4b39 --- /dev/null +++ b/botan.be0 @@ -0,0 +1,40 @@ +#!/usr/bin/env beesh + +# BEE_VERSION botan-2.19.1-0 + +#SRCURL[0]="https://botan.randombit.net/releases/Botan-${PKGVERSION}.tar.xz" +SRCURL[0]="https://beehive.molgen.mpg.de/30a71dd700d69561483fb1599a13ea3b/Botan-2.19.1.tar.xz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + ${S}/configure.py --prefix=${PREFIX} \ + --with-rst2man \ + --without-sphinx \ + --no-install-python-module +} + +mee_build() { + mkdir temp_bin + ln -sv /usr/bin/rst2man.py temp_bin/rst2man + PATH=${PATH}:${B}/temp_bin/rst2man make ${BEE_MAKEFLAGS} +} + +mee_install() { + make install DESTDIR=${D} + rm -rfv ${D}/usr/share/doc +} +## by default this may be 'make install DESTDIR="${D}"' From b06bd505780c2c7462e6141faa0c4db5e23cd76a Mon Sep 17 00:00:00 2001 From: david Date: Fri, 1 Apr 2022 12:39:14 +0200 Subject: [PATCH 2/3] libminizip: Add version 1.2.12 dependency of keepassxc is part of zlib --- libminizip.be0 | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 libminizip.be0 diff --git a/libminizip.be0 b/libminizip.be0 new file mode 100755 index 000000000..9a0107bd7 --- /dev/null +++ b/libminizip.be0 @@ -0,0 +1,28 @@ +#!/bin/env beesh + +# BEE_VERSION libminizip-1.2.12-0 + +# SRCURL="https://www.zlib.net/zlib-${PKGVERSION}.tar.xz" + +SRCURL[0]="https://beehive.molgen.mpg.de/28687d676c04e7103bb6ff2b9694c471/zlib-1.2.12.tar.xz" + +mee_patch() { + cd ${S}/contrib/minizip + libtoolize + aclocal + autoconf + automake --add-missing +} + +mee_configure() { + start_cmd ${S}/contrib/minizip/configure --prefix=${PREFIX} +} + +mee_build() { + bee_build + make check +} + +mee_install() { + bee_install +} From 7ba4911bcc155cc62ecd2137c5159681dd963ed5 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 31 Mar 2022 21:17:05 +0200 Subject: [PATCH 3/3] keepassxc: Update to version 2.7.0 new dependency botan2 and libminizip --- keepassxc.be0 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keepassxc.be0 b/keepassxc.be0 index 9c1f5372b..0a9d999b6 100755 --- a/keepassxc.be0 +++ b/keepassxc.be0 @@ -1,9 +1,9 @@ #!/usr/bin/env beesh -# BEE_VERSION keepassxc-2.6.6-0 +# BEE_VERSION keepassxc-2.7.0-0 #SRCURL[0]="https://github.com/keepassxreboot/keepassxc/archive/${PKGVERSION}.tar.gz keepassxc-${PKGVERSION}.tar.gz" -SRCURL[0]="https://beehive.molgen.mpg.de/5d6b9ee68221909e3f6fe0526f1146d1/keepassxc-2.6.6.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/289267553d552fe047d2fdbc027574d8/keepassxc-2.7.0.tar.gz" # PATCHURL+=()