[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2024-06-18 Thread Jason A. Donenfeld
commit: aa0196a52ef387ccbc5bf0badd50ad1e86f06a78
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Tue Jun 18 14:48:52 2024 +
Commit: Jason A. Donenfeld  gentoo  org>
CommitDate: Tue Jun 18 14:50:16 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0196a5

dev-perl/Search-Xapian: use g++ as CC

This is an ugly hack to work around a bug.

Closes: https://bugs.gentoo.org/931999
Signed-off-by: Jason A. Donenfeld  gentoo.org>

 .../Search-Xapian/Search-Xapian-1.2.25.5-r4.ebuild | 38 ++
 1 file changed, 38 insertions(+)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r4.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r4.ebuild
new file mode 100644
index ..63643456e6fa
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=OLLY
+inherit perl-module toolchain-funcs
+
+DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND=">=dev-libs/xapian-1.4:0=[inmemory(+)]
+   !dev-libs/xapian-bindings[perl]"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( dev-perl/Devel-Leak )
+"
+
+DIST_TEST=do
+# parallel fails sometimes...
+
+src_configure() {
+   myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS} CC=$(tc-getCXX)"
+   perl-module_src_configure
+}
+
+src_install() {
+   perl-module_src_install
+
+   use examples && {
+   docinto examples
+   dodoc "${S}"/examples/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2024-02-25 Thread Sam James
commit: 3782b95b76aef6fcb3f3c2bb81ee55d4e30cd710
Author: Sam James  gentoo  org>
AuthorDate: Sun Feb 25 13:34:50 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Feb 25 13:34:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3782b95b

dev-perl/Search-Xapian: depend on xapian[inmemory(+)]

Newer Xapian always builds inmemory support.

Signed-off-by: Sam James  gentoo.org>

 ...rch-Xapian-1.2.25.5-r2.ebuild => Search-Xapian-1.2.25.5-r3.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r3.ebuild
similarity index 89%
rename from dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild
rename to dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r3.ebuild
index 9f7f612265b6..5790b00e3a89 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc 
~x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 
-RDEPEND=">=dev-libs/xapian-1.4:0=[inmemory]
+RDEPEND=">=dev-libs/xapian-1.4:0=[inmemory(+)]
!dev-libs/xapian-bindings[perl]"
 DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2023-12-02 Thread Sam James
commit: 0d20638f9b8d8b07a3f825ec33fbb775bb89168f
Author: Alfred Wingate  protonmail  com>
AuthorDate: Sat Dec  2 18:14:30 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec  2 21:33:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d20638f

dev-perl/Search-Xapian: inmemory use flag required in xapian

Cloess: https://github.com/gentoo/libressl/issues/545
Closes: https://bugs.gentoo.org/625658
Signed-off-by: Alfred Wingate  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34095
Signed-off-by: Sam James  gentoo.org>

 .../Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild | 38 ++
 1 file changed, 38 insertions(+)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild
new file mode 100644
index ..9f7f612265b6
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=OLLY
+inherit perl-module toolchain-funcs
+
+DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND=">=dev-libs/xapian-1.4:0=[inmemory]
+   !dev-libs/xapian-bindings[perl]"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( dev-perl/Devel-Leak )
+"
+
+DIST_TEST=do
+# parallel fails sometimes...
+
+src_configure() {
+   myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+   perl-module_src_configure
+}
+
+src_install() {
+   perl-module_src_install
+
+   use examples && {
+   docinto examples
+   dodoc "${S}"/examples/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2022-10-28 Thread Sam James
commit: 7846e5d9076c4d1cdb3f3e49e76883bab2cd5afe
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct 28 18:27:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 28 18:47:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7846e5d9

dev-perl/Search-Xapian: drop 1.2.25.4-r1, 1.2.25.5

Signed-off-by: Sam James  gentoo.org>

 dev-perl/Search-Xapian/Manifest|  1 -
 .../Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild | 41 --
 .../Search-Xapian/Search-Xapian-1.2.25.5.ebuild| 41 --
 3 files changed, 83 deletions(-)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 7c7138f42a91..975561a3623c 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,2 +1 @@
-DIST Search-Xapian-1.2.25.4.tar.gz 75336 BLAKE2B 
06e3fe3871f00c173f4c24303b33eb046867dda1274535c1d22b98027804df19b3dc6b80d6213c2090e05362c508d0e41b55cdc165ccedd8a45bfff19d4fe07b
 SHA512 
14d34641583fb3cce3e7cd4b16e5001be9c7808d07e4942b4842196f36906649053d1ff522a5a1b82200ecd714c55afaf7bd653bf7df9a462db91d05cd12cb01
 DIST Search-Xapian-1.2.25.5.tar.gz 74960 BLAKE2B 
e0691383c4fd8ddd286b8db653ddd9175cde9f37ccf470764272456dbea8ceb8893eb011ae57a18816b3974a56db2dc773d90b7a4778e24ac0a6c78eb175a19e
 SHA512 
3099ba3f8726029d7a5c916f6b05d2d7cea41534b0f364687c7d9e0212340dca2a313a1ac8e0f6531a7c1084c8833a0e6d45bcff8fec32e0a6e5922bc0bcb81f

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild
deleted file mode 100644
index f7d7e72802ad..
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DIST_AUTHOR=OLLY
-inherit perl-module toolchain-funcs
-
-MY_VERSION=$(ver_cut 1-3)
-
-SRC_URI+=" http://oligarchy.co.uk/xapian/${MY_VERSION}/${P}.tar.gz;
-DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
-
-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...
-
-src_configure() {
-   myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
-   perl-module_src_configure
-}
-
-src_install() {
-   perl-module_src_install
-
-   use examples && {
-   docinto examples
-   dodoc "${S}"/examples/*
-   }
-}

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild
deleted file mode 100644
index 0c320bfdd619..
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DIST_AUTHOR=OLLY
-inherit perl-module toolchain-funcs
-
-MY_VERSION=$(ver_cut 1-3)
-
-SRC_URI+=" http://oligarchy.co.uk/xapian/${MY_VERSION}/${P}.tar.gz;
-DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
-
-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...
-
-src_configure() {
-   myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
-   perl-module_src_configure
-}
-
-src_install() {
-   perl-module_src_install
-
-   use examples && {
-   docinto examples
-   dodoc "${S}"/examples/*
-   }
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2022-10-28 Thread Sam James
commit: c476c9d43b739c737f81d90a2a1203f0cbe8a9f5
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct 28 18:26:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 28 18:26:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c476c9d4

dev-perl/Search-Xapian: Stabilize 1.2.25.5-r1 arm, #830443

Signed-off-by: Sam James  gentoo.org>

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
index 38e72d2dda6b..d84495ed8d57 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module toolchain-funcs
 DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2022-10-28 Thread Sam James
commit: ed70c48aab283de773ee93223717a7cd19fed4f7
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct 28 18:26:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 28 18:26:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed70c48a

dev-perl/Search-Xapian: Stabilize 1.2.25.5-r1 ppc, #830443

Signed-off-by: Sam James  gentoo.org>

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
index d84495ed8d57..0b22bee8426a 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module toolchain-funcs
 DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ~ppc64 ~sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2022-10-28 Thread Sam James
commit: fd435e83f39bcc3c8faa2c2f754d9d2e6814346a
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct 28 18:26:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 28 18:26:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd435e83

dev-perl/Search-Xapian: Stabilize 1.2.25.5-r1 ppc64, #830443

Signed-off-by: Sam James  gentoo.org>

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
index 0b22bee8426a..cc0fe93535db 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module toolchain-funcs
 DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2022-10-28 Thread Sam James
commit: d431c6fa352262abc553b2c5dfd11684a9ce4e6c
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct 28 18:23:35 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 28 18:23:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d431c6fa

dev-perl/Search-Xapian: Stabilize 1.2.25.5-r1 amd64, #830443

Signed-off-by: Sam James  gentoo.org>

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
index 9e0f99acb617..1fd88fad63f0 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module toolchain-funcs
 DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2022-10-28 Thread Sam James
commit: 9897a550c940f5270fbf6d13698e5326eca836bb
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct 28 18:23:38 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 28 18:23:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9897a550

dev-perl/Search-Xapian: Stabilize 1.2.25.5-r1 x86, #830443

Signed-off-by: Sam James  gentoo.org>

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
index 1fd88fad63f0..38e72d2dda6b 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module toolchain-funcs
 DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2022-06-29 Thread Sam James
commit: bb8108a8fe23f6bb3ff7443f40fd7e4a2a11d0fc
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 10:43:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 11:09:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb8108a8

dev-perl/Search-Xapian: drop 1.2.25.0

Signed-off-by: Sam James  gentoo.org>

 dev-perl/Search-Xapian/Manifest|  1 -
 .../Search-Xapian/Search-Xapian-1.2.25.0.ebuild| 42 --
 2 files changed, 43 deletions(-)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 2c14369ce2ef..7c7138f42a91 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,3 +1,2 @@
-DIST Search-Xapian-1.2.25.0.tar.gz 72097 BLAKE2B 
9e9f54718bf597c7592cc936e23ce4684ba4104f890ee7216e303af9a075eb895459a46d17bd2c32820eb436545a8a9e008b17f83fa586bf3e9160d80813872d
 SHA512 
2bb0bea59ddfd8159df0b3051034ca28478cb74832cfe7a103b8a4dbeddbd41f6223be6ad56eb3dcb8c7a785d2f7d500844c41f35da3997a843b3ba624a4e795
 DIST Search-Xapian-1.2.25.4.tar.gz 75336 BLAKE2B 
06e3fe3871f00c173f4c24303b33eb046867dda1274535c1d22b98027804df19b3dc6b80d6213c2090e05362c508d0e41b55cdc165ccedd8a45bfff19d4fe07b
 SHA512 
14d34641583fb3cce3e7cd4b16e5001be9c7808d07e4942b4842196f36906649053d1ff522a5a1b82200ecd714c55afaf7bd653bf7df9a462db91d05cd12cb01
 DIST Search-Xapian-1.2.25.5.tar.gz 74960 BLAKE2B 
e0691383c4fd8ddd286b8db653ddd9175cde9f37ccf470764272456dbea8ceb8893eb011ae57a18816b3974a56db2dc773d90b7a4778e24ac0a6c78eb175a19e
 SHA512 
3099ba3f8726029d7a5c916f6b05d2d7cea41534b0f364687c7d9e0212340dca2a313a1ac8e0f6531a7c1084c8833a0e6d45bcff8fec32e0a6e5922bc0bcb81f

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
deleted file mode 100644
index 5cc9b91c2ae4..
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 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...
-
-src_configure() {
-   myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
-   perl-module_src_configure
-}
-
-src_install() {
-   perl-module_src_install
-
-   use examples && {
-   docinto examples
-   dodoc "${S}"/examples/*
-   }
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2022-03-10 Thread Sam James
commit: b1fbfa633e03ebcfb90a1a84781e5b6eeab64338
Author: Sam James  gentoo  org>
AuthorDate: Thu Mar 10 22:33:12 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 10 22:33:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1fbfa63

dev-perl/Search-Xapian: don't call tc-getCXX in global scope

Closes: https://bugs.gentoo.org/593366
Signed-off-by: Sam James  gentoo.org>

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild| 7 +--
 dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild | 7 +--
 dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild | 5 -
 dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild| 5 -
 4 files changed, 18 insertions(+), 6 deletions(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index b8cfbc7060ef..5cc9b91c2ae4 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -27,7 +27,10 @@ DEPEND="${RDEPEND}
 DIST_TEST=do
 # parallel fails sometimes...
 
-myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+src_configure() {
+   myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+   perl-module_src_configure
+}
 
 src_install() {
perl-module_src_install

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild
index 3a61a1ff3b12..f7d7e72802ad 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -26,7 +26,10 @@ DEPEND="${RDEPEND}
 DIST_TEST=do
 # parallel fails sometimes...
 
-myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+src_configure() {
+   myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+   perl-module_src_configure
+}
 
 src_install() {
perl-module_src_install

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
index b3fef4008d7b..9e0f99acb617 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
@@ -23,7 +23,10 @@ DEPEND="${RDEPEND}
 DIST_TEST=do
 # parallel fails sometimes...
 
-myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+src_configure() {
+   myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+   perl-module_src_configure
+}
 
 src_install() {
perl-module_src_install

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild
index e7e3101f4ac3..0c320bfdd619 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild
@@ -26,7 +26,10 @@ DEPEND="${RDEPEND}
 DIST_TEST=do
 # parallel fails sometimes...
 
-myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+src_configure() {
+   myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+   perl-module_src_configure
+}
 
 src_install() {
perl-module_src_install



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2022-02-28 Thread Andreas K. Hüttel
commit: 8bbf17adad28a481f26c63ef20750e658d1f3d09
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Feb 28 22:53:24 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon Feb 28 22:57:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bbf17ad

dev-perl/Search-Xapian: Allow newer xapian

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 .../Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild | 35 ++
 1 file changed, 35 insertions(+)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
new file mode 100644
index ..b3fef4008d7b
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=OLLY
+inherit perl-module toolchain-funcs
+
+DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND=">=dev-libs/xapian-1.4:0=
+   !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/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2022-02-28 Thread Anthony G. Basile
commit: 463abb76fdea84a81d66885af628f20c62612068
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Feb 28 16:15:40 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Feb 28 16:15:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=463abb76

dev-perl/Search-Xapian: version bump 1.2.25.5

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anthony G. Basile  gentoo.org>

 dev-perl/Search-Xapian/Manifest|  1 +
 .../Search-Xapian/Search-Xapian-1.2.25.5.ebuild| 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 09035d7f2a2f..2c14369ce2ef 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.4.tar.gz 75336 BLAKE2B 
06e3fe3871f00c173f4c24303b33eb046867dda1274535c1d22b98027804df19b3dc6b80d6213c2090e05362c508d0e41b55cdc165ccedd8a45bfff19d4fe07b
 SHA512 
14d34641583fb3cce3e7cd4b16e5001be9c7808d07e4942b4842196f36906649053d1ff522a5a1b82200ecd714c55afaf7bd653bf7df9a462db91d05cd12cb01
+DIST Search-Xapian-1.2.25.5.tar.gz 74960 BLAKE2B 
e0691383c4fd8ddd286b8db653ddd9175cde9f37ccf470764272456dbea8ceb8893eb011ae57a18816b3974a56db2dc773d90b7a4778e24ac0a6c78eb175a19e
 SHA512 
3099ba3f8726029d7a5c916f6b05d2d7cea41534b0f364687c7d9e0212340dca2a313a1ac8e0f6531a7c1084c8833a0e6d45bcff8fec32e0a6e5922bc0bcb81f

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild
new file mode 100644
index ..e7e3101f4ac3
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=OLLY
+inherit perl-module toolchain-funcs
+
+MY_VERSION=$(ver_cut 1-3)
+
+SRC_URI+=" http://oligarchy.co.uk/xapian/${MY_VERSION}/${P}.tar.gz;
+DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
+
+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/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2021-12-05 Thread Andreas K. Hüttel
commit: d95a935f4887c5a7d5f0285b8c8e58d00452d8e0
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Dec  5 21:07:27 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Dec  5 22:14:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d95a935f

dev-perl/Search-Xapian: EAPI=8 bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...h-Xapian-1.2.25.4.ebuild => Search-Xapian-1.2.25.4-r1.ebuild} | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild
similarity index 76%
rename from dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild
rename to dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild
index a7dd5a44c26d..3a61a1ff3b12 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4-r1.ebuild
@@ -1,17 +1,16 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=OLLY
-inherit perl-module toolchain-funcs versionator
+inherit perl-module toolchain-funcs
 
-VERSION=$(get_version_component_range 1-3)
+MY_VERSION=$(ver_cut 1-3)
 
-SRC_URI+=" http://oligarchy.co.uk/xapian/${VERSION}/${P}.tar.gz;
+SRC_URI+=" http://oligarchy.co.uk/xapian/${MY_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"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2021-08-06 Thread Andreas K. Hüttel
commit: c71563447ef685345c1497831bce87f0ebe4b6d6
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Aug  6 19:19:12 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Aug  6 19:32:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7156344

dev-perl/Search-Xapian: Remove old

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Search-Xapian/Manifest|  1 -
 .../Search-Xapian/Search-Xapian-1.2.25.2.ebuild| 39 --
 2 files changed, 40 deletions(-)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index c9f2cf24240..09035d7f2a2 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,3 +1,2 @@
 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.4.tar.gz 75336 BLAKE2B 
06e3fe3871f00c173f4c24303b33eb046867dda1274535c1d22b98027804df19b3dc6b80d6213c2090e05362c508d0e41b55cdc165ccedd8a45bfff19d4fe07b
 SHA512 
14d34641583fb3cce3e7cd4b16e5001be9c7808d07e4942b4842196f36906649053d1ff522a5a1b82200ecd714c55afaf7bd653bf7df9a462db91d05cd12cb01

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.2.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.2.ebuild
deleted file mode 100644
index 813d6bce14f..000
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 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/*
-   }
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2021-06-03 Thread Sam James
commit: 70a050399fb02ce97dcd7ad2bbd1ac3a501957d3
Author: Sam James  gentoo  org>
AuthorDate: Thu Jun  3 22:50:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jun  3 22:50:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70a05039

dev-perl/Search-Xapian: Stabilize 1.2.25.4 amd64, #790266

Signed-off-by: Sam James  gentoo.org>

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild
index a2cdfad546c..a7dd5a44c26 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ 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"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2020-11-20 Thread Anthony G. Basile
commit: 62946cd7933fd9d468dd6e1083ea02f8dc94e227
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Nov 20 16:49:41 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Nov 20 16:49:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62946cd7

dev-perl/Search-Xapian: bump to 1.2.25.4, drop 1.2.25.3

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 dev-perl/Search-Xapian/Manifest | 2 +-
 .../{Search-Xapian-1.2.25.3.ebuild => Search-Xapian-1.2.25.4.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index b78953bd59b..c9f2cf24240 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,3 +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
+DIST Search-Xapian-1.2.25.4.tar.gz 75336 BLAKE2B 
06e3fe3871f00c173f4c24303b33eb046867dda1274535c1d22b98027804df19b3dc6b80d6213c2090e05362c508d0e41b55cdc165ccedd8a45bfff19d4fe07b
 SHA512 
14d34641583fb3cce3e7cd4b16e5001be9c7808d07e4942b4842196f36906649053d1ff522a5a1b82200ecd714c55afaf7bd653bf7df9a462db91d05cd12cb01

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.3.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild
similarity index 100%
rename from dev-perl/Search-Xapian/Search-Xapian-1.2.25.3.ebuild
rename to dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2020-11-17 Thread Anthony G. Basile
commit: 57e307367a34a6e4fce7f75de0025055cbf814ef
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Nov 18 00:57:24 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Nov 18 00:57:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e30736

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  gentoo.org>

 dev-perl/Search-Xapian/Manifest|  1 +
 .../Search-Xapian/Search-Xapian-1.2.25.3.ebuild| 39 ++
 2 files changed, 40 insertions(+)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 77a3228dc3c..b78953bd59b 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 000..a2cdfad546c
--- /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/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2020-04-10 Thread Sergei Trofimovich
commit: 4d3cb03fcfc304437f1bcba89b0e3c4e5b0caf75
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Apr 10 09:15:40 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Apr 10 09:48:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d3cb03f

dev-perl/Search-Xapian: drop to ~sparc

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index 1f8a9a75412..b8cfbc7060e 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -13,7 +13,7 @@ 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"
+KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2018-09-30 Thread Anthony G. Basile
commit: e257ae6e82ddeeb9845b5d54e8f5bbe5705a86c4
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 30 14:58:25 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 30 14:58:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e257ae6e

dev-perl/Search-Xapian: remove older versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Signed-off-by: Anthony G. Basile  gentoo.org>

 dev-perl/Search-Xapian/Manifest|  2 --
 .../Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild | 38 --
 .../Search-Xapian/Search-Xapian-1.2.23.0.ebuild| 36 
 .../Search-Xapian/Search-Xapian-1.2.25.1.ebuild| 38 --
 4 files changed, 114 deletions(-)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 5a7cfa721b3..77a3228dc3c 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,4 +1,2 @@
-DIST Search-Xapian-1.2.23.0.tar.gz 70255 BLAKE2B 
7258dde8dd58f3627d1b7fc8a508c8d7a403b3212bbe90e8f2f76e9e77fc4fa522e0dfd04d865435ccae3d6c43446d7fd70361af0036ed10013fb6111a3467b6
 SHA512 
48d47e4edc5f752fc31c4142ce3c92a8ead122d4d872326a153fcb9f8667da4101384a3e06375ebb8d2e3148df744484e92bedad7bf4743417c84018ccda9526
 DIST Search-Xapian-1.2.25.0.tar.gz 72097 BLAKE2B 
9e9f54718bf597c7592cc936e23ce4684ba4104f890ee7216e303af9a075eb895459a46d17bd2c32820eb436545a8a9e008b17f83fa586bf3e9160d80813872d
 SHA512 
2bb0bea59ddfd8159df0b3051034ca28478cb74832cfe7a103b8a4dbeddbd41f6223be6ad56eb3dcb8c7a785d2f7d500844c41f35da3997a843b3ba624a4e795
-DIST Search-Xapian-1.2.25.1.tar.gz 72320 BLAKE2B 
ffdc57cd70b35ef0ddfa94818d7b34b5d80077380901791b27564e6f544a658221e34e3997ae1412ccb8f1e21d515041959de90859f66c450273432de1d1f9bf
 SHA512 
7cb78c1304b69a733b75c1a9b5ae4197be519e67528214a46e4bb9da660cda79f8e9ecf46219af09f174bf652b6000e0eeb50f736a80f2e6f47be46b2d58ef8d
 DIST Search-Xapian-1.2.25.2.tar.gz 72424 BLAKE2B 
b959e1f111def3660f17669e49dfa9bff95bc421bdde35dac22d5cad4d350057cf7b077f030797158c3ae6c7c292775f44e88381e685b9fb5e8364bef3d03403
 SHA512 
92b92f28cf50d162905ef230a28956a4e57d3baca81d227751e905756239be0f843b58f38a8dfdb6c8b6ae827e37a60d7df7022cfab43164293223dd430d4d2d

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
deleted file mode 100644
index cb142fb846f..000
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# 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 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="examples 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/*
-   }
-}

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
deleted file mode 100644
index e7f905da093..000
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-MODULE_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"
-
-RDEPEND="dev-libs/xapian:0/1.2.22
-   !dev-libs/xapian-bindings[perl]"
-DEPEND="${RDEPEND}
-   dev-perl/Module-Build"
-
-SRC_TEST=skip
-# missing dependencies; fixed in -r1
-
-myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
-
-src_install() {
-   perl-module_src_install
-
-   use examples && {
-   docinto examples
-   dodoc "${S}"/examples/*
-   }
-}

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.1.ebuild
deleted file mode 100644
index cc66a718254..000
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2018-09-30 Thread Anthony G. Basile
commit: 31065e8b4705454700907380f60b1436b5692b88
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 30 14:55:40 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 30 14:56:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31065e8b

dev-perl/Search-Xapian: version bump to 1.2.25.2

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Signed-off-by: Anthony G. Basile  gentoo.org>

 dev-perl/Search-Xapian/Manifest|  1 +
 .../Search-Xapian/Search-Xapian-1.2.25.2.ebuild| 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 306acf45872..5a7cfa721b3 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,3 +1,4 @@
 DIST Search-Xapian-1.2.23.0.tar.gz 70255 BLAKE2B 
7258dde8dd58f3627d1b7fc8a508c8d7a403b3212bbe90e8f2f76e9e77fc4fa522e0dfd04d865435ccae3d6c43446d7fd70361af0036ed10013fb6111a3467b6
 SHA512 
48d47e4edc5f752fc31c4142ce3c92a8ead122d4d872326a153fcb9f8667da4101384a3e06375ebb8d2e3148df744484e92bedad7bf4743417c84018ccda9526
 DIST Search-Xapian-1.2.25.0.tar.gz 72097 BLAKE2B 
9e9f54718bf597c7592cc936e23ce4684ba4104f890ee7216e303af9a075eb895459a46d17bd2c32820eb436545a8a9e008b17f83fa586bf3e9160d80813872d
 SHA512 
2bb0bea59ddfd8159df0b3051034ca28478cb74832cfe7a103b8a4dbeddbd41f6223be6ad56eb3dcb8c7a785d2f7d500844c41f35da3997a843b3ba624a4e795
 DIST Search-Xapian-1.2.25.1.tar.gz 72320 BLAKE2B 
ffdc57cd70b35ef0ddfa94818d7b34b5d80077380901791b27564e6f544a658221e34e3997ae1412ccb8f1e21d515041959de90859f66c450273432de1d1f9bf
 SHA512 
7cb78c1304b69a733b75c1a9b5ae4197be519e67528214a46e4bb9da660cda79f8e9ecf46219af09f174bf652b6000e0eeb50f736a80f2e6f47be46b2d58ef8d
+DIST Search-Xapian-1.2.25.2.tar.gz 72424 BLAKE2B 
b959e1f111def3660f17669e49dfa9bff95bc421bdde35dac22d5cad4d350057cf7b077f030797158c3ae6c7c292775f44e88381e685b9fb5e8364bef3d03403
 SHA512 
92b92f28cf50d162905ef230a28956a4e57d3baca81d227751e905756239be0f843b58f38a8dfdb6c8b6ae827e37a60d7df7022cfab43164293223dd430d4d2d

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.2.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.2.ebuild
new file mode 100644
index 000..cc66a718254
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Foundation
+# 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"
+
+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/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2018-08-29 Thread Markus Meier
commit: fe60526ffa0331e1ddf559a76769eac9a9d2a9fd
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 30 04:42:29 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 30 04:42:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe60526f

dev-perl/Search-Xapian: arm stable, bug #662392

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="arm"

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index a4f28421895..cfc43012086 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -13,7 +13,7 @@ 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"
+KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86"
 IUSE="examples test"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2018-08-11 Thread Sergei Trofimovich
commit: 6161c239baca8af2e79649efaf34b6ac1c6a2093
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Aug 11 18:41:52 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Aug 11 18:41:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6161c239

dev-perl/Search-Xapian: stable 1.2.25.0 for ppc, bug #662392

Package-Manager: Portage-2.3.45, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index 7deb6b11615..c5aa89b0946 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -13,7 +13,7 @@ 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"
+KEYWORDS="~alpha amd64 ~arm ia64 ~mips ppc ppc64 sparc x86"
 IUSE="examples test"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2018-08-03 Thread Mikle Kolyada
commit: 0d3ba8e4e80eac37a3bdc439b208a4d3384c4d77
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Aug  3 23:53:50 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Aug  3 23:53:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d3ba8e4

dev-perl/Search-Xapian: amd64 stable wrt bug #662392

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index c3f06c0a5a9..7deb6b11615 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -13,7 +13,7 @@ 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"
+KEYWORDS="~alpha amd64 ~arm ia64 ~mips ~ppc ppc64 sparc x86"
 IUSE="examples test"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2018-07-31 Thread Sergei Trofimovich
commit: 526cab4ff411f25e00b03a55736c51253e638c4b
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jul 31 08:26:17 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jul 31 08:33:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=526cab4f

dev-perl/Search-Xapian: stable 1.2.25.0 for sparc, bug #662392

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index 07d93954986..c3f06c0a5a9 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -13,7 +13,7 @@ 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"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ~mips ~ppc ppc64 sparc x86"
 IUSE="examples test"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2018-07-30 Thread Sergei Trofimovich
commit: 6c0277f2ed7c2bc8f65c7d7284951827fc940340
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jul 30 22:07:22 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jul 30 22:07:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c0277f2

dev-perl/Search-Xapian: stable 1.2.25.0 for ppc64, bug #662392

Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc64"

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index 9c14350c32e..07d93954986 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -13,7 +13,7 @@ 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"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ~mips ~ppc ppc64 ~sparc x86"
 IUSE="examples test"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2018-07-30 Thread Sergei Trofimovich
commit: df40b1865dcc36efecc1f538f35d189f3f944849
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jul 30 21:27:52 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jul 30 21:27:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df40b186

dev-perl/Search-Xapian: stable 1.2.25.0 for ia64, bug #662392

Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ia64"

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index 363aba50941..9c14350c32e 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -13,7 +13,7 @@ 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"
+KEYWORDS="~alpha ~amd64 ~arm ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="examples test"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2018-07-29 Thread Thomas Deutschmann
commit: b51699d5c8db6713ce90346640210b08ac6ab93d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jul 29 13:58:32 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jul 29 13:58:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b51699d5

dev-perl/Search-Xapian: x86 stable (bug #662392)

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index 2056424aa83..363aba50941 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ 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"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="examples test"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2018-07-20 Thread Anthony G. Basile
commit: e121662abca8b7ea250ffab76a9b84af94d6b652
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Jul 20 15:00:19 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jul 20 15:00:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e121662a

dev-perl/Search-Xapian: version bump to 1.2.25.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/Search-Xapian/Manifest|  1 +
 .../Search-Xapian/Search-Xapian-1.2.25.1.ebuild| 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 2912d27d936..306acf45872 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,2 +1,3 @@
 DIST Search-Xapian-1.2.23.0.tar.gz 70255 BLAKE2B 
7258dde8dd58f3627d1b7fc8a508c8d7a403b3212bbe90e8f2f76e9e77fc4fa522e0dfd04d865435ccae3d6c43446d7fd70361af0036ed10013fb6111a3467b6
 SHA512 
48d47e4edc5f752fc31c4142ce3c92a8ead122d4d872326a153fcb9f8667da4101384a3e06375ebb8d2e3148df744484e92bedad7bf4743417c84018ccda9526
 DIST Search-Xapian-1.2.25.0.tar.gz 72097 BLAKE2B 
9e9f54718bf597c7592cc936e23ce4684ba4104f890ee7216e303af9a075eb895459a46d17bd2c32820eb436545a8a9e008b17f83fa586bf3e9160d80813872d
 SHA512 
2bb0bea59ddfd8159df0b3051034ca28478cb74832cfe7a103b8a4dbeddbd41f6223be6ad56eb3dcb8c7a785d2f7d500844c41f35da3997a843b3ba624a4e795
+DIST Search-Xapian-1.2.25.1.tar.gz 72320 BLAKE2B 
ffdc57cd70b35ef0ddfa94818d7b34b5d80077380901791b27564e6f544a658221e34e3997ae1412ccb8f1e21d515041959de90859f66c450273432de1d1f9bf
 SHA512 
7cb78c1304b69a733b75c1a9b5ae4197be519e67528214a46e4bb9da660cda79f8e9ecf46219af09f174bf652b6000e0eeb50f736a80f2e6f47be46b2d58ef8d

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.1.ebuild
new file mode 100644
index 000..cc66a718254
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Foundation
+# 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"
+
+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/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2017-11-20 Thread Anthony G. Basile
commit: 2b4e8fcd6926be7d540b3ee144292ca5de0ba9ad
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Nov 20 12:29:19 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Nov 20 12:31:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4e8fcd

dev-perl/Search-Xapian: add LICENSE

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild | 3 ++-
 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild| 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
index 246dfa30ca2..cb142fb846f 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,6 +11,7 @@ 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 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples test"

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index 1f8072fb690..2056424aa83 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -11,6 +11,7 @@ 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"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2017-11-08 Thread Matt Turner
commit: d756c88dc790a305c6a8ed90ab1a733f13c89b8f
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Nov  9 00:03:20 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Nov  9 00:07:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d756c88d

dev-perl/Search-Xapian-1.2.25.0: added ~mips, bug 581856

 dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
index e5fe760739e..1f8072fb690 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI+=" 
http://oligarchy.co.uk/xapian/${VERSION}/${P}.tar.gz;
 DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples test"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2017-10-06 Thread Anthony G. Basile
commit: 69071a14be09ff3d4da2e8ca27caca6af38eedd2
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Oct  6 11:08:04 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Oct  6 11:08:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69071a14

dev-perl/Search-Xapian: version bump to 1.2.25.0

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/Search-Xapian/Manifest|  1 +
 .../Search-Xapian/Search-Xapian-1.2.25.0.ebuild| 37 ++
 2 files changed, 38 insertions(+)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 38da8cb8fe8..ff8191e86d8 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1 +1,2 @@
 DIST Search-Xapian-1.2.23.0.tar.gz 70255 SHA256 
90ea2e962f9a4e5f73719bd30b877f5272da886f3693d3a961f4d84b2ef34402 SHA512 
48d47e4edc5f752fc31c4142ce3c92a8ead122d4d872326a153fcb9f8667da4101384a3e06375ebb8d2e3148df744484e92bedad7bf4743417c84018ccda9526
 WHIRLPOOL 
05b472891a7556f51b1ce1d8ae1e8e6f38ae5538d2e8445e0533e92380dda764a37693d6904fd396b97904486c3e961a4bef4ed1791601a02976f7c85e31e79b
+DIST Search-Xapian-1.2.25.0.tar.gz 72097 SHA256 
5e5b5968c4001e89d72f93c8a118fa0840c888401ff62acc440ec76be32481d4 SHA512 
2bb0bea59ddfd8159df0b3051034ca28478cb74832cfe7a103b8a4dbeddbd41f6223be6ad56eb3dcb8c7a785d2f7d500844c41f35da3997a843b3ba624a4e795
 WHIRLPOOL 
a2bd8a0b02cc973bbcb943773c2b2e49a3efdf881133b3f9def20fd017f623d156d7ad162977e553ab6940d46ab2a2a566072d5de20628e6900bf32ce9eb884b

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
new file mode 100644
index 000..e5fe760739e
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# 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"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="examples 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/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-12-30 Thread Agostino Sarubbo
commit: 2d2fe4ce688dadb12c5c1d4fc57342e0e67bf85e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Dec 30 11:09:52 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Dec 30 11:09:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d2fe4ce

dev-perl/Search-Xapian: ia64 stable wrt bug #581854

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
index a1410b3..9ddccd1 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
@@ -14,7 +14,7 @@ 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"
+KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86"
 IUSE="examples"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-11-03 Thread Göktürk Yüksek
commit: 327baee44301889195a7365125eb0d52a3b9539c
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Nov  3 16:00:44 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Nov  3 16:16:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=327baee4

dev-perl/Search-Xapian: remove proxied maintainer per his request

Package-Manager: portage-2.2.28

 dev-perl/Search-Xapian/metadata.xml | 8 
 1 file changed, 8 deletions(-)

diff --git a/dev-perl/Search-Xapian/metadata.xml 
b/dev-perl/Search-Xapian/metadata.xml
index 0684900..093ebb5 100644
--- a/dev-perl/Search-Xapian/metadata.xml
+++ b/dev-perl/Search-Xapian/metadata.xml
@@ -5,14 +5,6 @@
bluen...@gentoo.org
Anthony G. Basile

-   
-   b...@bergstroem.nu
-   Johan Bergström
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

Search-Xapian
Search::Xapian



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-09-04 Thread Anthony G. Basile
commit: ded92eb764d189124c95769975d69ef62811af35
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep  4 15:02:56 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep  4 16:29:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ded92eb7

dev-perl/Search-Xapian: remove older versions

Package-Manager: portage-2.2.28

 dev-perl/Search-Xapian/Manifest|  2 --
 .../Search-Xapian/Search-Xapian-1.2.19.0.ebuild| 36 --
 .../Search-Xapian/Search-Xapian-1.2.22.0.ebuild| 36 --
 3 files changed, 74 deletions(-)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index dd87f0b..38da8cb 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,3 +1 @@
-DIST Search-Xapian-1.2.19.0.tar.gz 63667 SHA256 
d9ff745bb3ace7c1c2dbcf4ad65f3e50b3744d16c0a9ee3a51fe7c6541f639c2 SHA512 
78ba36f3b8157ef872330b88992012d3f553abc3f2322bbb1d0f3111681dd530e5b57e4989fef645401d19cb4d95f5d284a305c5470efc2911051d1765551a3f
 WHIRLPOOL 
9f81480e6341f3bd65bfd243d95d5b8ecce30cb4b9c531a3dffac48f1d787259988e51a19a32af73693dba8e08865e1a116a49f9fe4f0b2fa2e78a22c0e8
-DIST Search-Xapian-1.2.22.0.tar.gz 70102 SHA256 
52c24e224c68ed763d50b040c38a21dfc31bc69a7c896a3114262786c03c4edd SHA512 
2c16d1afbf5e386f716809afaca18967a7517e8c18bc25ef8c8aed2ece11dd2d7a5b3b6c438dea1f4bdd0baad512f36958668852d053bd9ed3db07614c7c9d63
 WHIRLPOOL 
b2ec1ba55bb801a24b4a64fc30482aa72d83fe81387898640cfece98a53d83124b21e731d37e605f7d7fa993554a737dde3c382e52ae931b42494fcfe3cbb35c
 DIST Search-Xapian-1.2.23.0.tar.gz 70255 SHA256 
90ea2e962f9a4e5f73719bd30b877f5272da886f3693d3a961f4d84b2ef34402 SHA512 
48d47e4edc5f752fc31c4142ce3c92a8ead122d4d872326a153fcb9f8667da4101384a3e06375ebb8d2e3148df744484e92bedad7bf4743417c84018ccda9526
 WHIRLPOOL 
05b472891a7556f51b1ce1d8ae1e8e6f38ae5538d2e8445e0533e92380dda764a37693d6904fd396b97904486c3e961a4bef4ed1791601a02976f7c85e31e79b

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.19.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.19.0.ebuild
deleted file mode 100644
index 7cd9097..
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.19.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-MODULE_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"
-
-RDEPEND="~dev-libs/xapian-${VERSION}
-   !dev-libs/xapian-bindings[perl]"
-DEPEND="${RDEPEND}
-   dev-perl/Module-Build"
-
-SRC_TEST="do"
-
-myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
-
-src_install() {
-   perl-module_src_install
-
-   use examples && {
-   docinto examples
-   dodoc "${S}"/examples/*
-   }
-}

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
deleted file mode 100644
index 175da7f..
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-MODULE_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"
-
-RDEPEND="dev-libs/xapian:0/1.2.22
-   !dev-libs/xapian-bindings[perl]"
-DEPEND="${RDEPEND}
-   dev-perl/Module-Build"
-
-SRC_TEST="do"
-
-myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
-
-src_install() {
-   perl-module_src_install
-
-   use examples && {
-   docinto examples
-   dodoc "${S}"/examples/*
-   }
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-08-17 Thread Anthony G. Basile
commit: d097fe182393f9ec9d384d2b92f5cfae5ea5d95a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Aug 18 00:50:02 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Aug 18 00:52:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d097fe18

dev-perl/Search-Xapian: stabe on ppc64, bug #581854

Package-Manager: portage-2.2.28

 dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
index 3e9fd10..540cc72 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
@@ -14,7 +14,7 @@ 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"
+KEYWORDS="alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="examples"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-05-25 Thread Matt Turner
commit: b40265a934233a1a656b295d8ca64607ab226b39
Author: Matt Turner  gentoo  org>
AuthorDate: Wed May 25 22:07:55 2016 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed May 25 22:27:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b40265a9

dev-perl/Search-Xapian: added ~alpha, bug 581856.

 dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
index 089b63f..867c299 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI+=" 
http://oligarchy.co.uk/xapian/${VERSION}/${P}.tar.gz;
 DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~x86"
 IUSE="examples test"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-05-25 Thread Matt Turner
commit: 200c6654940f7a22a19766b5fb27e25b6856dfc0
Author: Matt Turner  gentoo  org>
AuthorDate: Wed May 25 22:00:50 2016 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed May 25 22:27:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=200c6654

dev-perl/Search-Xapian: alpha stable, bug 581854.

 dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
index 24294aa..e9961ca 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
@@ -14,7 +14,7 @@ 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"
+KEYWORDS="alpha amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-05-25 Thread Tobias Klausmann
commit: 9b4d489a5e8c252b333e419fe6876f68ad7bd301
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed May 25 14:28:01 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed May 25 14:28:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b4d489a

dev-perl/Search-Xapian-1.2.22.0-r0: add alpha keyword

Gentoo-Bug: 574638

Package-Manager: portage-2.3.0_rc1

 dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
index bfcf6a7..175da7f 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
@@ -14,7 +14,7 @@ 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"
+KEYWORDS="alpha amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="examples"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-05-19 Thread Markus Meier
commit: 34e6d13168507ce7c9280772f242c11b97f7f28e
Author: Markus Meier  gentoo  org>
AuthorDate: Thu May 19 19:22:49 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu May 19 19:22:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34e6d131

dev-perl/Search-Xapian: add ~arm, bug #581856

Package-Manager: portage-2.3.0_rc1
RepoMan-Options: --include-arches="arm"

 dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
index 4b1dc6b..089b63f 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI+=" 
http://oligarchy.co.uk/xapian/${VERSION}/${P}.tar.gz;
 DESCRIPTION="Perl XS frontend to the Xapian C++ search library"
 
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE="examples test"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-05-19 Thread Markus Meier
commit: 043f3740f9f09780244154dcf93f6f5fbfb2715c
Author: Markus Meier  gentoo  org>
AuthorDate: Thu May 19 19:16:01 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu May 19 19:16:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=043f3740

dev-perl/Search-Xapian: arm stable, bug #581854

Package-Manager: portage-2.3.0_rc1
RepoMan-Options: --include-arches="arm"

 dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
index 9d2894b..24294aa 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
@@ -14,7 +14,7 @@ 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"
+KEYWORDS="~alpha amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-05-13 Thread Agostino Sarubbo
commit: 5276be5e7da72fb8842bd2ea52ff78f2ef2946b5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri May 13 10:10:12 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri May 13 10:11:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5276be5e

dev-perl/Search-Xapian: amd64 stable wrt bug #581854

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
index b0defbd..9d2894b 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
@@ -14,7 +14,7 @@ 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"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-05-02 Thread Andreas Hüttel
commit: c8f6108733ded521027d8776571057f8b859bf84
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 18:09:32 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 18:09:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f61087

dev-perl/Search-Xapian: Disable tests; missing dependencies

Package-Manager: portage-2.2.28

 dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
index 3a1c0d5..b0defbd 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
@@ -22,7 +22,8 @@ RDEPEND="dev-libs/xapian:0/1.2.22
 DEPEND="${RDEPEND}
dev-perl/Module-Build"
 
-SRC_TEST="do"
+SRC_TEST=skip
+# missing dependencies; fixed in -r1
 
 myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-05-02 Thread Andreas Hüttel
commit: 955de705dce88f2ebb8fd33f85422e4b952db3aa
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May  2 18:12:15 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon May  2 18:12:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=955de705

dev-perl/Search-Xapian: Revision bump, EAPI=6 and added missing test deps

Package-Manager: portage-2.2.28

 .../Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild | 38 ++
 1 file changed, 38 insertions(+)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
new file mode 100644
index 000..4b1dc6b
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples 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/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-03-30 Thread Anthony G. Basile
commit: 18a04ee5dc437bd1682b0688d5fa67baf0aea60a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Mar 30 10:28:52 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Mar 30 10:28:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18a04ee5

dev-perl/Search-Xapian: version bump to 1.2.23.0

Package-Manager: portage-2.2.26

 dev-perl/Search-Xapian/Manifest|  1 +
 .../Search-Xapian/Search-Xapian-1.2.23.0.ebuild| 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 0e4ca0a..dd87f0b 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,2 +1,3 @@
 DIST Search-Xapian-1.2.19.0.tar.gz 63667 SHA256 
d9ff745bb3ace7c1c2dbcf4ad65f3e50b3744d16c0a9ee3a51fe7c6541f639c2 SHA512 
78ba36f3b8157ef872330b88992012d3f553abc3f2322bbb1d0f3111681dd530e5b57e4989fef645401d19cb4d95f5d284a305c5470efc2911051d1765551a3f
 WHIRLPOOL 
9f81480e6341f3bd65bfd243d95d5b8ecce30cb4b9c531a3dffac48f1d787259988e51a19a32af73693dba8e08865e1a116a49f9fe4f0b2fa2e78a22c0e8
 DIST Search-Xapian-1.2.22.0.tar.gz 70102 SHA256 
52c24e224c68ed763d50b040c38a21dfc31bc69a7c896a3114262786c03c4edd SHA512 
2c16d1afbf5e386f716809afaca18967a7517e8c18bc25ef8c8aed2ece11dd2d7a5b3b6c438dea1f4bdd0baad512f36958668852d053bd9ed3db07614c7c9d63
 WHIRLPOOL 
b2ec1ba55bb801a24b4a64fc30482aa72d83fe81387898640cfece98a53d83124b21e731d37e605f7d7fa993554a737dde3c382e52ae931b42494fcfe3cbb35c
+DIST Search-Xapian-1.2.23.0.tar.gz 70255 SHA256 
90ea2e962f9a4e5f73719bd30b877f5272da886f3693d3a961f4d84b2ef34402 SHA512 
48d47e4edc5f752fc31c4142ce3c92a8ead122d4d872326a153fcb9f8667da4101384a3e06375ebb8d2e3148df744484e92bedad7bf4743417c84018ccda9526
 WHIRLPOOL 
05b472891a7556f51b1ce1d8ae1e8e6f38ae5538d2e8445e0533e92380dda764a37693d6904fd396b97904486c3e961a4bef4ed1791601a02976f7c85e31e79b

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
new file mode 100644
index 000..3a1c0d5
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.23.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+MODULE_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"
+
+RDEPEND="dev-libs/xapian:0/1.2.22
+   !dev-libs/xapian-bindings[perl]"
+DEPEND="${RDEPEND}
+   dev-perl/Module-Build"
+
+SRC_TEST="do"
+
+myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+
+src_install() {
+   perl-module_src_install
+
+   use examples && {
+   docinto examples
+   dodoc "${S}"/examples/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-02-21 Thread Markus Meier
commit: dc376dbffaea2d7dbb41669f28a1f961367e1964
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Feb 21 19:02:58 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Feb 21 19:02:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc376dbf

dev-perl/Search-Xapian: arm stable, bug #574638

Package-Manager: portage-2.2.27
RepoMan-Options: --include-arches="arm"

 dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
index ecabf61..bfcf6a7 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
@@ -14,7 +14,7 @@ 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"
+KEYWORDS="~alpha amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="examples"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-02-14 Thread Anthony G. Basile
commit: 5ff49710fefabfda1dd5c4fbf4c40c6031a5518e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Feb 15 02:06:07 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Feb 15 02:06:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ff49710

dev-perl/Search-Xapian: stable on amd64 and x86, bug #574638

Package-Manager: portage-2.2.26

 dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
index 3a1c0d5..ecabf61 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
@@ -14,7 +14,7 @@ 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"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="examples"
 
 RDEPEND="dev-libs/xapian:0/1.2.22



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-02-13 Thread Anthony G. Basile
commit: 392e08cef70d1a4697ea0861002930499cd3ee9f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Feb 13 15:17:10 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Feb 13 15:17:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=392e08ce

dev-perl/Search-Xapian: switch to subslot dependency

Package-Manager: portage-2.2.26

 dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
index 61608f0..3a1c0d5 100644
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -17,7 +17,7 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples"
 
-RDEPEND="~dev-libs/xapian-${VERSION}
+RDEPEND="dev-libs/xapian:0/1.2.22
!dev-libs/xapian-bindings[perl]"
 DEPEND="${RDEPEND}
dev-perl/Module-Build"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2016-02-13 Thread Anthony G. Basile
commit: d85ab05459a2413c368e5d42150d88cf8ceab48d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Feb 13 15:17:50 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Feb 13 15:17:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d85ab054

dev-perl/Search-Xapian: remove older unstable

Package-Manager: portage-2.2.26

 dev-perl/Search-Xapian/Manifest|  1 -
 .../Search-Xapian/Search-Xapian-1.2.21.0.ebuild| 36 --
 2 files changed, 37 deletions(-)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 7762ee8..0e4ca0a 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,3 +1,2 @@
 DIST Search-Xapian-1.2.19.0.tar.gz 63667 SHA256 
d9ff745bb3ace7c1c2dbcf4ad65f3e50b3744d16c0a9ee3a51fe7c6541f639c2 SHA512 
78ba36f3b8157ef872330b88992012d3f553abc3f2322bbb1d0f3111681dd530e5b57e4989fef645401d19cb4d95f5d284a305c5470efc2911051d1765551a3f
 WHIRLPOOL 
9f81480e6341f3bd65bfd243d95d5b8ecce30cb4b9c531a3dffac48f1d787259988e51a19a32af73693dba8e08865e1a116a49f9fe4f0b2fa2e78a22c0e8
-DIST Search-Xapian-1.2.21.0.tar.gz 67726 SHA256 
34cb6279c3394b763e16ff9ae6b48942bdddb494312548366156cfdb4d8c70b5 SHA512 
e2ffbf1a880fbda20f7d9310b71690b26267d9324dd4ee05268b348ac5e5974c1c1feb097cf6bb3c267e5b440422a0153167b916cd2215749df236c2e883
 WHIRLPOOL 
f34ba0070fb41e0efeb2aff4852ef8717b216184c79878196c50650f009d6e48d216b8dd1f9cd07031fb2be713faf5a3e9c8e1184469fed69fa745f69bb5572a
 DIST Search-Xapian-1.2.22.0.tar.gz 70102 SHA256 
52c24e224c68ed763d50b040c38a21dfc31bc69a7c896a3114262786c03c4edd SHA512 
2c16d1afbf5e386f716809afaca18967a7517e8c18bc25ef8c8aed2ece11dd2d7a5b3b6c438dea1f4bdd0baad512f36958668852d053bd9ed3db07614c7c9d63
 WHIRLPOOL 
b2ec1ba55bb801a24b4a64fc30482aa72d83fe81387898640cfece98a53d83124b21e731d37e605f7d7fa993554a737dde3c382e52ae931b42494fcfe3cbb35c

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.21.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.21.0.ebuild
deleted file mode 100644
index 61608f0..000
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.21.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-MODULE_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"
-
-RDEPEND="~dev-libs/xapian-${VERSION}
-   !dev-libs/xapian-bindings[perl]"
-DEPEND="${RDEPEND}
-   dev-perl/Module-Build"
-
-SRC_TEST="do"
-
-myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
-
-src_install() {
-   perl-module_src_install
-
-   use examples && {
-   docinto examples
-   dodoc "${S}"/examples/*
-   }
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2015-12-31 Thread Anthony G. Basile
commit: 19b6d44e436f340a07c0ed568e97e876faeb2c7c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Dec 31 15:37:33 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Dec 31 15:37:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19b6d44e

dev-perl/Search-Xapian: version bump to 1.2.22.0

Package-Manager: portage-2.2.24

 dev-perl/Search-Xapian/Manifest|  1 +
 .../Search-Xapian/Search-Xapian-1.2.22.0.ebuild| 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index 60ceca5..7762ee8 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,2 +1,3 @@
 DIST Search-Xapian-1.2.19.0.tar.gz 63667 SHA256 
d9ff745bb3ace7c1c2dbcf4ad65f3e50b3744d16c0a9ee3a51fe7c6541f639c2 SHA512 
78ba36f3b8157ef872330b88992012d3f553abc3f2322bbb1d0f3111681dd530e5b57e4989fef645401d19cb4d95f5d284a305c5470efc2911051d1765551a3f
 WHIRLPOOL 
9f81480e6341f3bd65bfd243d95d5b8ecce30cb4b9c531a3dffac48f1d787259988e51a19a32af73693dba8e08865e1a116a49f9fe4f0b2fa2e78a22c0e8
 DIST Search-Xapian-1.2.21.0.tar.gz 67726 SHA256 
34cb6279c3394b763e16ff9ae6b48942bdddb494312548366156cfdb4d8c70b5 SHA512 
e2ffbf1a880fbda20f7d9310b71690b26267d9324dd4ee05268b348ac5e5974c1c1feb097cf6bb3c267e5b440422a0153167b916cd2215749df236c2e883
 WHIRLPOOL 
f34ba0070fb41e0efeb2aff4852ef8717b216184c79878196c50650f009d6e48d216b8dd1f9cd07031fb2be713faf5a3e9c8e1184469fed69fa745f69bb5572a
+DIST Search-Xapian-1.2.22.0.tar.gz 70102 SHA256 
52c24e224c68ed763d50b040c38a21dfc31bc69a7c896a3114262786c03c4edd SHA512 
2c16d1afbf5e386f716809afaca18967a7517e8c18bc25ef8c8aed2ece11dd2d7a5b3b6c438dea1f4bdd0baad512f36958668852d053bd9ed3db07614c7c9d63
 WHIRLPOOL 
b2ec1ba55bb801a24b4a64fc30482aa72d83fe81387898640cfece98a53d83124b21e731d37e605f7d7fa993554a737dde3c382e52ae931b42494fcfe3cbb35c

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
new file mode 100644
index 000..61608f0
--- /dev/null
+++ b/dev-perl/Search-Xapian/Search-Xapian-1.2.22.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+MODULE_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"
+
+RDEPEND="~dev-libs/xapian-${VERSION}
+   !dev-libs/xapian-bindings[perl]"
+DEPEND="${RDEPEND}
+   dev-perl/Module-Build"
+
+SRC_TEST="do"
+
+myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
+
+src_install() {
+   perl-module_src_install
+
+   use examples && {
+   docinto examples
+   dodoc "${S}"/examples/*
+   }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Search-Xapian/

2015-10-13 Thread Anthony G. Basile
commit: 085bdf0cba9bd214d0d465f1eea14cd540614ae5
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Oct 13 18:58:38 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Oct 13 18:58:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=085bdf0c

dev-perl/Search-Xapian: remove older 1.2 branch version

Package-Manager: portage-2.2.20.1

 dev-perl/Search-Xapian/Manifest|  1 -
 .../Search-Xapian/Search-Xapian-1.2.20.0.ebuild| 36 --
 2 files changed, 37 deletions(-)

diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest
index dc5e066..60ceca5 100644
--- a/dev-perl/Search-Xapian/Manifest
+++ b/dev-perl/Search-Xapian/Manifest
@@ -1,3 +1,2 @@
 DIST Search-Xapian-1.2.19.0.tar.gz 63667 SHA256 
d9ff745bb3ace7c1c2dbcf4ad65f3e50b3744d16c0a9ee3a51fe7c6541f639c2 SHA512 
78ba36f3b8157ef872330b88992012d3f553abc3f2322bbb1d0f3111681dd530e5b57e4989fef645401d19cb4d95f5d284a305c5470efc2911051d1765551a3f
 WHIRLPOOL 
9f81480e6341f3bd65bfd243d95d5b8ecce30cb4b9c531a3dffac48f1d787259988e51a19a32af73693dba8e08865e1a116a49f9fe4f0b2fa2e78a22c0e8
-DIST Search-Xapian-1.2.20.0.tar.gz 67128 SHA256 
1be6dc77680ba5597bbb3f1cf7ac9fa61de77e9266be2e6a45a7f913b274c139 SHA512 
734ed63dc86f904f5b68c7c8e62780d82c27414625c54d4d14e974aa1b2f0b1f0022f0176da072ff4e6fd2a218586dbfc0f85481df60bb0d231ad978c3ec969b
 WHIRLPOOL 
7b8b5a2e9b572e5dbe7671368c31e6ac0052b8c9cbb3052548ed816e75c55696414c1ef57b9c8040c2c5faf4371afd0272cf57b8557cc028f7f4ca4cdcb825ef
 DIST Search-Xapian-1.2.21.0.tar.gz 67726 SHA256 
34cb6279c3394b763e16ff9ae6b48942bdddb494312548366156cfdb4d8c70b5 SHA512 
e2ffbf1a880fbda20f7d9310b71690b26267d9324dd4ee05268b348ac5e5974c1c1feb097cf6bb3c267e5b440422a0153167b916cd2215749df236c2e883
 WHIRLPOOL 
f34ba0070fb41e0efeb2aff4852ef8717b216184c79878196c50650f009d6e48d216b8dd1f9cd07031fb2be713faf5a3e9c8e1184469fed69fa745f69bb5572a

diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.20.0.ebuild 
b/dev-perl/Search-Xapian/Search-Xapian-1.2.20.0.ebuild
deleted file mode 100644
index 61608f0..000
--- a/dev-perl/Search-Xapian/Search-Xapian-1.2.20.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-MODULE_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"
-
-RDEPEND="~dev-libs/xapian-${VERSION}
-   !dev-libs/xapian-bindings[perl]"
-DEPEND="${RDEPEND}
-   dev-perl/Module-Build"
-
-SRC_TEST="do"
-
-myconf="CXX=$(tc-getCXX) CXXFLAGS=${CXXFLAGS}"
-
-src_install() {
-   perl-module_src_install
-
-   use examples && {
-   docinto examples
-   dodoc "${S}"/examples/*
-   }
-}