commit:     4ad90290a71b521cc3a81da0afdca37f7edbe4d5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  5 10:36:26 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul  5 10:36:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ad90290

app-i18n/opencc: remove stale live ebuild

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-i18n/opencc/opencc-9999.ebuild | 69 --------------------------------------
 1 file changed, 69 deletions(-)

diff --git a/app-i18n/opencc/opencc-9999.ebuild 
b/app-i18n/opencc/opencc-9999.ebuild
deleted file mode 100644
index 0841243ff549..000000000000
--- a/app-i18n/opencc/opencc-9999.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 2010-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit cmake python-any-r1
-
-if [[ "${PV}" == "9999" ]]; then
-       inherit git-r3
-
-       EGIT_REPO_URI="https://github.com/BYVoid/OpenCC";
-fi
-
-DESCRIPTION="Library for conversion between Traditional and Simplified Chinese 
characters"
-HOMEPAGE="https://github.com/BYVoid/OpenCC";
-if [[ "${PV}" == "9999" ]]; then
-       SRC_URI=""
-else
-       SRC_URI="https://github.com/BYVoid/OpenCC/archive/ver.${PV}.tar.gz -> 
${P}.tar.gz"
-fi
-
-LICENSE="Apache-2.0"
-SLOT="0/1.1"
-KEYWORDS=""
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="${PYTHON_DEPS}
-       doc? ( app-text/doxygen )"
-DEPEND="dev-cpp/tclap
-       dev-libs/darts
-       dev-libs/marisa:0=
-       dev-libs/rapidjson
-       test? (
-               dev-cpp/gtest
-               !hppa? ( !sparc? ( dev-cpp/benchmark ) )
-       )"
-RDEPEND="dev-libs/marisa:0="
-
-if [[ "${PV}" != "9999" ]]; then
-       S="${WORKDIR}/OpenCC-ver.${PV}"
-fi
-
-DOCS=(AUTHORS NEWS.md README.md)
-
-src_prepare() {
-       rm -r deps || die
-
-       cmake_src_prepare
-
-       sed -e "s:\${DIR_SHARE_OPENCC}/doc:share/doc/${PF}:" -i 
doc/CMakeLists.txt || die
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -DBUILD_DOCUMENTATION=$(usex doc ON OFF)
-               -DENABLE_BENCHMARK=$(if use test && has_version -d 
dev-cpp/benchmark; then echo ON; else echo OFF; fi)
-               -DENABLE_GTEST=$(usex test ON OFF)
-               -DUSE_SYSTEM_DARTS=ON
-               -DUSE_SYSTEM_GOOGLE_BENCHMARK=ON
-               -DUSE_SYSTEM_GTEST=ON
-               -DUSE_SYSTEM_MARISA=ON
-               -DUSE_SYSTEM_RAPIDJSON=ON
-               -DUSE_SYSTEM_TCLAP=ON
-       )
-
-       cmake_src_configure
-}

Reply via email to