diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2019-10-17 11:28:13 +0200 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2019-10-17 12:36:56 +0200 |
commit | f75eaa17731ff156a98514eedf389f09fe445fd1 (patch) | |
tree | 7cc0967db27480d5f79be0e9b0f171c167f70ece /net-libs/librsync/librsync-2.2.1.ebuild | |
parent | dev-java/tomcat-servlet-api: x86 stable wrt bug #697830 (diff) | |
download | gentoo-f75eaa17731ff156a98514eedf389f09fe445fd1.tar.gz gentoo-f75eaa17731ff156a98514eedf389f09fe445fd1.tar.bz2 gentoo-f75eaa17731ff156a98514eedf389f09fe445fd1.zip |
net-libs/librsync: 2.2.1 bump
Fix over previous release that makes delta operations hang for files
larger than 4GB
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'net-libs/librsync/librsync-2.2.1.ebuild')
-rw-r--r-- | net-libs/librsync/librsync-2.2.1.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net-libs/librsync/librsync-2.2.1.ebuild b/net-libs/librsync/librsync-2.2.1.ebuild new file mode 100644 index 000000000000..93d015f1bb94 --- /dev/null +++ b/net-libs/librsync/librsync-2.2.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils + +DESCRIPTION="Remote delta-compression library" +HOMEPAGE="https://librsync.github.io/" +SRC_URI="https://github.com/librsync/librsync/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0/2.2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" + +RDEPEND=" + dev-libs/popt +" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DUSE_LIBB2=OFF + ) + + cmake-utils_src_configure +} |