summaryrefslogtreecommitdiff
path: root/app-i18n/uchardet
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2025-02-26 19:26:07 +0000
committerV3n3RiX <venerix@koprulu.sector>2025-02-26 19:26:07 +0000
commitacfd7c956a7b45da7af1452ec12e0b2d5e6ac65b (patch)
tree13151a7440c2560b01e3cf5bd56ad280482b88bf /app-i18n/uchardet
parent67dbd3ba144944fbf4b466be1b5fa0569b774e6f (diff)
gentoo auto-resync : 26:02:2025 - 19:26:07
Diffstat (limited to 'app-i18n/uchardet')
-rw-r--r--app-i18n/uchardet/Manifest2
-rw-r--r--app-i18n/uchardet/uchardet-0.0.7.ebuild36
2 files changed, 0 insertions, 38 deletions
diff --git a/app-i18n/uchardet/Manifest b/app-i18n/uchardet/Manifest
index c04ecfc53ffd..9f13d3d33a5d 100644
--- a/app-i18n/uchardet/Manifest
+++ b/app-i18n/uchardet/Manifest
@@ -1,5 +1,3 @@
-DIST uchardet-0.0.7.tar.xz 215492 BLAKE2B 1f8b171676bc6edf1f3493a4a370e32b7b956104ea0b12a03837d817c386d59aa512c3a107426aedb087987cf3a7b99c4b2df4a667ed685ff9959f6bc6b4506c SHA512 ddb7b63dd09c1d9acbe620d86217e583d9aa5340780ab4010ec9faa4fd331498859d5efa7829bf8847da89325accf8f7304b51d410210178fc1ffa6658064a6f
DIST uchardet-0.0.8.tar.xz 222648 BLAKE2B 8da78cba3c73afab0e94cac53b2b5c7832d11d58641ff221174d051a1610f8368c8bb536f2b0729c30ed0d13d7e2319d524597d1ca49fd1c6cefb3176aa76b9a SHA512 4a5dcc9ff021352f3b252e103ff1475cec62c974294b264ee9243f024633c3ae44be8c7733608624066113e635f8b156ecb08c8ff87c736d04b07641eb166382
-EBUILD uchardet-0.0.7.ebuild 977 BLAKE2B 1a4c6d9653eb9a44803fc99d9835aed286a2b8b3eddb197d3d2d2bb7e7c42e33e419b389c70c5e30db836899642a7df586e282ddb41b9c0420cd59d4a9f74182 SHA512 8d1fb1d6b900bebf6fdb9337749f31a89ad8da750ddf8de4257ac2546c63e506b4f791b687585a6ccbbfa1dfff97649ec20427dec7e90c155db7e28ef0fa0f09
EBUILD uchardet-0.0.8.ebuild 700 BLAKE2B f17a3fcbbe8e3964d25a0c3bff8683ab9bfe0f298783759048648484a375f105d21a5889ec98f946ca23ccb17f0050bbf37c14f04a451bc8dbcfccf2451a9f31 SHA512 49042768c692e40b74bee17cb552abec2c599fd5f446d57088599a35f113b7998719fd4b58202145c914bffcb2660e9c128f498e7a4ed3e9b802c9a0643a0858
MISC metadata.xml 340 BLAKE2B 2cc9c82822e337f2ace8d2e6e11e9dbcfaa665c053814fc8f1b5617085ec7fc8854f35b260d5bf246c5b1b25941fa34b7d6a0798717eb024a2cd229a2cf38145 SHA512 c89948e4e5771f89668cb7d5485bb13cb2ba3c49eddc7696fce1c598021c679757d8319fb7e086ed315db0c3ffc9163ff112450071a3cca4a318507f744f453a
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
-}