wok rev 25333
updated subversion, subversion-dev and libsvn (1.13.0 -> 1.14.2)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jul 23 15:37:19 2022 +0100 (2022-07-23) |
parents | be6d790548d7 |
children | fe45ec24ff48 |
files | libsvn/receipt subversion-dev/receipt subversion-lang/receipt subversion/description.txt subversion/receipt |
line diff
1.1 --- a/libsvn/receipt Sat Jul 23 14:59:58 2022 +0100 1.2 +++ b/libsvn/receipt Sat Jul 23 15:37:19 2022 +0100 1.3 @@ -1,20 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libsvn" 1.7 -VERSION="1.13.0" 1.8 +VERSION="1.14.2" 1.9 CATEGORY="system-tools" 1.10 -SHORT_DESC="Subversion Source Code Management access" 1.11 +SHORT_DESC="Subversion Source Code Management access." 1.12 MAINTAINER="lehswe@gmail.com" 1.13 LICENSE="Apache" 1.14 +WEB_SITE="https://subversion.apache.org/" 1.15 + 1.16 +DEPENDS="apr expat libcomerr libcomerr3 libgnutls libkrb5 libsasl 1.17 + libsqlite libssl neon util-linux-uuid zlib" 1.18 WANTED="subversion" 1.19 -WEB_SITE="http://subversion.tigris.org" 1.20 - 1.21 -DEPENDS="apr libsasl libssl libkrb5 util-linux-uuid expat zlib neon libsqlite \ 1.22 -libgnutls libcomerr libcomerr3" 1.23 1.24 # Rules to gen a SliTaz package suitable for Tazpkg. 1.25 genpkg_rules() 1.26 { 1.27 - mkdir -p $fs/usr/lib 1.28 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.29 + cook_copy_files *.so* 1.30 }
2.1 --- a/subversion-dev/receipt Sat Jul 23 14:59:58 2022 +0100 2.2 +++ b/subversion-dev/receipt Sat Jul 23 15:37:19 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="subversion-dev" 2.7 -VERSION="1.13.0" 2.8 +VERSION="1.14.2" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Subversion Source Code Management access - development files." 2.11 MAINTAINER="lehswe@gmail.com" 2.12 @@ -14,8 +14,6 @@ 2.13 # Rules to gen a SliTaz package suitable for Tazpkg. 2.14 genpkg_rules() 2.15 { 2.16 - mkdir -p $fs/usr/lib 2.17 - 2.18 - cp -a $install/usr/include $fs/usr 2.19 - cp -a $install/usr/lib/*.*a $fs/usr/lib 2.20 + cook_copy_folders include 2.21 + cook_copy_files *.*a 2.22 }
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/subversion-lang/receipt Sat Jul 23 15:37:19 2022 +0100 3.3 @@ -0,0 +1,17 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="subversion-lang" 3.7 +VERSION="1.14.2" 3.8 +CATEGORY="localization" 3.9 +SHORT_DESC="Subversion Source Code Management access - localised messages." 3.10 +MAINTAINER="maintainer@slitaz.org" 3.11 +LICENSE="Apache" 3.12 +WEB_SITE="https://subversion.apache.org" 3.13 + 3.14 +WANTED="subversion" 3.15 + 3.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.17 +genpkg_rules() 3.18 +{ 3.19 + cook_copy_folders locale 3.20 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/subversion/description.txt Sat Jul 23 15:37:19 2022 +0100 4.3 @@ -0,0 +1,7 @@ 4.4 +Apache Subversion is a full-featured version control system 4.5 +originally designed to be a better CVS. 4.6 +Subversion has since expanded beyond its original goal of 4.7 +replacing CVS, but its basic model, design, and interface 4.8 +remain heavily influenced by that goal. 4.9 +Even today, Subversion should still feel very familiar to 4.10 +CVS users.
5.1 --- a/subversion/receipt Sat Jul 23 14:59:58 2022 +0100 5.2 +++ b/subversion/receipt Sat Jul 23 15:37:19 2022 +0100 5.3 @@ -1,7 +1,7 @@ 5.4 # SliTaz package receipt. 5.5 5.6 PACKAGE="subversion" 5.7 -VERSION="1.13.0" 5.8 +VERSION="1.14.2" 5.9 CATEGORY="development" 5.10 SHORT_DESC="Subversion Source Code Management access." 5.11 MAINTAINER="lehswe@gmail.com" 5.12 @@ -9,8 +9,9 @@ 5.13 WEB_SITE="https://subversion.apache.org" 5.14 5.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 5.16 -WGET_URL="https://archive.apache.org/dist/$PACKAGE/$TARBALL" 5.17 +WGET_URL="https://www.apache.org/dist/$PACKAGE/$TARBALL" 5.18 5.19 +SUGGESTED="subversion-lang" 5.20 DEPENDS="apr-util libsqlite libsvn lz4-lib" 5.21 BUILD_DEPENDS="apache-dev apr-dev apr-util-dev expat-dev krb5-dev 5.22 lz4-dev mysql-dev neon-dev python-dev sqlite-dev util-linux-uuid-dev" 5.23 @@ -30,13 +31,12 @@ 5.24 --with-utf8proc=internal \ 5.25 $CONFIGURE_ARGS && 5.26 sed -i 's/^INSTALL_APACHE_MODS =.*/INSTALL_APACHE_MODS = false/' Makefile && 5.27 - make -j1 && 5.28 - make -j1 DESTDIR=$DESTDIR install 5.29 + make && 5.30 + make install DESTDIR=$DESTDIR 5.31 } 5.32 5.33 # Rules to gen a SliTaz package suitable for Tazpkg. 5.34 genpkg_rules() 5.35 { 5.36 - mkdir -p $fs/usr/lib 5.37 - cp -a $install/usr/bin $fs/usr 5.38 + cook_copy_folders bin 5.39 }