From d87262dd706fec50cd150aab3e93883b6337466d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 20:56:41 +0100 Subject: gentoo resync : 14.07.2018 --- app-shells/sash/Manifest | 4 --- app-shells/sash/files/sash-3.7-builtin.patch | 14 --------- app-shells/sash/metadata.xml | 5 ---- app-shells/sash/sash-3.8.ebuild | 45 ---------------------------- 4 files changed, 68 deletions(-) delete mode 100644 app-shells/sash/Manifest delete mode 100644 app-shells/sash/files/sash-3.7-builtin.patch delete mode 100644 app-shells/sash/metadata.xml delete mode 100644 app-shells/sash/sash-3.8.ebuild (limited to 'app-shells/sash') diff --git a/app-shells/sash/Manifest b/app-shells/sash/Manifest deleted file mode 100644 index 0edac8cb7926..000000000000 --- a/app-shells/sash/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX sash-3.7-builtin.patch 465 BLAKE2B 9665d97abbb0da68065dee7934f9604f59436af5522a45dad3331ec3540e86634c7e1415f18be2868297b3261f0fa829ba2e6329723c61746f18d913357b3165 SHA512 3c278b7a6570195d62aee65582edffa74e12a68cd684b7855256083b45c99a5a8f6506e2c59ab4edbd1ba094e7d512dfe7c90a79945f2be5261a5975d5b95d23 -DIST sash-3.8.tar.gz 53049 BLAKE2B 151e24e3f1f56231a12fa332505ad21586c97c7bb9cc3858e12ea4aa410d4e30da4af8201b4e24f0b960f2f142c964ac1996f3475ec9a104bdc52a5e1a55c010 SHA512 e544721dbb5d13d2184531a2caa4b90fb29fc360e2b80f64adb2433cbe4e5588171f3567bde03b520fbe7cbd0f3007e0e9c9c41cb16570709b03cedc2dfbe291 -EBUILD sash-3.8.ebuild 943 BLAKE2B 0b12e1b905a0e9105285105a94b756add018ce8f51a16c4297a5ea0a91c2293e47cdc7fc30d0e1102fd3f83b672254cced92bc8924d6d035100d9a5540b603ee SHA512 cea96aa1f7cbe08ec8a06ca668e0a09dc1348a09adf64b671b09d8f14aa4fb98a8c0b60e71e41ddfcf07a5b2cfd52122276adbf6605f94d60ac75fec81ce13e3 -MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84 diff --git a/app-shells/sash/files/sash-3.7-builtin.patch b/app-shells/sash/files/sash-3.7-builtin.patch deleted file mode 100644 index be943063efdf..000000000000 --- a/app-shells/sash/files/sash-3.7-builtin.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -Nrup sash-3.7.orig/sash.c sash-3.7/sash.c ---- sash-3.7.orig/sash.c 2004-01-14 00:08:03.000000000 -0500 -+++ sash-3.7/sash.c 2004-10-31 00:05:59.000000000 -0400 -@@ -739,6 +739,10 @@ tryBuiltIn(const char * cmd) - while (*endCmd && !isBlank(*endCmd)) - endCmd++; - -+ /* FIXME: command line will segv with -c 12000bytes -solar */ -+ if ((endCmd - cmd) >= sizeof(cmdName)) -+ return FALSE; -+ - memcpy(cmdName, cmd, endCmd - cmd); - - cmdName[endCmd - cmd] = '\0'; diff --git a/app-shells/sash/metadata.xml b/app-shells/sash/metadata.xml deleted file mode 100644 index 6f49eba8f496..000000000000 --- a/app-shells/sash/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/app-shells/sash/sash-3.8.ebuild b/app-shells/sash/sash-3.8.ebuild deleted file mode 100644 index 6c2ee580ce04..000000000000 --- a/app-shells/sash/sash-3.8.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs flag-o-matic - -DESCRIPTION="A small (static) UNIX Shell" -HOMEPAGE="http://www.canb.auug.org.au/~dbell/" -SRC_URI="http://www.canb.auug.org.au/~dbell/programs/${P}.tar.gz" - -LICENSE="freedist" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86" -IUSE="static" - -DEPEND=" - static? ( sys-libs/zlib[static-libs] ) - !static? ( >=sys-libs/zlib-1.2.3 )" -RDEPEND="!static? ( ${DEPEND} )" - -src_prepare() { - epatch "${FILESDIR}"/sash-3.7-builtin.patch - - sed \ - -e "s:-O3:${CFLAGS}:" \ - -e '/strip/d' \ - -i Makefile || die - sed \ - -e 's:linux/ext2_fs.h:ext2fs/ext2_fs.h:g' \ - -i cmd_chattr.c || die -} - -src_compile() { - use static && append-ldflags -static - - emake LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" -} - -src_install() { - into / - dobin sash - doman sash.1 - dodoc README -} -- cgit v1.2.3