summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Fredric <kentnl@gentoo.org>2020-10-04 18:17:57 +1300
committerKent Fredric <kentnl@gentoo.org>2020-10-04 18:17:57 +1300
commit3841dd196aabd4e278ebeac584fdc485fc1b2962 (patch)
tree2d293ed8a09cc954bac144ef9cee4a10208eb6e3 /dev-perl/Clipboard
parentdev-perl/Class-XSAccessor: Cleanup old 1.190.0 (diff)
downloadgentoo-3841dd196aabd4e278ebeac584fdc485fc1b2962.tar.gz
gentoo-3841dd196aabd4e278ebeac584fdc485fc1b2962.tar.bz2
gentoo-3841dd196aabd4e278ebeac584fdc485fc1b2962.zip
dev-perl/Clipboard: Cleanup old 0.130.0-r3
Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl/Clipboard')
-rw-r--r--dev-perl/Clipboard/Clipboard-0.130.0-r3.ebuild26
-rw-r--r--dev-perl/Clipboard/Manifest1
-rw-r--r--dev-perl/Clipboard/files/Clipboard-0.130.0-insecure-tempfile.patch23
-rw-r--r--dev-perl/Clipboard/files/Clipboard-0.130.0-no-dot-inc.patch45
4 files changed, 0 insertions, 95 deletions
diff --git a/dev-perl/Clipboard/Clipboard-0.130.0-r3.ebuild b/dev-perl/Clipboard/Clipboard-0.130.0-r3.ebuild
deleted file mode 100644
index e66f219513ff..000000000000
--- a/dev-perl/Clipboard/Clipboard-0.130.0-r3.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=KING
-DIST_VERSION=0.13
-inherit perl-module virtualx
-
-DESCRIPTION="Copy and paste with any OS"
-
-SLOT="0"
-KEYWORDS="amd64 arm ppc ppc64 x86"
-IUSE=""
-
-# See bug 521890.
-PATCHES=(
- "${FILESDIR}"/"${P}"-insecure-tempfile.patch
- "${FILESDIR}"/"${P}"-no-dot-inc.patch
-)
-
-RDEPEND="x11-misc/xclip"
-
-src_test() {
- virtx perl-module_src_test
-}
diff --git a/dev-perl/Clipboard/Manifest b/dev-perl/Clipboard/Manifest
index 4e486ec79cb3..e3608ccb592d 100644
--- a/dev-perl/Clipboard/Manifest
+++ b/dev-perl/Clipboard/Manifest
@@ -1,2 +1 @@
-DIST Clipboard-0.13.tar.gz 21616 BLAKE2B 6e46f36fcfbcbd61ca35dddb85b16da49ee7b2d6f3e0cf6b15e90a5730b649d0bb960108c33d6896903570f3baaf5ce871511dfd3a1330625b9974190fb408bc SHA512 29792efabee3bdbd808c445714f344608f79799561029d3311b3c263e7bd52ddd8be6e17773f2e027b0d38afecd5d7057af3a129e053c1c01928cf2c5a12bd6b
DIST Clipboard-0.26.tar.gz 25159 BLAKE2B d4bb2c311afabf5e6e751b144d71f269aebdc743cab31b1064e1f77f563e109ee1a196ec0a483aa362d39e1549cc02ebfa01b82172dcd10a3a173278fa64ece3 SHA512 68427934e4c460492f0fca1ea45891070e6aa544b49896d383786918055889ab179bc9d926018f85d6f77e89f7882098750d55b8dc656047bc63ec07d1c515c1
diff --git a/dev-perl/Clipboard/files/Clipboard-0.130.0-insecure-tempfile.patch b/dev-perl/Clipboard/files/Clipboard-0.130.0-insecure-tempfile.patch
deleted file mode 100644
index 1fd452c61481..000000000000
--- a/dev-perl/Clipboard/files/Clipboard-0.130.0-insecure-tempfile.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Description: Fix insecure use of temporary files.
- This is CVE-2014-5509.
-Origin: vendor
-Bug: https://rt.cpan.org/Public/Bug/Display.html?id=98435
-Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=98435
-Author: gregor herrmann <gregoa@debian.org>
-Last-Update: 2016-08-13
-
---- a/scripts/clipedit
-+++ b/scripts/clipedit
-@@ -1,10 +1,11 @@
- #!/usr/bin/perl
- use strict;
- use Clipboard;
-+use File::Temp qw( tempfile );
-
- my $orig = Clipboard->paste;
-
--my $tmpfilename = "/tmp/clipedit$$";
-+my ($tmpfile, $tmpfilename) = tempfile();
- open my $tmpfile, ">$tmpfilename" or die "Failure to open $tmpfilename: $!";
- print $tmpfile $orig;
- close $tmpfile;
diff --git a/dev-perl/Clipboard/files/Clipboard-0.130.0-no-dot-inc.patch b/dev-perl/Clipboard/files/Clipboard-0.130.0-no-dot-inc.patch
deleted file mode 100644
index 1e9c31be70e9..000000000000
--- a/dev-perl/Clipboard/files/Clipboard-0.130.0-no-dot-inc.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 389b272f8696b86f594726544a8280e43cd2ffc6 Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Thu, 19 Oct 2017 10:21:36 +1300
-Subject: Fix Makefile.PL & Tests for '.' in @INC removal under Perl 5.26+
-
-Bug: https://bugs.gentoo.org/615138
-Bug: https://rt.cpan.org/Ticket/Display.html?id=121056
----
- Makefile.PL | 1 +
- t/drivers.t | 2 ++
- t/mock.t | 2 ++
- 3 files changed, 5 insertions(+)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index 08468ac..ab60784 100644
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -1,3 +1,4 @@
-+use lib '.';
- use inc::Module::Install;
- name('Clipboard');
- author('Ryan King <rking@panoptic.com>');
-diff --git a/t/drivers.t b/t/drivers.t
-index 1ae7014..de2478f 100644
---- a/t/drivers.t
-+++ b/t/drivers.t
-@@ -1,3 +1,5 @@
-+use File::Spec::Functions qw(rel2abs);
-+use lib rel2abs('.');
- use Test::Clipboard;
- use strict; # XXX make Test::Clipboard do this
- my %map = qw(
-diff --git a/t/mock.t b/t/mock.t
-index fbd76f0..2a50ebb 100644
---- a/t/mock.t
-+++ b/t/mock.t
-@@ -1,3 +1,5 @@
-+use File::Spec::Functions qw(rel2abs);
-+use lib rel2abs('.');
- use Test::Clipboard;
- use Test::MockClipboard;
- use strict; # XXX make Test::Clipboard do this
---
-2.14.2
-