summaryrefslogtreecommitdiff
path: root/dev-vcs/colorsvn
diff options
context:
space:
mode:
Diffstat (limited to 'dev-vcs/colorsvn')
-rw-r--r--dev-vcs/colorsvn/Manifest4
-rw-r--r--dev-vcs/colorsvn/colorsvn-0.3.3.ebuild45
-rw-r--r--dev-vcs/colorsvn/files/use-open2-not-open3.patch24
-rw-r--r--dev-vcs/colorsvn/metadata.xml9
4 files changed, 0 insertions, 82 deletions
diff --git a/dev-vcs/colorsvn/Manifest b/dev-vcs/colorsvn/Manifest
deleted file mode 100644
index 5b159a230961..000000000000
--- a/dev-vcs/colorsvn/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX use-open2-not-open3.patch 760 BLAKE2B 5e4649cea3124b01b7eefceb1a1e8a7635b323c16cce32f78b81352525d9d0122e180a9aab5188bce13fafa39375be5a77e22b5eb3fc3656493f310ce14835f8 SHA512 556511ce5cf34c7568352a7e18b3d4113cb6d3d52445db31eb2cddc599e3cbbb47c28e39151350e10e957a5a94651445484c9c9cb91af355f540103edeac774c
-DIST colorsvn-0.3.3.tar.gz 107961 BLAKE2B da46181d9eb54709ae2e62aee4e341f1403788b3a460b04bccf628fe0be767b4343f4295d4eeb1062fb9e580a3aa7f5731027d7f5578342b63414f2e03083a75 SHA512 c9aa6eb3a14f156d8f6139ad708782846c561385cb174339443014e83c80b62f5c8d7b9937830ebb5e5e8606517cb2f3f1866a3611c93512b302936b6fe55ffb
-EBUILD colorsvn-0.3.3.ebuild 1072 BLAKE2B 164daad80a2a77052d5c5506cd2d4a837e66e66b3525a3fcc8dcd2d06b0b21c2b4116df9f9a83b248c928c8a87e5768f19a596d5dac9b1e3eb2ced2a16364279 SHA512 c440a699f02dd8a6159da42237694ca5db2e32a9e461e76e02b044a9c8ac0e23f512c9a413d27c9057dd0994f2bdfffc8b263215c35332f32cff8a693f4ef848
-MISC metadata.xml 356 BLAKE2B e32df53e6e6ecc54fb557dd8d4b709e7260d2ec76ef534ae5786d429fde334f3f12a6dc0c79e8964bda85c388b34b709313c06e8698e7b315d39d2e236073be3 SHA512 7e7254ec3c760144a7f0415edd8aa2e31e1aafca19ad0087ddf51ac7ecc83b992edce3ae705b71ca70189aa9e3327ddee0610fb3766d79fb56f41ad90d13415e
diff --git a/dev-vcs/colorsvn/colorsvn-0.3.3.ebuild b/dev-vcs/colorsvn/colorsvn-0.3.3.ebuild
deleted file mode 100644
index 9ae642f733ff..000000000000
--- a/dev-vcs/colorsvn/colorsvn-0.3.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Subversion output colorizer"
-HOMEPAGE="http://colorsvn.tigris.org"
-SRC_URI="${HOMEPAGE}/files/documents/4414/49311/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x64-macos ~x86-macos"
-IUSE=""
-
-RDEPEND="dev-lang/perl
- dev-vcs/subversion"
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}/use-open2-not-open3.patch" )
-
-src_prepare() {
- default
- # Fix confdir location for Prefix, #435434
- sed -i \
- -e '/^confdir/d' \
- -e 's/$(confdir)/$(sysconfdir)/g' \
- Makefile.in || die
-}
-
-src_compile() {
- # bug 335134
- emake -j1 || die
-}
-
-pkg_postinst() {
- elog
- elog "The default settings are stored in /etc/colorsvnrc."
- elog "They can be locally overridden by ~/.colorsvnrc."
- elog "An alias to colorsvn was installed for the svn command."
- elog "In order to immediately activate it do:"
- elog "\tsource /etc/profile"
- elog "NOTE: If you don't see colors,"
- elog "append the output of 'echo \$TERM' to 'colortty' in your colorsvnrc."
- elog
-}
diff --git a/dev-vcs/colorsvn/files/use-open2-not-open3.patch b/dev-vcs/colorsvn/files/use-open2-not-open3.patch
deleted file mode 100644
index cb295dc15878..000000000000
--- a/dev-vcs/colorsvn/files/use-open2-not-open3.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-This is idl0r's fix for bug 326279, rerolled for v0.3.3.
-
-diff --git a/colorsvn-original b/colorsvn-original
-index 4236121..4edf3c8 100644
---- a/colorsvn-original
-+++ b/colorsvn-original
-@@ -56,7 +56,7 @@
- # Foundation, Inc., 51 Franklin Steet, Fifth Floor, Boston, MA 02110-1301, USA.
-
- use Term::ANSIColor;
--use IPC::Open3;
-+use IPC::Open2;
-
- use strict;
- use warnings;
-@@ -332,7 +332,7 @@ if (! -t STDOUT || $commit == 1 || !$colortty{$terminal} || !$commresolved )
-
- # Keep the pid of the svn process so we can get its return
- # code and use that as our return code.
--my $svn_pid = open3('<&STDIN', \*SVNOUT, \*SVNOUT, $svnPath, @ARGV);
-+my $svn_pid = open2(\*SVNOUT, '<&STDIN', $svnPath, @ARGV);
- my $svnName = $svnPath;
- $svnName =~ s,.*/(.*)$,$1,;
-
diff --git a/dev-vcs/colorsvn/metadata.xml b/dev-vcs/colorsvn/metadata.xml
deleted file mode 100644
index e28e6ef2bc2d..000000000000
--- a/dev-vcs/colorsvn/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription lang="en">
- colorsvn is the Subversion output colorizer. Colorsvn was extracted from
- kde-sdk and was extended with build process and configuration.
- </longdescription>
-</pkgmetadata>