summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2013-07-08 18:46:51 +0000
committerHans de Graaff <graaff@gentoo.org>2013-07-08 18:46:51 +0000
commit77dc6e6f04695002102c23a58154732fa4c17093 (patch)
tree357b3d3a591e1437952d86c46c3d391976318cee /dev-ruby/bluecloth
parentCleanup. (diff)
downloadgentoo-2-77dc6e6f04695002102c23a58154732fa4c17093.tar.gz
gentoo-2-77dc6e6f04695002102c23a58154732fa4c17093.tar.bz2
gentoo-2-77dc6e6f04695002102c23a58154732fa4c17093.zip
Cleanup.
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/bluecloth')
-rw-r--r--dev-ruby/bluecloth/ChangeLog5
-rw-r--r--dev-ruby/bluecloth/bluecloth-2.0.7.ebuild54
2 files changed, 4 insertions, 55 deletions
diff --git a/dev-ruby/bluecloth/ChangeLog b/dev-ruby/bluecloth/ChangeLog
index 32554d9b5e88..3b4d4c95e9ac 100644
--- a/dev-ruby/bluecloth/ChangeLog
+++ b/dev-ruby/bluecloth/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/bluecloth
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/ChangeLog,v 1.69 2013/01/15 05:27:05 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/ChangeLog,v 1.70 2013/07/08 18:46:51 graaff Exp $
+
+ 08 Jul 2013; Hans de Graaff <graaff@gentoo.org> -bluecloth-2.0.7.ebuild:
+ Cleanup.
15 Jan 2013; Rick Farina <zerochaos@gentoo.org> bluecloth-2.2.0.ebuild:
adding ~arm keywords to net-analyzer/metasploit rdeps
diff --git a/dev-ruby/bluecloth/bluecloth-2.0.7.ebuild b/dev-ruby/bluecloth/bluecloth-2.0.7.ebuild
deleted file mode 100644
index eb4d722d1984..000000000000
--- a/dev-ruby/bluecloth/bluecloth-2.0.7.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/bluecloth-2.0.7.ebuild,v 1.15 2012/10/28 17:17:04 armin76 Exp $
-
-EAPI=2
-USE_RUBY="ruby18"
-
-RUBY_FAKEGEM_VERSION="${PV/_pre/.pre}"
-
-RUBY_FAKEGEM_EXTRADOC="ChangeLog README"
-RUBY_FAKEGEM_DOCDIR="docs/api"
-
-inherit ruby-fakegem eutils
-
-DESCRIPTION="A Ruby implementation of Markdown"
-HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
-IUSE=""
-
-ruby_add_bdepend "
- >=dev-ruby/rdoc-2.4.1
- dev-ruby/rake-compiler
- test? (
- dev-ruby/rspec:0
- dev-ruby/diff-lcs
- )"
-
-all_ruby_prepare() {
- # for Ruby 1.9.2 compatibility
- sed -i -e '1i $: << "."' Rakefile || die
-
- # The Rakefile uses the rubygems' package_task unconditionally,
- # but this breaks when we don't install rubygems proper (like for
- # Ruby 1.9 or JRuby). For this reason, patch it away. It should
- # really be submitted upstream so that, if missing, only the
- # packaging tasks will be ignored.
- sed -i \
- -e '/^\(Gem\|Rake\)::PackageTask/, /^end/ s:^:#:' \
- -e '/package_task/s:^:#:' \
- -e '/task :package/s:^:#:' \
- rake/packaging.rb || die
-
- # Remove gem requirement. The require below it will pick up the
- # correct rspec implementation and we'll handle the proper version
- # here.
- sed -i -e "/gem 'rspec'/d" rake/testing.rb || die
-}
-
-each_ruby_compile() {
- ${RUBY} -S rake compile || die "extension build failed"
-}