app-misc/screenie: remove old 1.30.0-r1

Closes: https://bugs.gentoo.org/639406
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Joonas Niilola
2020-09-07 21:17:10 +03:00
parent 69eb27243a
commit b4c5aec979
3 changed files with 0 additions and 49 deletions

View File

@@ -1,2 +1 @@
DIST screenie-1.30.0.tar.bz2 10068 BLAKE2B 49bbb8f81141c2b0707aab04e8a43f27e5ccd5c4241cf0e0e7ee3a7bd7944dc61c11f3a9ac5ae3040fecae1947a4271561e9b164b64512043916e3b39f25901c SHA512 8068421aaa461df32bccbe72e23474b20ef3f761e78a3e520c1f9f19a383d9ad9fd0377e2cdf1c4f023ca570b172a40ebff63d3cb538b96d1e1706fe83d03fdd
DIST screenie-20120406.tar.gz 3437 BLAKE2B 354410d41e1aa9c6bcef3951f26aafcabf8e5af5ba4abd69627e62575127c1190abc78db4ee72552b02ad5cbcde0b6c910dfbb9191f2fd8444e57dff36d16701 SHA512 73e9c9cf53792c51785d45319f65559f5d8f1c97f8637d3c3262384eb1a3835f3ba380e4c9284858e163e8d2021938c2ef3ab50f2854d5f932e96847b9a4c153

View File

@@ -1,26 +0,0 @@
Patch for bug 250476 (CVE-2008-5371), courtesy of nion@debian.org.
diff -u screenie-1.30.0/screenie screenie-1.30.0/screenie
--- screenie-1.30.0/screenie
+++ screenie-1.30.0/screenie
@@ -19,7 +19,7 @@
# Foundation Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
#global settings
-TMPF=/tmp/.screenie.$$
+TMPF=$(mktemp -t skreenie.XXXXXX || exit 1)
ACTIVE_SCREENS="screen \-ls | awk '/tached/ { print \$1}' | sort"
i=0
e=0
@@ -59,9 +59,9 @@
esac
#cleanup temp files
-if test -f /tmp/.screenie*
+if test -f $TMPF
then
- rm /tmp/.screenie* >/dev/null 2>&1
+ rm $TMPF >/dev/null 2>&1
fi
while :

View File

@@ -1,22 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="screen(1) frontend that is designed to be a session handler"
HOMEPAGE="https://sourceforge.net/projects/screenie/"
SRC_URI="http://pubwww.hsz-t.ch/~mgloor/data/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm hppa ~ia64 sparc x86"
IUSE=""
RDEPEND="app-misc/screen"
PATCHES=( "${FILESDIR}/${PN}-CVE-2008-5371.patch" )
src_install() {
dobin screenie
default
}