* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2022-11-24 18:14 Conrad Kostecki
0 siblings, 0 replies; 23+ messages in thread
From: Conrad Kostecki @ 2022-11-24 18:14 UTC (permalink / raw
To: gentoo-commits
commit: f8d4ce8592569da1afe4ca4e31db72c977474c5b
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Fri Nov 18 15:24:00 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Nov 24 18:14:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8d4ce85
dev-cpp/clucene: use HTTPS
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild | 2 +-
dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild
index 6988382b9711..f91d27d74715 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild
@@ -9,7 +9,7 @@ MY_P="${MY_PN}"-"${PV}"
inherit cmake
DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++"
-HOMEPAGE="http://clucene.sourceforge.net/"
+HOMEPAGE="https://clucene.sourceforge.net"
SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
index a76cc3514023..e0b3929aa8fd 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
@@ -9,7 +9,7 @@ MY_P="${MY_PN}"-"${PV}"
inherit cmake
DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++"
-HOMEPAGE="http://clucene.sourceforge.net/"
+HOMEPAGE="https://clucene.sourceforge.net"
SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2023-09-04 21:24 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2023-09-04 21:24 UTC (permalink / raw
To: gentoo-commits
commit: 415502a80ff42ea0abb75f50c6254073195a1b60
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 4 18:44:57 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Sep 4 21:24:27 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=415502a8
dev-cpp/clucene: update EAPI 7 -> 8
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild | 16 +++++-----------
1 file changed, 5 insertions(+), 11 deletions(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild
index dee944a2e476..b72a2580a52c 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild
@@ -1,32 +1,26 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
MY_PN="${PN}"-core
MY_P="${MY_PN}"-"${PV}"
-
inherit cmake
DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++"
HOMEPAGE="https://clucene.sourceforge.net"
SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
IUSE="debug doc static-libs"
-
-BDEPEND="
- doc? ( >=app-doc/doxygen-1.4.2 )
-"
-
RESTRICT="test"
-DOCS=(AUTHORS ChangeLog README README.PACKAGE REQUESTS)
+BDEPEND="doc? ( >=app-doc/doxygen-1.4.2 )"
-S="${WORKDIR}/${MY_PN}-${PV}"
+DOCS=(AUTHORS ChangeLog README README.PACKAGE REQUESTS)
PATCHES=(
"${FILESDIR}/${P}-fix-clang.patch"
@@ -57,7 +51,7 @@ src_configure() {
-DENABLE_PACKAGING=OFF
-DDISABLE_MULTITHREADING=OFF
-DBUILD_CONTRIBS_LIB=ON
- "-DLIB_DESTINATION=${EPREFIX}/usr/$(get_libdir)"
+ -DLIB_DESTINATION="${EPREFIX}/usr/$(get_libdir)"
-DENABLE_DEBUG=$(usex debug)
-DENABLE_CLDOCS=$(usex doc)
-DBUILD_STATIC_LIBRARIES=$(usex static-libs)
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2023-06-28 21:17 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2023-06-28 21:17 UTC (permalink / raw
To: gentoo-commits
commit: c46730b74f012088a81f8810c6096a53414caa6a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 28 21:15:33 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 28 21:15:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c46730b7
dev-cpp/clucene: crank copyright
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild
index 656750220d5b..dee944a2e476 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2022-12-20 21:07 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2022-12-20 21:07 UTC (permalink / raw
To: gentoo-commits
commit: e3acccec4760e223a5461d184ac18acb02f6f8a6
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 20 21:02:44 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Dec 20 21:07:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3acccec
dev-cpp/clucene: drop 2.3.3.4-r7
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild | 65 -------------------------------
1 file changed, 65 deletions(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild
deleted file mode 100644
index f91d27d74715..000000000000
--- a/dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN}"-core
-MY_P="${MY_PN}"-"${PV}"
-
-inherit cmake
-
-DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++"
-HOMEPAGE="https://clucene.sourceforge.net"
-SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
-
-LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
-SLOT="1"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
-IUSE="debug doc static-libs"
-
-BDEPEND="
- doc? ( >=app-doc/doxygen-1.4.2 )
-"
-
-RESTRICT="test"
-
-DOCS=(AUTHORS ChangeLog README README.PACKAGE REQUESTS)
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-PATCHES=(
- "${FILESDIR}"/clucene-2.3.3.4-fix-clang.patch
- "${FILESDIR}/${P}-contrib.patch"
- "${FILESDIR}/${P}-pkgconfig.patch"
- "${FILESDIR}/${P}-gcc6.patch"
- "${FILESDIR}/${P}-gmtime.patch"
- "${FILESDIR}/${P}-musl-pthread.patch"
-)
-
-src_prepare() {
- cmake_src_prepare
-
- # patch out installing bundled boost headers, we build against system one
- sed -i \
- -e '/ADD_SUBDIRECTORY (src\/ext)/d' \
- CMakeLists.txt || die
- rm -rf src/ext || die
-}
-
-src_configure() {
- # Disabled threads: see upstream bug
- # https://sourceforge.net/p/clucene/bugs/197/
- local mycmakeargs=(
- -DENABLE_ASCII_MODE=OFF
- -DENABLE_PACKAGING=OFF
- -DDISABLE_MULTITHREADING=OFF
- -DBUILD_CONTRIBS_LIB=ON
- "-DLIB_DESTINATION=${EPREFIX}/usr/$(get_libdir)"
- -DENABLE_DEBUG=$(usex debug)
- -DENABLE_CLDOCS=$(usex doc)
- -DBUILD_STATIC_LIBRARIES=$(usex static-libs)
- )
-
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2022-12-18 12:46 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2022-12-18 12:46 UTC (permalink / raw
To: gentoo-commits
commit: 6fe5bc3ca76a3a75052b5a085e3f18690bd429ba
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 12:46:10 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 12:46:10 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe5bc3c
dev-cpp/clucene: Stabilize 2.3.3.4-r8 sparc, #886687
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
index 376d66e94b7a..622913b962fe 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2022-12-18 12:26 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2022-12-18 12:26 UTC (permalink / raw
To: gentoo-commits
commit: 1f76f853dd7dccf9ab1289d1529b05ea2216ae69
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 12:25:49 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 12:25:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f76f853
dev-cpp/clucene: Stabilize 2.3.3.4-r8 ppc, #886687
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
index 1c348233f0d6..376d66e94b7a 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2022-12-18 12:00 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2022-12-18 12:00 UTC (permalink / raw
To: gentoo-commits
commit: 3c90151635540bbb3633ce7ae7d144a4feb37836
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 12:00:26 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 12:00:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c901516
dev-cpp/clucene: Stabilize 2.3.3.4-r8 ppc64, #886687
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
index e099b3c107ae..1c348233f0d6 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2022-12-18 11:41 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2022-12-18 11:41 UTC (permalink / raw
To: gentoo-commits
commit: 81e0f0a169d8ab521e09d25532a59e6fb0ea423a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 11:41:06 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 11:41:06 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81e0f0a1
dev-cpp/clucene: Stabilize 2.3.3.4-r8 arm, #886687
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
index 04f994221440..e099b3c107ae 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2022-12-18 11:30 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2022-12-18 11:30 UTC (permalink / raw
To: gentoo-commits
commit: c0a5fcd679ac7d03c5a6d64f973f51d6bb9a4cab
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 11:30:41 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 11:30:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a5fcd6
dev-cpp/clucene: Stabilize 2.3.3.4-r8 arm64, #886687
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
index e0b3929aa8fd..04f994221440 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2022-07-14 5:34 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2022-07-14 5:34 UTC (permalink / raw
To: gentoo-commits
commit: 0372ef7872544ba2d39e3aec30843681186c4183
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 14 05:34:02 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 14 05:34:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0372ef78
dev-cpp/clucene: revbump for header fix
I'd missed this was in an instlled header.
Bug: https://bugs.gentoo.org/855071
Fixes: 05c237dd1d5c5e2c71a9c9600de914fc46d78890
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/clucene/{clucene-2.3.3.4-r6.ebuild => clucene-2.3.3.4-r7.ebuild} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild
similarity index 100%
rename from dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
rename to dev-cpp/clucene/clucene-2.3.3.4-r7.ebuild
^ permalink raw reply [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2021-07-23 18:28 Marek Szuba
0 siblings, 0 replies; 23+ messages in thread
From: Marek Szuba @ 2021-07-23 18:28 UTC (permalink / raw
To: gentoo-commits
commit: 82267badf89ed8c091316edf25e7ccaa34784f9b
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 23 17:15:49 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Jul 23 18:28:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82267bad
dev-cpp/clucene: keyword 2.3.3.4-r6 for ~riscv, EAPI 6 -> 7
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index 45755a6557d..89e1b97f672 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
@@ -1,12 +1,12 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
MY_PN="${PN}"-core
MY_P="${MY_PN}"-"${PV}"
-inherit cmake-utils multilib
+inherit cmake multilib
DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++"
HOMEPAGE="http://clucene.sourceforge.net/"
@@ -14,14 +14,13 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
-DEPEND="
+BDEPEND="
doc? ( >=app-doc/doxygen-1.4.2 )
"
-RDEPEND=""
RESTRICT="test"
@@ -38,7 +37,7 @@ PATCHES=(
)
src_prepare() {
- cmake-utils_src_prepare
+ cmake_src_prepare
# patch out installing bundled boost headers, we build against system one
sed -i \
@@ -61,5 +60,5 @@ src_configure() {
-DBUILD_STATIC_LIBRARIES=$(usex static-libs)
)
- cmake-utils_src_configure
+ cmake_src_configure
}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2021-06-14 14:50 Joonas Niilola
0 siblings, 0 replies; 23+ messages in thread
From: Joonas Niilola @ 2021-06-14 14:50 UTC (permalink / raw
To: gentoo-commits
commit: 73689f2a05dda2853d24839f0380dc9974d62d24
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 14 14:43:59 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jun 14 14:49:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73689f2a
dev-cpp/clucene: fix build on clang
- tested on clang and gcc against few random rdeps.
Closes: https://bugs.gentoo.org/729680
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index c52e641b1f8..45755a6557d 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.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
@@ -30,6 +30,7 @@ DOCS=(AUTHORS ChangeLog README README.PACKAGE REQUESTS)
S="${WORKDIR}/${MY_PN}-${PV}"
PATCHES=(
+ "${FILESDIR}"/clucene-2.3.3.4-fix-clang.patch
"${FILESDIR}/${P}-contrib.patch"
"${FILESDIR}/${P}-pkgconfig.patch"
"${FILESDIR}/${P}-gcc6.patch"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2019-07-30 20:26 Aaron Bauman
0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2019-07-30 20:26 UTC (permalink / raw
To: gentoo-commits
commit: 2d67bcd86889b9c6321a24c630b8051efb433e67
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 30 20:02:20 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue Jul 30 20:26:26 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d67bcd8
dev-cpp/clucene: arm64 stable
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="arm64"
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index 4e0f4ab5707..1b2214fb3f3 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2018-08-11 19:00 Georgy Yakovlev
0 siblings, 0 replies; 23+ messages in thread
From: Georgy Yakovlev @ 2018-08-11 19:00 UTC (permalink / raw
To: gentoo-commits
commit: adc97aa829ec48bb9faf4088b398b8114796b3d5
Author: Francesco Turco <fturco <AT> fastmail <DOT> fm>
AuthorDate: Sat Aug 11 16:56:39 2018 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Sat Aug 11 19:00:27 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc97aa8
dev-cpp/clucene: update link to upstream bug report
Closes: https://github.com/gentoo/gentoo/pull/9539
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index f636e9b1127..4e0f4ab5707 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.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
@@ -47,7 +47,7 @@ src_prepare() {
src_configure() {
# Disabled threads: see upstream bug
- # https://sourceforge.net/tracker/?func=detail&aid=3237301&group_id=80013&atid=558446
+ # https://sourceforge.net/p/clucene/bugs/197/
local mycmakeargs=(
-DENABLE_ASCII_MODE=OFF
-DENABLE_PACKAGING=OFF
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2017-06-11 4:00 Michael Palimaka
0 siblings, 0 replies; 23+ messages in thread
From: Michael Palimaka @ 2017-06-11 4:00 UTC (permalink / raw
To: gentoo-commits
commit: 3e449b647bf886430d9c1ac18e3a0c2c31d3c402
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 11 03:56:46 2017 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 04:00:20 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e449b64
dev-cpp/clucene: remove 2.3.3.4-r5
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild | 62 -------------------------------
1 file changed, 62 deletions(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild
deleted file mode 100644
index 330cc2ac5ec..00000000000
--- a/dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MY_PN="${PN}"-core
-MY_P="${MY_PN}"-"${PV}"
-
-inherit base cmake-utils multilib
-
-DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++"
-HOMEPAGE="http://clucene.sourceforge.net/"
-SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
-
-LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
-SLOT="1"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
-
-IUSE="debug doc static-libs"
-
-DEPEND="
- doc? ( >=app-doc/doxygen-1.4.2 )
-"
-RDEPEND=""
-
-RESTRICT="test"
-
-DOCS=(AUTHORS ChangeLog README README.PACKAGE REQUESTS)
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-PATCHES=(
- "${FILESDIR}/${P}-contrib.patch"
- "${FILESDIR}/${P}-pkgconfig.patch"
-)
-
-src_prepare() {
- base_src_prepare
-
- # patch out installing bundled boost headers, we build against system one
- sed -i \
- -e '/ADD_SUBDIRECTORY (src\/ext)/d' \
- CMakeLists.txt || die
- rm -rf src/ext || die
-}
-
-src_configure() {
- # Disabled threads: see upstream bug
- # https://sourceforge.net/tracker/?func=detail&aid=3237301&group_id=80013&atid=558446
- local mycmakeargs=(
- -DENABLE_ASCII_MODE=OFF
- -DENABLE_PACKAGING=OFF
- -DDISABLE_MULTITHREADING=OFF
- -DBUILD_CONTRIBS_LIB=ON
- "-DLIB_DESTINATION=${EPREFIX}/usr/$(get_libdir)"
- $(cmake-utils_use_enable debug)
- $(cmake-utils_use_enable doc CLDOCS)
- $(cmake-utils_use_build static-libs STATIC_LIBRARIES)
- )
-
- cmake-utils_src_configure
-}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2017-04-30 8:35 Jeroen Roovers
0 siblings, 0 replies; 23+ messages in thread
From: Jeroen Roovers @ 2017-04-30 8:35 UTC (permalink / raw
To: gentoo-commits
commit: 2def82acc8c6637f53a8fe5692cc0c368642fc59
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 30 08:33:13 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Apr 30 08:33:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2def82ac
dev-cpp/clucene: Stable for HPPA (bug #613676).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --ignore-arches
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index 667e269652c..d34a1dd9d2a 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2017-04-04 21:26 Michael Weber
0 siblings, 0 replies; 23+ messages in thread
From: Michael Weber @ 2017-04-04 21:26 UTC (permalink / raw
To: gentoo-commits
commit: 9f05acd6db3e9bc9a0bf91844e58dd0b2b05bf94
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 4 19:56:19 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Tue Apr 4 21:26:41 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f05acd6
dev-cpp/clucene: ppc stable (bug 613676).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index c33fbbea4e0..2abd6edf6a7 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2017-04-04 19:28 Tobias Klausmann
0 siblings, 0 replies; 23+ messages in thread
From: Tobias Klausmann @ 2017-04-04 19:28 UTC (permalink / raw
To: gentoo-commits
commit: 4dc271dbaf766a4b2ab48bba9dc0df0e52f05396
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 4 19:27:49 2017 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Apr 4 19:27:49 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dc271db
dev-cpp/clucene-2.3.3.4-r6: add alpha keyword
Gentoo-Bug: 613676
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index fcb146733c6..c33fbbea4e0 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2017-03-28 10:54 Michael Weber
0 siblings, 0 replies; 23+ messages in thread
From: Michael Weber @ 2017-03-28 10:54 UTC (permalink / raw
To: gentoo-commits
commit: 0b94cec3fa00e8c890b0fc68dd6dab60dc597d34
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 10:54:29 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 10:54:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b94cec3
dev-cpp/clucene: ppc64 stable (bug 613676).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index 5916b55e703..65fe033afd6 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2017-03-28 10:49 Michael Weber
0 siblings, 0 replies; 23+ messages in thread
From: Michael Weber @ 2017-03-28 10:49 UTC (permalink / raw
To: gentoo-commits
commit: eeb4cbf0edbbb89c17987d484c3445006d25be3c
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 10:49:07 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 10:49:17 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeb4cbf0
dev-cpp/clucene: arm stable (bug 613676).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index 28fc6a6647f..5916b55e703 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2017-03-25 14:43 Agostino Sarubbo
0 siblings, 0 replies; 23+ messages in thread
From: Agostino Sarubbo @ 2017-03-25 14:43 UTC (permalink / raw
To: gentoo-commits
commit: 73dbb89a83dafd6a810c05e2510059cba0e56bb7
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 25 14:42:21 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Mar 25 14:42:21 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73dbb89a
dev-cpp/clucene: amd64 stable wrt bug #613676
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index bcd59344e41..28fc6a6647f 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.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
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug doc static-libs"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2016-07-27 19:04 Michael Palimaka
0 siblings, 0 replies; 23+ messages in thread
From: Michael Palimaka @ 2016-07-27 19:04 UTC (permalink / raw
To: gentoo-commits
commit: 244a1dfa92cd1291870f336a550e0f0aca531877
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 27 19:04:31 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Jul 27 19:04:52 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=244a1dfa
dev-cpp/clucene: drop kde project
Package-Manager: portage-2.3.0
dev-cpp/clucene/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/dev-cpp/clucene/metadata.xml b/dev-cpp/clucene/metadata.xml
index efad8e0..780c9e8 100644
--- a/dev-cpp/clucene/metadata.xml
+++ b/dev-cpp/clucene/metadata.xml
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="project">
- <email>kde@gentoo.org</email>
- <name>Gentoo KDE Project</name>
- </maintainer>
<upstream>
<remote-id type="sourceforge">clucene</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/
@ 2016-06-28 18:41 Johannes Huber
0 siblings, 0 replies; 23+ messages in thread
From: Johannes Huber @ 2016-06-28 18:41 UTC (permalink / raw
To: gentoo-commits
commit: 075327a2d1482dea606d8984c97dfea554128823
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 28 18:32:09 2016 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue Jun 28 18:33:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=075327a2
dev-cpp/clucene: Cleanup ancient blocker
Package-Manager: portage-2.3.0
dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild | 4 ++--
dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild
index ce7f2ba..54ae053 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -22,7 +22,7 @@ IUSE="debug doc static-libs"
DEPEND="
doc? ( >=app-doc/doxygen-1.4.2 )
"
-RDEPEND="!<app-misc/strigi-0.7.5-r3"
+RDEPEND=""
RESTRICT="test"
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
index 625ea05..a3f92dd 100644
--- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
+++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild
@@ -22,7 +22,7 @@ IUSE="debug doc static-libs"
DEPEND="
doc? ( >=app-doc/doxygen-1.4.2 )
"
-RDEPEND="!<app-misc/strigi-0.7.5-r3"
+RDEPEND=""
RESTRICT="test"
^ permalink raw reply related [flat|nested] 23+ messages in thread
end of thread, other threads:[~2023-09-04 21:24 UTC | newest]
Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-24 18:14 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/clucene/ Conrad Kostecki
-- strict thread matches above, loose matches on Subject: below --
2023-09-04 21:24 Andreas Sturmlechner
2023-06-28 21:17 Sam James
2022-12-20 21:07 Andreas Sturmlechner
2022-12-18 12:46 Sam James
2022-12-18 12:26 Sam James
2022-12-18 12:00 Sam James
2022-12-18 11:41 Sam James
2022-12-18 11:30 Sam James
2022-07-14 5:34 Sam James
2021-07-23 18:28 Marek Szuba
2021-06-14 14:50 Joonas Niilola
2019-07-30 20:26 Aaron Bauman
2018-08-11 19:00 Georgy Yakovlev
2017-06-11 4:00 Michael Palimaka
2017-04-30 8:35 Jeroen Roovers
2017-04-04 21:26 Michael Weber
2017-04-04 19:28 Tobias Klausmann
2017-03-28 10:54 Michael Weber
2017-03-28 10:49 Michael Weber
2017-03-25 14:43 Agostino Sarubbo
2016-07-27 19:04 Michael Palimaka
2016-06-28 18:41 Johannes Huber
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox