summaryrefslogtreecommitdiff
path: root/app-text/liblangtag
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-01-07 12:53:51 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-01-07 12:53:51 +0000
commit02814fd00146251691678aa18d9937665c677086 (patch)
tree5408cf868c128b241de5bab0f807058065bea7c8 /app-text/liblangtag
parent79713e75fcc5c5cb55d1b1beac008683b57c8805 (diff)
gentoo auto-resync : 07:01:2024 - 12:53:51
Diffstat (limited to 'app-text/liblangtag')
-rw-r--r--app-text/liblangtag/Manifest2
-rw-r--r--app-text/liblangtag/liblangtag-0.6.4.ebuild55
2 files changed, 0 insertions, 57 deletions
diff --git a/app-text/liblangtag/Manifest b/app-text/liblangtag/Manifest
index 39dbe8d8a854..a38a4ba86533 100644
--- a/app-text/liblangtag/Manifest
+++ b/app-text/liblangtag/Manifest
@@ -1,5 +1,3 @@
-DIST liblangtag-0.6.4.tar.bz2 764946 BLAKE2B 1d94f341359f880acb8a0a0526da625cb39d85b33665b861c0fbd94064228a3d5328f3a3b7d62bffd29c6ff8161fa499b6565010ba3065c90f87b5902969e81f SHA512 6c6dd3e6b0fc8d6f10cafd74112cbaf2a2342a88a908ad2f7ae759b3f5fb0cf6d788504c1de072e9ef019f2f5a284daeb2d2393036b6b402c5bc87f32b55f271
DIST liblangtag-0.6.7.tar.bz2 757041 BLAKE2B 456fe453624dbdeb5a1cad621b4f1a28a9f8b3bc4b33a89efb22dfc006d36f8b634db4b085cac665d517c5bf56d750c81d0d201679480f1a0c180f0ab1dc3c49 SHA512 3628728f46865507d8794c1e7286c6ca04fc49f905594ab76db7bd2c8d8f9fac1e33693314d56bca6fdd8f99b8d207e6e6d2f751474832ceb60a4cdbf10fed68
-EBUILD liblangtag-0.6.4.ebuild 1212 BLAKE2B 58564877ed3282481b754e3c78a038240a8419ded43fa5712069af1e175e11f2af147ec6751608bd452ab74cdf7ea2374c8b1cd07d5f8c21f41874b66f8569ef SHA512 08bc3693a8545a584f902a7d003b2cabb5d1df466b5d48df9d157b36e9436bb5f7faa9cceda523743f3de4184c305e486ead5c5bb80c9df8f673f0ec9e175298
EBUILD liblangtag-0.6.7.ebuild 1212 BLAKE2B 816443f875b4947c053498d2e7a780069bcbbc24d0b267c240dd7c23410de2b2fd38c509c2251f79028e70a4052f6b0f3314820734b0736a4ae03be666d4ca48 SHA512 5841ac0e7699797c505da984a3f1c3f28a96bc9a0bb880ff6af315d426b22130d9ebdb3057784fd9829541a44c705c41fd281eddcc1b7fe903085a832ab6a104
MISC metadata.xml 350 BLAKE2B f19f3d513d8042e89c3df800d2002cd445b1eed875dd8ffe31318645f10a300f2010cf8f5a2f4daccd38d875f340e1e48bd2b35e67892596416e492053fef8ed SHA512 8abd30360e1b305313f36724f3e3d638122c3aeb37dfb27f46940b155855a7515a8fe1a0b2128de7b0649d477c9d74fd44a02f7e7535ff103700dac7448dfe85
diff --git a/app-text/liblangtag/liblangtag-0.6.4.ebuild b/app-text/liblangtag/liblangtag-0.6.4.ebuild
deleted file mode 100644
index 68bf99b2752b..000000000000
--- a/app-text/liblangtag/liblangtag-0.6.4.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit xdg-utils
-
-DESCRIPTION="Interface library to access tags for identifying languages"
-HOMEPAGE="https://bitbucket.org/tagoh/liblangtag/wiki/Home"
-SRC_URI="https://bitbucket.org/tagoh/${PN}/downloads/${P}.tar.bz2"
-
-LICENSE="|| ( LGPL-3 MPL-2.0 )"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86"
-IUSE="debug doc introspection test"
-
-# Upstream expect liblangtag to be installed when one runs tests...
-RESTRICT="test"
-
-RDEPEND="
- dev-libs/libxml2
- introspection? ( dev-libs/gobject-introspection )
-"
-DEPEND="${RDEPEND}
- test? ( dev-libs/check )
-"
-BDEPEND="
- sys-devel/gettext
- sys-devel/libtool
- doc? ( dev-util/gtk-doc )
- introspection? ( dev-libs/gobject-introspection-common )
-"
-
-src_prepare() {
- default
- xdg_environment_reset
- if [[ -d docs/html ]]; then
- rm -r docs/html || die "Failed to remove existing gtk-doc"
- fi
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable debug)
- $(use_enable doc gtk-doc)
- $(use_enable introspection)
- $(use_enable test)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -type f -delete || die
-}