public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rev/
@ 2016-04-07 22:38 Manuel Rüger
  0 siblings, 0 replies; 2+ messages in thread
From: Manuel Rüger @ 2016-04-07 22:38 UTC (permalink / raw
  To: gentoo-commits

commit:     e6576b64d989f916d1cb116121cb173bfcef3be1
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Apr  7 22:38:09 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Apr  7 22:38:09 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6576b64

dev-ruby/rev: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/rev/rev-0.3.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rev/rev-0.3.2-r1.ebuild b/dev-ruby/rev/rev-0.3.2-r1.ebuild
index 268f2a4..831feff 100644
--- a/dev-ruby/rev/rev-0.3.2-r1.ebuild
+++ b/dev-ruby/rev/rev-0.3.2-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 # ruby22 -> does not compile
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby20 ruby21"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="CHANGES README.textile"


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rev/
@ 2017-05-31  4:38 Hans de Graaff
  0 siblings, 0 replies; 2+ messages in thread
From: Hans de Graaff @ 2017-05-31  4:38 UTC (permalink / raw
  To: gentoo-commits

commit:     f06f8041c8e71b261fa7c01da2b8267a30d73dfe
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 04:21:09 2017 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed May 31 04:24:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f06f8041

remove masked dev-ruby/rev

 dev-ruby/rev/Manifest            |  1 -
 dev-ruby/rev/metadata.xml        | 11 --------
 dev-ruby/rev/rev-0.3.2-r1.ebuild | 54 ----------------------------------------
 3 files changed, 66 deletions(-)

diff --git a/dev-ruby/rev/Manifest b/dev-ruby/rev/Manifest
deleted file mode 100644
index a15881d13bb..00000000000
--- a/dev-ruby/rev/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST rev-0.3.2.gem 89088 SHA256 c711d8f7022df8412980a6b3ec2c2be24de640f9d46d6c72addb516d530d68c9 SHA512 dc7dfb00ebea5ded7f516f18dcf85da12a0468353a560972203069a1123f8ebd68f2ccafe69c27a02ba2f36678cf9651446bc36068b480ba0d19141deb5f27d6 WHIRLPOOL 80015fac354eaeb48c85439edc8c236ff42fdde81185b2b266ad2daee88ad9c0e8ad576259dd12ab670a391eff91226e4ee9f6cd268ce922c8942ef6ac59ec7d

diff --git a/dev-ruby/rev/metadata.xml b/dev-ruby/rev/metadata.xml
deleted file mode 100644
index 5698c7ecee0..00000000000
--- a/dev-ruby/rev/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>ruby@gentoo.org</email>
-		<name>Gentoo Ruby Project</name>
-	</maintainer>
-	<upstream>
-		<remote-id type="rubygems">rev</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-ruby/rev/rev-0.3.2-r1.ebuild b/dev-ruby/rev/rev-0.3.2-r1.ebuild
deleted file mode 100644
index e352491f743..00000000000
--- a/dev-ruby/rev/rev-0.3.2-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-# ruby22 -> does not compile
-USE_RUBY="ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGES README.textile"
-
-RUBY_FAKEGEM_TASK_TEST=""
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Rev is an event library for Ruby, built on the libev event library"
-HOMEPAGE="https://rubygems.org/gems/rev"
-LICENSE="MIT"
-
-KEYWORDS="~amd64 ~x86 ~x86-macos"
-SLOT="0"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/iobuffer-0.1.0"
-
-each_ruby_configure() {
-	${RUBY} -C ext/rev extconf.rb || die "Unable to configure rev extionsion."
-
-	${RUBY} -C ext/http11_client extconf.rb || die "Unable to configure http11 extension."
-}
-
-each_ruby_compile() {
-	# We have injected --no-undefined in Ruby as a safety precaution
-	# against broken ebuilds, but these bindings unfortunately rely on
-	# the lazy load of other extensions; see bug #320545.
-	find ext/rev -name Makefile -print0 | xargs -0 \
-		sed -i -e 's:-Wl,--no-undefined::' || die "--no-undefined removal failed"
-	emake -C ext/rev V=1 || die "Unable to compile rev extension."
-
-	emake -C ext/http11_client V=1 || die "Unable to compile http11 extension."
-}
-
-each_ruby_install() {
-	cp ext/rev/rev_ext$(get_modname) lib || die
-	cp ext/http11_client/http11_client$(get_modname) lib || die
-
-	each_fakegem_install
-}
-
-all_ruby_install() {
-	all_fakegem_install
-
-	insinto /usr/share/doc/${PF}/examples
-	doins examples/* || die "Unable to install examples."
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-05-31  4:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-07 22:38 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rev/ Manuel Rüger
  -- strict thread matches above, loose matches on Subject: below --
2017-05-31  4:38 Hans de Graaff

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox