diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2020-11-17 19:57:24 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2020-11-17 19:57:24 -0500 |
commit | 57e307367a34a6e4fce7f75de0025055cbf814ef (patch) | |
tree | ff68cbf4f11fc8047e5371edce854dd29fac1e3c /dev-perl | |
parent | net-vpn/tor: version bump to 0.4.4.6 (diff) | |
download | gentoo-57e307367a34a6e4fce7f75de0025055cbf814ef.tar.gz gentoo-57e307367a34a6e4fce7f75de0025055cbf814ef.tar.bz2 gentoo-57e307367a34a6e4fce7f75de0025055cbf814ef.zip |
dev-perl/Search-Xapian: version bump to 1.2.25.3
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'dev-perl')
-rw-r--r-- | dev-perl/Search-Xapian/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/Search-Xapian/Search-Xapian-1.2.25.3.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest index 77a3228dc3ca..b78953bd59b0 100644 --- a/dev-perl/Search-Xapian/Manifest +++ b/dev-perl/Search-Xapian/Manifest @@ -1,2 +1,3 @@ DIST Search-Xapian-1.2.25.0.tar.gz 72097 BLAKE2B 9e9f54718bf597c7592cc936e23ce4684ba4104f890ee7216e303af9a075eb895459a46d17bd2c32820eb436545a8a9e008b17f83fa586bf3e9160d80813872d SHA512 2bb0bea59ddfd8159df0b3051034ca28478cb74832cfe7a103b8a4dbeddbd41f6223be6ad56eb3dcb8c7a785d2f7d500844c41f35da3997a843b3ba624a4e795 DIST Search-Xapian-1.2.25.2.tar.gz 72424 BLAKE2B b959e1f111def3660f17669e49dfa9bff95bc421bdde35dac22d5cad4d350057cf7b077f030797158c3ae6c7c292775f44e88381e685b9fb5e8364bef3d03403 SHA512 92b92f28cf50d162905ef230a28956a4e57d3baca81d227751e905756239be0f843b58f38a8dfdb6c8b6ae827e37a60d7df7022cfab43164293223dd430d4d2d +DIST Search-Xapian-1.2.25.3.tar.gz 73023 BLAKE2B a3a6c04c25ac623db1c5c0e873ff698382e3e610e90a6731b1fa6b4d8585181620bafa7431c6e133780e610011cfe50654244749d5e3e302b8b1d2e576074de2 SHA512 6e82a63b7fd7f1692e292edb1defc4cc2067e911780fa9698db29be408b9aa898a6d4c0f4a6bb143805632a1daf51c4a97cb62fb37adfbb0b77818773169bb6a diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.3.ebuild b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.3.ebuild new file mode 100644 index 000000000000..a2cdfad546c9 --- /dev/null +++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=OLLY +inherit perl-module toolchain-funcs versionator + +VERSION=$(get_version_component_range 1-3) + +SRC_URI+=" http://oligarchy.co.uk/xapian/${VERSION}/${P}.tar.gz" +DESCRIPTION="Perl XS frontend to the Xapian C++ search library" + +LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="examples test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-libs/xapian:0/1.2.22 + !dev-libs/xapian-bindings[perl]" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( dev-perl/Devel-Leak ) +" + +DIST_TEST=do +# parallel fails sometimes... + +myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}" + +src_install() { + perl-module_src_install + + use examples && { + docinto examples + dodoc "${S}"/examples/* + } +} |