From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9F3A1158094 for ; Tue, 21 Jun 2022 09:41:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30A92E08FB; Tue, 21 Jun 2022 09:41:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D020BE08FB for ; Tue, 21 Jun 2022 09:41:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9EA8234153E for ; Tue, 21 Jun 2022 09:41:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2FA2F510 for ; Tue, 21 Jun 2022 09:41:23 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1655804442.daffe519a5988d38c38f7c9cb2668c7992758c9a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/miscfiles/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/miscfiles/miscfiles-1.5-r3.ebuild X-VCS-Directories: sys-apps/miscfiles/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: daffe519a5988d38c38f7c9cb2668c7992758c9a X-VCS-Branch: master Date: Tue, 21 Jun 2022 09:41:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 67080ee6-054d-4103-aaee-3934eda9bd66 X-Archives-Hash: f015ac4b036f1cee0d39297b66c8c004 commit: daffe519a5988d38c38f7c9cb2668c7992758c9a Author: David Seifert gentoo org> AuthorDate: Tue Jun 21 09:40:42 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Jun 21 09:40:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daffe519 sys-apps/miscfiles: drop 1.5-r3 Signed-off-by: David Seifert gentoo.org> sys-apps/miscfiles/miscfiles-1.5-r3.ebuild | 62 ------------------------------ 1 file changed, 62 deletions(-) diff --git a/sys-apps/miscfiles/miscfiles-1.5-r3.ebuild b/sys-apps/miscfiles/miscfiles-1.5-r3.ebuild deleted file mode 100644 index 8237ad438342..000000000000 --- a/sys-apps/miscfiles/miscfiles-1.5-r3.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -UNI_PV="10.0.0" -DESCRIPTION="Miscellaneous files" -HOMEPAGE="https://savannah.gnu.org/projects/miscfiles/" -# https://www.unicode.org/Public/${UNI_PV}/ucd/UnicodeData.txt -SRC_URI="mirror://gnu/miscfiles/${P}.tar.gz - https://dev.gentoo.org/~whissi/dist/${PN}/UnicodeData-${UNI_PV}.txt.xz" - -LICENSE="GPL-2 unicode" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" -IUSE="minimal" - -src_prepare() { - default - - mv "${WORKDIR}"/UnicodeData-${UNI_PV}.txt unicode || die -} - -src_configure() { - econf --datadir="${EPREFIX}"/usr/share/misc -} - -src_install() { - emake install DESTDIR="${D}" - dodoc NEWS ORIGIN README dict-README - - # not sure if this is still needed ... - dodir /usr/share/dict - cd "${ED%/}"/usr/share/misc || die - mv $(awk '$1=="dictfiles"{$1="";$2="";print}' "${S}"/Makefile) ../dict/ || die - cd ../dict || die - ln -s web2 words || die - ln -s web2a extra.words || die - - if use minimal ; then - pushd "${ED%/}"/usr/share/dict || die - rm -f words extra.words || die - gzip -9 * || die - ln -s web2.gz words || die - ln -s web2a.gz extra.words || die - ln -s connectives{.gz,} || die - ln -s propernames{.gz,} || die - popd || die - rm -r "${ED%/}"/usr/share/misc || die - fi -} - -pkg_postinst() { - if [[ ${ROOT} == "/" ]] && type -P create-cracklib-dict >/dev/null ; then - ebegin "Regenerating cracklib dictionary" - create-cracklib-dict "${EPREFIX}"/usr/share/dict/* > /dev/null - eend $? - fi - - # pkg_postinst isn't supposed to fail - return 0 -}