summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2013-07-08 18:32:45 +0000
committerHans de Graaff <graaff@gentoo.org>2013-07-08 18:32:45 +0000
commitcf56c48ed738cc86809f2266896bd744b08d7e93 (patch)
tree02946fe29ae6b0b66da4b04610804ef1ae99949c /dev-ruby/fast_xs
parentCleanup. (diff)
downloadgentoo-2-cf56c48ed738cc86809f2266896bd744b08d7e93.tar.gz
gentoo-2-cf56c48ed738cc86809f2266896bd744b08d7e93.tar.bz2
gentoo-2-cf56c48ed738cc86809f2266896bd744b08d7e93.zip
Cleanup.
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/fast_xs')
-rw-r--r--dev-ruby/fast_xs/ChangeLog5
-rw-r--r--dev-ruby/fast_xs/fast_xs-0.7.3-r1.ebuild35
2 files changed, 4 insertions, 36 deletions
diff --git a/dev-ruby/fast_xs/ChangeLog b/dev-ruby/fast_xs/ChangeLog
index f29099995cb1..009d10a8d67b 100644
--- a/dev-ruby/fast_xs/ChangeLog
+++ b/dev-ruby/fast_xs/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/fast_xs
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fast_xs/ChangeLog,v 1.18 2013/01/15 05:16:24 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fast_xs/ChangeLog,v 1.19 2013/07/08 18:32:45 graaff Exp $
+
+ 08 Jul 2013; Hans de Graaff <graaff@gentoo.org> -fast_xs-0.7.3-r1.ebuild:
+ Cleanup.
15 Jan 2013; Rick Farina <zerochaos@gentoo.org> fast_xs-0.8.0.ebuild:
adding ~arm keywords to net-analyzer/metasploit rdeps
diff --git a/dev-ruby/fast_xs/fast_xs-0.7.3-r1.ebuild b/dev-ruby/fast_xs/fast_xs-0.7.3-r1.ebuild
deleted file mode 100644
index 6e5c4032c8d4..000000000000
--- a/dev-ruby/fast_xs/fast_xs-0.7.3-r1.ebuild
+++ /dev/null
@@ -1,35 +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/fast_xs/fast_xs-0.7.3-r1.ebuild,v 1.2 2012/08/11 12:22:40 hollow Exp $
-
-EAPI=4
-
-USE_RUBY="ruby18 ruby19 ree18"
-
-RUBY_FAKEGEM_TASK_DOC="docs"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="fast_xs text escaping library ruby bindings."
-HOMEPAGE="http://fast-xs.rubyforge.org/"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-ruby_add_bdepend "doc? ( >=dev-ruby/hoe-2.3.2 )"
-ruby_add_bdepend "test? ( >=dev-ruby/hoe-2.3.2 virtual/ruby-test-unit )"
-
-each_ruby_configure() {
- ${RUBY} -Cext/fast_xs extconf.rb || die "extconf.rb failed"
- ${RUBY} -Cext/fast_xs_extra extconf.rb || die "extconf.rb failed"
-}
-
-each_ruby_compile() {
- emake -Cext/fast_xs CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}" || die "make extension failed"
- cp ext/fast_xs/fast_xs$(get_modname) lib/ || die
- emake -Cext/fast_xs_extra CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}" || die "make extension failed"
- cp ext/fast_xs_extra/fast_xs_extra$(get_modname) lib/ || die
-}