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 64463158043 for ; Sun, 14 Apr 2024 06:11:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 948FDE2A2B; Sun, 14 Apr 2024 06:11:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 76C26E2A2B for ; Sun, 14 Apr 2024 06:11:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9F31B34331F for ; Sun, 14 Apr 2024 06:11:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 043B41620 for ; Sun, 14 Apr 2024 06:11:52 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1713075040.937e03546bd168779c059ff1fe8d2c0f098ee10a.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/nkf/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/nkf/nkf-2.1.5.ebuild X-VCS-Directories: app-i18n/nkf/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 937e03546bd168779c059ff1fe8d2c0f098ee10a X-VCS-Branch: master Date: Sun, 14 Apr 2024 06:11:52 +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: d0d5d159-a1a6-4b09-b8c3-b760cc015690 X-Archives-Hash: 572063553fc95f45bdce9988c67eb92c commit: 937e03546bd168779c059ff1fe8d2c0f098ee10a Author: Akinori Hattori gentoo org> AuthorDate: Sun Apr 14 05:48:56 2024 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sun Apr 14 06:10:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=937e0354 app-i18n/nkf: drop old Signed-off-by: Akinori Hattori gentoo.org> app-i18n/nkf/nkf-2.1.5.ebuild | 112 ------------------------------------------ 1 file changed, 112 deletions(-) diff --git a/app-i18n/nkf/nkf-2.1.5.ebuild b/app-i18n/nkf/nkf-2.1.5.ebuild deleted file mode 100644 index a437dd676a61..000000000000 --- a/app-i18n/nkf/nkf-2.1.5.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -DISTUTILS_OPTIONAL="1" - -inherit distutils-r1 perl-module toolchain-funcs vcs-snapshot - -PY_P="python-${PN}-0.2.0_p20191121" -PY_COMMIT="c2c6724714b66f295137c8818dae4c09fc09e0a3" - -DESCRIPTION="Network Kanji code conversion Filter with UTF-8/16 support" -HOMEPAGE="https://osdn.net/projects/nkf/" -SRC_URI="mirror://sourceforge.jp/${PN}/70406/${P}.tar.gz - python? ( https://github.com/fumiyas/python-${PN}/archive/${PY_COMMIT}.tar.gz -> ${PY_P}.tar.gz )" - -LICENSE="ZLIB python? ( BSD )" -SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86" -IUSE="perl python l10n_ja" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND="python? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND}" -BDEPEND="python? ( - ${PYTHON_DEPS} - dev-python/setuptools[${PYTHON_USEDEP}] - )" - -src_unpack() { - use python && vcs-snapshot_src_unpack || default -} - -src_prepare() { - sed -i \ - -e "/^CFLAGS/{ s/-g -O2//; s/=/+=/; }" \ - -e "/ -o ${PN}/s/\(-o \)/\$(LDFLAGS) \1/" \ - Makefile - if use python; then - mv "${WORKDIR}"/${PY_P} NKF.python || die - eapply "${FILESDIR}"/${PN}-python.patch - cd NKF.python || die - distutils-r1_src_prepare - cd - >/dev/null || die - fi - - default -} - -src_configure() { - default - if use perl; then - cd NKF.mod || die - perl-module_src_configure - cd - >/dev/null || die - fi - if use python; then - cd NKF.python || die - distutils-r1_src_configure - cd - >/dev/null || die - fi -} - -src_compile() { - emake CC="$(tc-getCC)" - if use perl; then - cd NKF.mod || die - perl-module_src_compile - cd - >/dev/null || die - fi - if use python; then - cd NKF.python || die - distutils-r1_src_compile - cd - >/dev/null || die - fi -} - -src_test() { - default - if use perl; then - cd NKF.mod || die - perl-module_src_test - cd - >/dev/null || die - fi -} - -src_install() { - dobin ${PN} - doman ${PN}.1 - - if use l10n_ja; then - iconv -f ISO-2022-JP-3 -t UTF-8 ${PN}.1j > ${PN}.ja.1 || die - doman ${PN}.ja.1 - fi - dodoc ${PN}.doc - - if use perl; then - cd NKF.mod || die - docinto perl - perl-module_src_install - cd - >/dev/null || die - fi - if use python; then - cd NKF.python || die - docinto python - DOCS= distutils-r1_src_install - dodoc CHANGES README.md - cd - >/dev/null || die - fi -}