commit:     f1b7f1b029c88b4632ef4fbda5e51baa122318b7
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  5 07:00:52 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Jun  5 07:00:52 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1b7f1b0

dev-util/debhelper: Old.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-util/debhelper/Manifest                |  1 -
 dev-util/debhelper/debhelper-10.2.5.ebuild | 73 ------------------------------
 2 files changed, 74 deletions(-)

diff --git a/dev-util/debhelper/Manifest b/dev-util/debhelper/Manifest
index 7584d5bbd91..9654381dcf7 100644
--- a/dev-util/debhelper/Manifest
+++ b/dev-util/debhelper/Manifest
@@ -1,4 +1,3 @@
-DIST debhelper_10.2.5.tar.xz 393740 SHA256 
c376f523ab9c1fcdfb371e92eb419519dcbaa6800d10d5e6ec80e583c9e4d054 SHA512 
67a6a548bd9482c8f25d429bd4bdbe7581326926c4b4d280b34c78a487fc8c0b6c26ed05aac3d2855b748a6542ecc167e37ea333e50e9bb1e3ee27a7d91c84d3
 WHIRLPOOL 
35f8352c7f1b75b57d71795acaacc3561f426bd5ac34830717da97dfb9afcbc0ec6bc07ca5ea0bf88b4cb5a806b7de0f867212bd7e1e79642be20d7556e72dda
 DIST debhelper_10.3.tar.xz 398764 SHA256 
d17c6d1d672113cc869b079015517034516238ec83c447e3be39dd9f10ebf32c SHA512 
795c53f966a43e5e9abdd28de121fba71bb07694b87b3dca7a0dd2b395655865397f5d4f0e6e2990638a1fcf7cad8cb75d2b30b803d5a9056fdb1e8604845591
 WHIRLPOOL 
9bc19c32b9ecbda16b610fcf0dea96835a9c159fe86c1b80cce7370ec17ce1d6e442b746033b2202c06e174369f73eee6d72c986a21cb398328093651068137b
 DIST debhelper_10.4.tar.xz 399940 SHA256 
c57f2813d84a5372e9aea6dca663cd4a04837adc0f2625114d172bcd1fa543b2 SHA512 
c329202d1e9c8506d50028d5b7559d22277330c1f7c776f04891bf45ea52aec7354e9fdcd0a6e8f2c3b47a13ebc244295fe856d91ca8c98a635b5b7577eaf785
 WHIRLPOOL 
e085453a54d511ec6b11f0dd5275a6f31e74b5230de6c7efb5fac9f432e6746429792b4d4c8b134dbbc9377ece659dbf0198a0cbe209056dc979eec4defa3280
 DIST debhelper_9.20150101.tar.gz 545089 SHA256 
fd8d81d71d1bb0ba4b58c517465551231dd60811b98c867e4344bc55ec6a45f2 SHA512 
62c85f751627cf0bdac392c6e8c5298995030962b7753047414e740b3767d722c209329c9f0c3c07c94e82bbb7250c163ce49b681e268a0decdbd19b72ea132a
 WHIRLPOOL 
31315544c3ee695a53ef2310ad69e59c68fb0b73399305b9fe57ceb7b01faab72995e01aed270300dd0fbaed2686a5b565a8a08cfc31c720c5baa2a6c475ac4e

diff --git a/dev-util/debhelper/debhelper-10.2.5.ebuild 
b/dev-util/debhelper/debhelper-10.2.5.ebuild
deleted file mode 100644
index b776562d411..00000000000
--- a/dev-util/debhelper/debhelper-10.2.5.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Collection of programs that can be used to automate common tasks 
in debian/rules"
-HOMEPAGE="http://packages.qa.debian.org/d/debhelper.html";
-SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux"
-IUSE="test"
-DH_LINGUAS=( de es fr )
-IUSE+=" ${DH_LINGUAS[@]/#/linguas_}"
-
-NLS_DEPEND=$(
-       printf "linguas_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LINGUAS[@]}
-)
-
-RDEPEND="
-       >=dev-lang/perl-5.10:=
-       >=app-arch/dpkg-1.17
-       dev-perl/TimeDate
-       virtual/perl-Getopt-Long
-"
-DEPEND="
-       ${RDEPEND}
-       ${NLS_DEPEND}
-       test? (
-               dev-perl/Test-Pod
-               sys-apps/fakeroot
-       )
-"
-
-S=${WORKDIR}/${PN}
-
-src_compile() {
-       tc-export CC
-
-       local LANGS="" USE_NLS=no lingua
-       for lingua in ${DH_LINGUAS[@]}; do
-               if use linguas_${lingua}; then
-                       LANGS+=" ${lingua}"
-                       USE_NLS=yes
-               fi
-       done
-
-       emake USE_NLS="${USE_NLS}" LANGS="${LANGS}" build
-}
-
-src_install() {
-       emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
-       dodoc doc/* debian/changelog
-       docinto examples
-       dodoc examples/*
-       local lingua
-       for manfile in *.1 *.7 ; do
-               for lingua in ${DH_LINGUAS[@]}; do
-                       case ${manfile} in
-                               *.${lingua}.?)
-                                       use linguas_${lingua} \
-                                               && cp ${manfile} 
"${T}"/${manfile/.${lingua}/} \
-                                               && doman -i18n=${lingua} 
"${T}"/${manfile/.${lingua}/}
-                                       ;;
-                               *)
-                                       doman ${manfile}
-                                       ;;
-                       esac
-               done
-       done
-}

Reply via email to