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 3F4E8139085 for ; Wed, 18 Jan 2017 08:47:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FB8721C028; Wed, 18 Jan 2017 08:47:43 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3E47721C028 for ; Wed, 18 Jan 2017 08:47:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2154C341134 for ; Wed, 18 Jan 2017 08:47:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81F932799 for ; Wed, 18 Jan 2017 08:47:40 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1484729242.4ed52b0b08ffe472c6007c230f2e72666cf414c8.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/xdelta/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/xdelta/xdelta-3.0.6.ebuild X-VCS-Directories: dev-util/xdelta/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 4ed52b0b08ffe472c6007c230f2e72666cf414c8 X-VCS-Branch: master Date: Wed, 18 Jan 2017 08:47:40 +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: 2408eddc-8aa2-4fa1-8464-3d1630fb3bec X-Archives-Hash: 0c50cd3e8f8eaba4e71b23ac5405df67 commit: 4ed52b0b08ffe472c6007c230f2e72666cf414c8 Author: Aaron Bauman gentoo org> AuthorDate: Wed Jan 18 08:45:23 2017 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Jan 18 08:47:22 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ed52b0b dev-util/xdelta: security cleanup wrt bug #574408 dev-util/xdelta/xdelta-3.0.6.ebuild | 54 ------------------------------------- 1 file changed, 54 deletions(-) diff --git a/dev-util/xdelta/xdelta-3.0.6.ebuild b/dev-util/xdelta/xdelta-3.0.6.ebuild deleted file mode 100644 index 599fb4b..00000000 --- a/dev-util/xdelta/xdelta-3.0.6.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) - -inherit autotools python-single-r1 - -MY_P=${PN}${PV%.*.*}-${PV} - -DESCRIPTION="a binary diff and differential compression tools. VCDIFF (RFC 3284) delta compression" -HOMEPAGE="http://xdelta.org/" -SRC_URI="https://${PN}.googlecode.com/files/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="3" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86" -IUSE="examples test" - -RDEPEND="app-arch/xz-utils" -DEPEND="${RDEPEND} - test? ( || ( dev-lang/python:2.7 dev-lang/python:2.6 ) )" - -S=${WORKDIR}/${MY_P} - -pkg_setup() { - if use test; then - python-single-r1_pkg_setup - fi -} - -src_prepare() { - >py-compile - - # huh - sed -i -e '/python/s:2.6:2:' testing/xdelta3-regtest.py || die - sed -i -e '/python/s:2.7:2:' testing/xdelta3-test.py || die - - # only build tests when required - sed -i -e '/xdelta3regtest/s:noinst_P:check_P:' Makefile.am || die - eautoreconf -} - -src_test() { - default - ./xdelta3regtest || die -} - -src_install() { - emake DESTDIR="${D}" install - dodoc draft-korn-vcdiff.txt README - use examples && dodoc -r examples -}