summaryrefslogtreecommitdiff
path: root/dev-util/bsdiff/bsdiff-4.3-r3.ebuild
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2020-03-19 19:31:41 +0100
committerThomas Deutschmann <whissi@gentoo.org>2020-03-19 19:31:53 +0100
commita90ac2818a5f4f7cb1358f8d679c523801d0e7b2 (patch)
tree851b9fbf297750fe4c896f776a366bf4bcc4cab3 /dev-util/bsdiff/bsdiff-4.3-r3.ebuild
parent615d03cebeba3ba6c1d22dcacdfe71b1bb00c8ba (diff)
downloadgentoo-a90ac2818a5f4f7cb1358f8d679c523801d0e7b2.tar.gz
gentoo-a90ac2818a5f4f7cb1358f8d679c523801d0e7b2.tar.bz2
gentoo-a90ac2818a5f4f7cb1358f8d679c523801d0e7b2.zip
dev-util/bsdiff: security cleanup (bug #701848)
Bug: https://bugs.gentoo.org/701848 Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-util/bsdiff/bsdiff-4.3-r3.ebuild')
-rw-r--r--dev-util/bsdiff/bsdiff-4.3-r3.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-util/bsdiff/bsdiff-4.3-r3.ebuild b/dev-util/bsdiff/bsdiff-4.3-r3.ebuild
deleted file mode 100644
index 947b0c2e8c01..000000000000
--- a/dev-util/bsdiff/bsdiff-4.3-r3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="bsdiff: Binary Differencer using a suffix alg"
-HOMEPAGE="http://www.daemonology.net/bsdiff/"
-SRC_URI="http://www.daemonology.net/bsdiff/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD-2"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
-DEPEND="app-arch/bzip2"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch_user
-}
-
-src_compile() {
- doecho() {
- echo "$@"
- "$@"
- }
- append-lfs-flags
- doecho $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -o bsdiff bsdiff.c -lbz2 || die "failed compiling bsdiff"
- doecho $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -o bspatch bspatch.c -lbz2 || die "failed compiling bspatch"
-}
-
-src_install() {
- dobin bs{diff,patch}
- doman bs{diff,patch}.1
-}