commit:     7903aaa2ea9ade159aa30e6d0b35f61612f00f10
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 18 09:47:18 2021 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sun Apr 18 09:47:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7903aaa2

app-text/vilistextum: drop superseeded version

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>

 app-text/vilistextum/Manifest                      |  1 -
 .../vilistextum-2.8.0.20191023-r1.ebuild           | 81 ----------------------
 2 files changed, 82 deletions(-)

diff --git a/app-text/vilistextum/Manifest b/app-text/vilistextum/Manifest
index 73b4114bac3..fe3cc0534af 100644
--- a/app-text/vilistextum/Manifest
+++ b/app-text/vilistextum/Manifest
@@ -1,3 +1,2 @@
 DIST vilistextum-2.6.9.tar.bz2 147743 BLAKE2B 
1cf6f187cb277271ddd9946984afb4d59336ea0cd446e62df3593070ccc63b3510a107e2b7e7b8dc757c63e4f5caf3790c7d998b6be325f4d22d2a6b9fea3432
 SHA512 
ce76a4061b766e4544d1a86986333314a3b6959439ba6995a2977c10b01b0142c524d4b215c3272a1dcfcc4f5b6fda03210de95d65cedecfc6a1c940cedf487d
-DIST vilistextum-2.8.0.20191023.tar.gz 219395 BLAKE2B 
5e3962b4b18b9e6e3896f26e04a63394b3ed58473862f264a3255641b5d13474e12529acadcff3d2f71eb5a41ec7b11a1367f3da15e473551e87e554472f6727
 SHA512 
99023b4801159047e1433dc5a887e6164192f7aa25bdc79594e717f047f83177612e5120d55cbbc22f3ad4e225bc229a0b186f7fc337c6081ff27ac781422f4e
 DIST vilistextum-2.8.0.20200411.tar.gz 219791 BLAKE2B 
95b86d17e8dbf29b520aa48c88eb8c9e8abb01a234848ed55bdad0a63a7c0ec8ca9ae7c437fe7f84bbf7f4dad74fc8437a9e3b53493552e9e01b8029b10ef18a
 SHA512 
40a219ebe7bebd61548a3bad794690cf091b67b70e8e6c44548a0c1b9f61077b141a035335e7128b191a8501103707f5324b00326a407e29ec0fee383c4d0917

diff --git a/app-text/vilistextum/vilistextum-2.8.0.20191023-r1.ebuild 
b/app-text/vilistextum/vilistextum-2.8.0.20191023-r1.ebuild
deleted file mode 100644
index 1458461c0bd..00000000000
--- a/app-text/vilistextum/vilistextum-2.8.0.20191023-r1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-GITID="f299bb5e5f661c345c4b85a3e8de9ad8615ad17a"
-DESCRIPTION="HTML to ASCII converter programmed to handle incorrect html"
-HOMEPAGE="https://bhaak.net/vilistextum/";
-SRC_URI="https://github.com/bhaak/vilistextum/archive/${GITID}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/${PN}-${GITID}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x64-solaris ~x86-solaris"
-IUSE="unicode"
-
-DEPEND="virtual/libiconv"
-RDEPEND=""
-
-src_prepare() {
-       eapply "${FILESDIR}/${PN}-2.8.0-gentoo.patch"
-       eapply "${FILESDIR}/${PN}-2.8.0-prefix.patch"
-       eapply "${FILESDIR}/${PN}-2.8.0-blockquote.patch"
-       eapply "${FILESDIR}/${PN}-2.8.0-towlower.patch"
-       eapply "${FILESDIR}/${PN}-2.8.0-list-alignment.patch"
-
-       eapply_user
-       eautoreconf
-
-       # wcscasecmp needs extensions, which aren't enabled
-       export ac_cv_func_wcscasecmp=no
-}
-
-get_locale() {
-       locale -a | grep -i "$1\.utf.*8\$"
-}
-
-find_locale() {
-       local l t
-
-       # we basically prefer to find en_US.UTF-8, but it may not always be
-       # available, in which case it is better not to hardcode to use it
-       l=$(get_locale en_US)
-       if [[ -z ${l} ]] ; then
-               for t in "en_GB" "en_.*" ".*" ; do
-                       l=$(get_locale ${t})
-                       if [[ -n ${l} ]] ; then
-                               l=${l%%$'\n'*}
-                               break;
-                       fi
-               done
-       fi
-       [[ -z ${l} ]] && die "Failed to find a unicode locale"
-       echo "${l}"
-}
-
-src_configure() {
-       # need hardwired locale simply because locale -a | grep -i utf-8 | head 
-n1
-       # isn't always returning the most sensical (and working) locale
-       econf \
-               $(use_enable unicode multibyte) \
-               $(use_with unicode unicode-locale $(find_locale))
-}
-
-src_test() {
-       if $(locale -a | grep -iq "en_US\.utf.*8"); then
-               emake -j1 check
-       else
-               ewarn "If you like to run the test,"
-               ewarn "please make sure en_US.UTF-8 is installed."
-               die "en_US.UTF-8 locale is missing"
-       fi
-}
-
-src_install() {
-       default
-       doman doc/${PN}.1
-       dodoc doc/changes.xhtml doc/htmlmail.xhtml
-}

Reply via email to