From b6fbcec20f944fbb48682787f0bd501aaa416276 Mon Sep 17 00:00:00 2001 From: yopito Date: Wed, 8 Jun 2016 10:03:25 +0200 Subject: [PATCH 1/3] ccnet: update to 5.1.2 --- srcpkgs/ccnet/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/ccnet/template b/srcpkgs/ccnet/template index b8659c35058..85c583eb872 100644 --- a/srcpkgs/ccnet/template +++ b/srcpkgs/ccnet/template @@ -1,6 +1,6 @@ # Template file for 'ccnet' pkgname=ccnet -version=5.1.1 +version=5.1.2 revision=1 build_style=gnu-configure configure_args="--disable-static --disable-compile-demo" @@ -13,7 +13,7 @@ maintainer="yopito " license="GPL-3" homepage="https://github.com/haiwen/${pkgname}" distfiles="https://github.com/haiwen/${pkgname}/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz" -checksum=1e86961e1daaac1cee9eab92a2671696e83b45b241f611cfeff1e2982f1cab0d +checksum=1e27da99962eb23ce02c1c6dfb9143faf97d32aba807e562eff1ec18f8c6b162 pre_configure() { ./autogen.sh From 61a96eb500f111ccba9f18a044a016148232e496 Mon Sep 17 00:00:00 2001 From: yopito Date: Wed, 8 Jun 2016 10:03:51 +0200 Subject: [PATCH 2/3] seafile-libclient: update to 5.1.2 --- srcpkgs/seafile-libclient/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/seafile-libclient/template b/srcpkgs/seafile-libclient/template index 30a630b042a..d1312f96989 100644 --- a/srcpkgs/seafile-libclient/template +++ b/srcpkgs/seafile-libclient/template @@ -1,6 +1,6 @@ # Template file for 'seafile-libclient' pkgname=seafile-libclient -version=5.1.1 +version=5.1.2 revision=1 wrksrc="${pkgname/-libclient/}-${version}" build_style=gnu-configure @@ -14,7 +14,7 @@ maintainer="yopito " license="GPL-3" homepage="https://github.com/haiwen/${pkgname/-libclient/}" distfiles="https://github.com/haiwen/${pkgname/-libclient/}/archive/v${version}.tar.gz>${pkgname/-libclient/}-${version}.tar.gz" -checksum=6b7cf0b82c30925911d13081e66affe56c979b3d33a656c19c1d935f3a6a8cf9 +checksum=0a0a3d37fbdba4f64a6437875c0ebd407638e529b3bc72c36bccc74edd43642a pre_configure() { ./autogen.sh From 094efd81aa74e317825fc52d7310147efb1c651e Mon Sep 17 00:00:00 2001 From: yopito Date: Wed, 8 Jun 2016 10:04:14 +0200 Subject: [PATCH 3/3] seafile-client-qt: update to 5.1.2 --- srcpkgs/seafile-client-qt/template | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/srcpkgs/seafile-client-qt/template b/srcpkgs/seafile-client-qt/template index 80a5c038783..4fe439ab8c4 100644 --- a/srcpkgs/seafile-client-qt/template +++ b/srcpkgs/seafile-client-qt/template @@ -1,11 +1,11 @@ # Template file for 'seafile-client-qt' pkgname=seafile-client-qt -version=5.1.1 +version=5.1.2 revision=1 _sourcename="seafile-client" wrksrc="${_sourcename}-${version}" build_style=cmake -configure_args="-D CMAKE_BUILD_TYPE=Release -D USE_QT5=ON ." +configure_args="-DUSE_QT5=ON" # nocross since qt unavailable for arm* architecture nocross=yes @@ -19,7 +19,24 @@ maintainer="yopito " license="ASL-2" homepage="https://github.com/haiwen/${_sourcename}" distfiles="https://github.com/haiwen/${_sourcename}/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz" -checksum=0148cbdb97dcd58e6ebec738c8f6bc476192f0b9156f0783199f1213c4d0322f +checksum=ee62eecb410530174b1d184a5b46dce83a164f0b1fe162411dc594125151e02f + +case "$XBPS_TARGET_MACHINE" in + *-musl) # Add musl-fts implementation + makedepends+=" musl-fts-devel" + ;; +esac + +pre_configure() { + case "$XBPS_TARGET_MACHINE" in + *-musl) + # append '-ltfs' argument on link via cmake (macro TARGET_LINK_LIBRARIES) + # "LDFLAGS=-lfts" does not work, its prepends it (useless) + # XXX prefer patch on CMakeLists.txt ? + sed -i -e 's,\(\${EXTRA_LIBS}\)$,\1 -lfts,' ${wrksrc}/CMakeLists.txt + ;; + esac +} post_install() { vdoc "README.md"