commit: db1122d153f36ff34fb9faad243e2d29d4260a80
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 26 03:38:27 2025 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Feb 26 08:45:28 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1122d1
app-i18n/uchardet: drop 0.0.7
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
app-i18n/uchardet/Manifest | 1 -
app-i18n/uchardet/uchardet-0.0.7.ebuild | 36 ---------------------------------
2 files changed, 37 deletions(-)
diff --git a/app-i18n/uchardet/Manifest b/app-i18n/uchardet/Manifest
index c7bda550dcec..654f54d145d6 100644
--- a/app-i18n/uchardet/Manifest
+++ b/app-i18n/uchardet/Manifest
@@ -1,2 +1 @@
-DIST uchardet-0.0.7.tar.xz 215492 BLAKE2B
1f8b171676bc6edf1f3493a4a370e32b7b956104ea0b12a03837d817c386d59aa512c3a107426aedb087987cf3a7b99c4b2df4a667ed685ff9959f6bc6b4506c
SHA512
ddb7b63dd09c1d9acbe620d86217e583d9aa5340780ab4010ec9faa4fd331498859d5efa7829bf8847da89325accf8f7304b51d410210178fc1ffa6658064a6f
DIST uchardet-0.0.8.tar.xz 222648 BLAKE2B
8da78cba3c73afab0e94cac53b2b5c7832d11d58641ff221174d051a1610f8368c8bb536f2b0729c30ed0d13d7e2319d524597d1ca49fd1c6cefb3176aa76b9a
SHA512
4a5dcc9ff021352f3b252e103ff1475cec62c974294b264ee9243f024633c3ae44be8c7733608624066113e635f8b156ecb08c8ff87c736d04b07641eb166382
diff --git a/app-i18n/uchardet/uchardet-0.0.7.ebuild
b/app-i18n/uchardet/uchardet-0.0.7.ebuild
deleted file mode 100644
index ddd5b82addcd..000000000000
--- a/app-i18n/uchardet/uchardet-0.0.7.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-if [ "${PV}" = 9999 ]
-then
- inherit git-r3
-
EGIT_REPO_URI="https://anongit.freedesktop.org/git/uchardet/uchardet.git"
-else
-
SRC_URI="https://www.freedesktop.org/software/uchardet/releases/${P}.tar.xz"
-fi
-
-DESCRIPTION="An encoding detector library"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/uchardet/"
-
-LICENSE="|| ( MPL-1.1 GPL-2+ LGPL-2.1+ )"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="cpu_flags_x86_sse2 static-libs test"
-RESTRICT="!test? ( test )"
-
-src_prepare() {
- cmake_src_prepare
- use test || cmake_comment_add_subdirectory test
-}
-
-src_configure() {
- local mycmakeargs=(
- -DTARGET_ARCHITECTURE="${ARCH}"
- -DBUILD_STATIC=$(usex static-libs)
- -DCHECK_SSE2=$(usex cpu_flags_x86_sse2)
- )
- cmake_src_configure
-}