diff options
author | Aaron Bauman <bman@gentoo.org> | 2017-01-18 17:45:23 +0900 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2017-01-18 17:47:22 +0900 |
commit | 4ed52b0b08ffe472c6007c230f2e72666cf414c8 (patch) | |
tree | fcfa54fae0b219a6c1c1ad6da51134f307fb0b0f /dev-util/xdelta | |
parent | sys-libs/libomp: marked ~{amd64,x86}-linux (diff) | |
download | gentoo-4ed52b0b08ffe472c6007c230f2e72666cf414c8.tar.gz gentoo-4ed52b0b08ffe472c6007c230f2e72666cf414c8.tar.bz2 gentoo-4ed52b0b08ffe472c6007c230f2e72666cf414c8.zip |
dev-util/xdelta: security cleanup wrt bug #574408
Diffstat (limited to 'dev-util/xdelta')
-rw-r--r-- | dev-util/xdelta/xdelta-3.0.6.ebuild | 54 |
1 files changed, 0 insertions, 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 599fb4b4b243..000000000000 --- 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 -} |