diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 16:14:26 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 16:14:26 +0000 |
commit | 2bd33d9d4562d5467bf71c469186fdbf4b0f8a75 (patch) | |
tree | bf59d6a1160487c1ee7ae454433ecf84e1aab106 /dev-vcs/svk | |
parent | Remove old (diff) | |
download | gentoo-2-2bd33d9d4562d5467bf71c469186fdbf4b0f8a75.tar.gz gentoo-2-2bd33d9d4562d5467bf71c469186fdbf4b0f8a75.tar.bz2 gentoo-2-2bd33d9d4562d5467bf71c469186fdbf4b0f8a75.zip |
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-vcs/svk')
-rw-r--r-- | dev-vcs/svk/ChangeLog | 5 | ||||
-rw-r--r-- | dev-vcs/svk/svk-1.08.ebuild | 78 |
2 files changed, 4 insertions, 79 deletions
diff --git a/dev-vcs/svk/ChangeLog b/dev-vcs/svk/ChangeLog index bf281e11bf4e..b3796eeefb59 100644 --- a/dev-vcs/svk/ChangeLog +++ b/dev-vcs/svk/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-vcs/svk # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/svk/ChangeLog,v 1.6 2012/04/12 17:49:55 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/svk/ChangeLog,v 1.7 2012/05/10 16:14:26 ago Exp $ + + 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -svk-1.08.ebuild: + Remove old 12 Apr 2012; Torsten Veller <tove@gentoo.org> metadata.xml: Fix cpan distribution in metadata.xml diff --git a/dev-vcs/svk/svk-1.08.ebuild b/dev-vcs/svk/svk-1.08.ebuild deleted file mode 100644 index 57702d19597e..000000000000 --- a/dev-vcs/svk/svk-1.08.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/svk/svk-1.08.ebuild,v 1.4 2011/12/04 17:58:18 armin76 Exp $ - -inherit eutils perl-module bash-completion - -MY_P=${P/svk/SVK} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="A decentralized version control system" -SRC_URI="mirror://cpan/authors/id/C/CL/CLKAO/${MY_P}.tar.gz" -HOMEPAGE="http://www.elixus.org/" - -SLOT="0" -LICENSE="|| ( Artistic GPL-2 )" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="crypt nls pager patch" - -DEPEND=" - >=dev-lang/perl-5.8.7 - >=dev-vcs/subversion-1.0.7 - dev-perl/Algorithm-Annotate - dev-perl/Algorithm-Diff - >=dev-perl/yaml-0.38 - dev-perl/Regexp-Shellish - >=dev-perl/Data-Hierarchy-0.21 - >=virtual/perl-File-Temp-0.14 - dev-perl/Clone - virtual/perl-Pod-Escapes - virtual/perl-Pod-Simple - >=dev-perl/PerlIO-via-dynamic-0.11 - >=dev-perl/PerlIO-via-symlink-0.02 - dev-perl/IO-Digest - >=dev-perl/SVN-Simple-0.27 - >=dev-perl/TimeDate-1.16 - dev-perl/TermReadKey - dev-perl/File-Type - dev-perl/URI - >=dev-perl/PerlIO-eol-0.13 - >=dev-perl/Class-Autouse-1.15 - >=virtual/perl-Getopt-Long-2.34 - >=virtual/perl-File-Spec-3.18 - >=dev-perl/SVN-Mirror-0.66 - nls? ( - >=dev-perl/locale-maketext-lexicon-0.42 - >=virtual/perl-Locale-Maketext-Simple-0.12 - ) - pager? ( dev-perl/IO-Pager ) - >=dev-perl/SVN-Mirror-0.66 - patch? ( - virtual/perl-IO-Compress - dev-perl/FreezeThaw - ) - crypt? ( app-crypt/gnupg )" -RDEPEND="${DEPEND}" - -pkg_setup() { - if ! perl -MSVN::Core < /dev/null 2> /dev/null; then - eerror "SVN::Core missing or outdated. Please emerge \ - dev-vcs/subversion ith the perl USE flag." - die "Need Subversion compiled with Perl bindings" - fi -} - -src_unpack() { - unpack ${A} - epatch "${FILESDIR}"/svk-1.08-xxdiff.patch -} - -src_install() { - perl-module_src_install - if use bash-completion; then - dobin contrib/svk-completion.pl - echo "complete -C ${DESTTREE}/bin/svk-completion.pl -o default svk" \ - > svk-completion - dobashcompletion svk-completion - fi -} |