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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4458F139694 for ; Fri, 21 Apr 2017 17:05:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2B0FE0BE5; Fri, 21 Apr 2017 17:05:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ABE88E0BE5 for ; Fri, 21 Apr 2017 17:05:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C5D333BEFC for ; Fri, 21 Apr 2017 17:05:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45109743A for ; Fri, 21 Apr 2017 17:05:04 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1492794279.e3442ec5441b570c1acb40f64d8c267a5e639584.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/po4a/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/po4a/po4a-0.45-r4.ebuild X-VCS-Directories: app-text/po4a/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: e3442ec5441b570c1acb40f64d8c267a5e639584 X-VCS-Branch: master Date: Fri, 21 Apr 2017 17:05:04 +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-Archives-Salt: be872d59-cfd6-4739-8890-319073aeaed0 X-Archives-Hash: 41c10c7ff2f273884a655c47192ba9b6 commit: e3442ec5441b570c1acb40f64d8c267a5e639584 Author: Andreas K. Huettel gentoo org> AuthorDate: Fri Apr 21 17:04:39 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Fri Apr 21 17:04:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3442ec5 app-text/po4a: Remove old/broken Package-Manager: Portage-2.3.5, Repoman-2.3.2 app-text/po4a/po4a-0.45-r4.ebuild | 60 --------------------------------------- 1 file changed, 60 deletions(-) diff --git a/app-text/po4a/po4a-0.45-r4.ebuild b/app-text/po4a/po4a-0.45-r4.ebuild deleted file mode 100644 index d4af9f3af17..00000000000 --- a/app-text/po4a/po4a-0.45-r4.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PLOCALES="af ca cs da de eo es et eu fr hr id it ja kn ko nb nl pl pt_BR pt ru sl sv uk vi zh_CN zh_HK" -PLOCALES_BACKUP="en" - -# Needed because this package also installs to vendor_perl -GENTOO_DEPEND_ON_PERL=noslotop -inherit perl-module l10n - -DESCRIPTION="Tools for helping translation of documentation" -HOMEPAGE="http://po4a.alioth.debian.org" -SRC_URI="mirror://debian/pool/main/p/po4a/${PN}_${PV}.orig.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" -IUSE="test" - -RDEPEND="dev-perl/SGMLSpm - >=sys-devel/gettext-0.13 - app-text/openjade - dev-libs/libxslt - dev-perl/Locale-gettext - dev-perl/TermReadKey - dev-perl/Text-WrapI18N" -DEPEND="${RDEPEND} - >=dev-perl/Module-Build-0.380.0 - app-text/docbook-xsl-stylesheets - app-text/docbook-xml-dtd:4.1.2 - test? ( app-text/docbook-sgml-dtd - app-text/docbook-sgml-utils - virtual/tex-base )" - -# Running tests in parallel fails -DIST_TEST="do" - -PATCHES=( - "${FILESDIR}/${P}-port-our-regex-to-perl-5.22.patch" -) - -src_prepare() { - # Check against locale files in ${S}/pod/bin for mismatches - # with languages listed in PLOCALES - local locales_path="$S/po/bin" - l10n_find_plocales_changes "$locales_path" "" ".po" - - # Get rid of disabled locales - my_get_disabled_locales() { - PERL_RM_FILES=( "${PERL_RM_FILES[@]}" "po/bin/${1}.po" "po/pod/${1}.po" ) - } - - l10n_for_each_disabled_locale_do my_get_disabled_locales - - einfo "Your LINGUAS lists the following languages: $LINGUAS" - - perl-module_src_prepare -}