From a573d6cfd35df172ce705c5d56e0b00b925de126 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Wed, 27 Apr 2022 12:31:32 +0200 Subject: [PATCH] subversion: update 1.14.0 to 1.14.2 - update - remove shared libs - (unfixed) --serf introduced a `.so` dependency nightmare `libsasl2.so.3` vs `libsasl2.so.2` ``` libsasl2.so.3 => /usr/lib/libsasl2.so.3 libserf-1.so.1 => /usr/lib/libserf-1.so.1 libldap-2.4.so.2 => /usr/lib/libldap-2.4.so.2 libsasl2.so.2 => /usr/lib/libsasl2.so.2 ``` --- subversion.be0 | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/subversion.be0 b/subversion.be0 index 36e3f9021..d911614a2 100755 --- a/subversion.be0 +++ b/subversion.be0 @@ -1,10 +1,11 @@ #!/usr/bin/env beesh -# BEE_VERSION subversion-1.14.0-0 +# BEE_VERSION subversion-1.14.2-0 # more info: https://subversion.apache.org -SRCURL[0]="https://downloads.apache.org/subversion/subversion-${PKGVERSION}.tar.bz2" +#SRCURL[0]="https://downloads.apache.org/subversion/subversion-${PKGVERSION}.tar.bz2" +SRCURL[0]="https://beehive.molgen.mpg.de/9927b167d1c67d663ca63125907f6f69/subversion-1.14.2.tar.bz2" # PATCHURL+=() @@ -25,7 +26,8 @@ mee_configure() { --disable-nls \ --with-lz4=internal \ --with-utf8proc=internal \ - --with-serf + --with-serf \ + --disable-shared } #mee_build() { @@ -35,7 +37,3 @@ mee_configure() { #mee_install() { # bee_install #} - -#mee_install_post() { -# exit -#}