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 B949D138334 for ; Wed, 28 Nov 2018 14:23:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70CF3E085D; Wed, 28 Nov 2018 14:23:28 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4143DE085D for ; Wed, 28 Nov 2018 14:23:27 +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 79CA7335C58 for ; Wed, 28 Nov 2018 14:23:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23C8C445 for ; Wed, 28 Nov 2018 14:23:23 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1543414960.dceabe7b6a9fe6e7ab771c399780c8229413409c.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/createrepo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/createrepo/createrepo-0.10.4.ebuild X-VCS-Directories: app-arch/createrepo/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: dceabe7b6a9fe6e7ab771c399780c8229413409c X-VCS-Branch: master Date: Wed, 28 Nov 2018 14:23: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: e4b997e3-04b4-4995-b445-6abfd2059286 X-Archives-Hash: c2415729b0b898e2180c1e60c9128081 commit: dceabe7b6a9fe6e7ab771c399780c8229413409c Author: Alon Bar-Lev gentoo org> AuthorDate: Wed Nov 28 14:22:40 2018 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Wed Nov 28 14:22:40 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dceabe7b app-arch/createrepo: remove old Bug: https://bugs.gentoo.org/show_bug.cgi?id=643310 Signed-off-by: Alon Bar-Lev gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-arch/createrepo/createrepo-0.10.4.ebuild | 50 ---------------------------- 1 file changed, 50 deletions(-) diff --git a/app-arch/createrepo/createrepo-0.10.4.ebuild b/app-arch/createrepo/createrepo-0.10.4.ebuild deleted file mode 100644 index 5d4bb0877b1..00000000000 --- a/app-arch/createrepo/createrepo-0.10.4.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE='xml' - -inherit python-single-r1 bash-completion-r1 - -DESCRIPTION="Creates a common rpm-metadata repository" -HOMEPAGE="http://createrepo.baseurl.org/" -SRC_URI="http://createrepo.baseurl.org/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=">=dev-python/urlgrabber-2.9.0[${PYTHON_USEDEP}] - >=app-arch/rpm-4.1.1[python,${PYTHON_USEDEP}] - dev-libs/libxml2[python,${PYTHON_USEDEP}] - >=app-arch/deltarpm-3.6_pre20110223[python,${PYTHON_USEDEP}] - dev-python/pyliblzma[${PYTHON_USEDEP}] - >=sys-apps/yum-3.4.3 - ${PYTHON_DEPS}" -DEPEND="${PYTHON_DEPS}" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -PATCHES=( - "${FILESDIR}/${PN}-0.10.3-ten-changelog-limit.patch" -) - -pkg_setup() { - python-single-r1_pkg_setup - python_export PYTHON_SITEDIR -} - -src_install() { - emake install \ - DESTDIR="${ED}" \ - PYTHON=true \ - compdir="$(get_bashcompdir)" \ - PKGDIR="${PYTHON_SITEDIR}/${PN}" - einstalldocs - python_fix_shebang "${ED}" - python_optimize - python_optimize "${ED}/usr/share/createrepo" -}