public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/listen: listen-0.4.7.ebuild ChangeLog
@ 2012-06-28  6:23 Hans de Graaff (graaff)
  0 siblings, 0 replies; 2+ messages in thread
From: Hans de Graaff (graaff) @ 2012-06-28  6:23 UTC (permalink / raw
  To: gentoo-commits

graaff      12/06/28 06:23:33

  Modified:             ChangeLog
  Added:                listen-0.4.7.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-ruby/listen/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	2 Jun 2012 08:49:35 -0000	1.1
+++ ChangeLog	28 Jun 2012 06:23:33 -0000	1.2
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/listen
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v 1.1 2012/06/02 08:49:35 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v 1.2 2012/06/28 06:23:33 graaff Exp $
+
+*listen-0.4.7 (28 Jun 2012)
+
+  28 Jun 2012; Hans de Graaff <graaff@gentoo.org> +listen-0.4.7.ebuild:
+  Version bump.
 
 *listen-0.4.2 (02 Jun 2012)
 



1.1                  dev-ruby/listen/listen-0.4.7.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/listen-0.4.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/listen-0.4.7.ebuild?rev=1.1&content-type=text/plain

Index: listen-0.4.7.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/listen-0.4.7.ebuild,v 1.1 2012/06/28 06:23:33 graaff Exp $

EAPI=4

USE_RUBY="ruby18 ruby19 ree18 jruby"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"

RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"

inherit ruby-fakegem

DESCRIPTION="Listens to file modifications and notifies you about the changes."
HOMEPAGE="https://github.com/guard/listen"
SRC_URI="https://github.com/guard/listen/tarball/v${PV} -> ${P}-git.tgz"
RUBY_S="guard-listen-*"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"

ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"

ruby_add_rdepend ">=dev-ruby/rb-inotify-0.8.8"

all_ruby_prepare() {
	# On Gentoo Linux we only support inotify.
	sed -i -e '/rb-fsevent/d' -e '/rb-fchange/d' ${RUBY_FAKEGEM_GEMSPEC} || die
}

each_ruby_test() {
	${RUBY} -S rspec --format progress spec || die
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/listen: listen-0.4.7.ebuild ChangeLog
@ 2012-08-14  3:56 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 2+ messages in thread
From: Diego Petteno (flameeyes) @ 2012-08-14  3:56 UTC (permalink / raw
  To: gentoo-commits

flameeyes    12/08/14 03:56:17

  Modified:             listen-0.4.7.ebuild ChangeLog
  Log:
  Port to rspec helper for testing. Tests fail before and after.
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-ruby/listen/listen-0.4.7.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/listen-0.4.7.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/listen-0.4.7.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/listen-0.4.7.ebuild?r1=1.1&r2=1.2

Index: listen-0.4.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/listen/listen-0.4.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- listen-0.4.7.ebuild	28 Jun 2012 06:23:33 -0000	1.1
+++ listen-0.4.7.ebuild	14 Aug 2012 03:56:17 -0000	1.2
@@ -1,11 +1,13 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/listen-0.4.7.ebuild,v 1.1 2012/06/28 06:23:33 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/listen-0.4.7.ebuild,v 1.2 2012/08/14 03:56:17 flameeyes Exp $
 
 EAPI=4
 
 USE_RUBY="ruby18 ruby19 ree18 jruby"
 
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
 
@@ -21,9 +23,7 @@
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="test"
-
-ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
+IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/rb-inotify-0.8.8"
 
@@ -31,7 +31,3 @@
 	# On Gentoo Linux we only support inotify.
 	sed -i -e '/rb-fsevent/d' -e '/rb-fchange/d' ${RUBY_FAKEGEM_GEMSPEC} || die
 }
-
-each_ruby_test() {
-	${RUBY} -S rspec --format progress spec || die
-}



1.3                  dev-ruby/listen/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	28 Jun 2012 06:23:33 -0000	1.2
+++ ChangeLog	14 Aug 2012 03:56:17 -0000	1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/listen
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v 1.2 2012/06/28 06:23:33 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v 1.3 2012/08/14 03:56:17 flameeyes Exp $
+
+  14 Aug 2012; Diego E. Pettenò <flameeyes@gentoo.org> listen-0.4.7.ebuild:
+  Port to rspec helper for testing. Tests fail before and after.
 
 *listen-0.4.7 (28 Jun 2012)
 
@@ -12,4 +15,3 @@
   02 Jun 2012; Hans de Graaff <graaff@gentoo.org> +listen-0.4.2.ebuild,
   +metadata.xml:
   Initial import. New dependency for forthcoming versions of sass.
-





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

end of thread, other threads:[~2012-08-14  3:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-28  6:23 [gentoo-commits] gentoo-x86 commit in dev-ruby/listen: listen-0.4.7.ebuild ChangeLog Hans de Graaff (graaff)
  -- strict thread matches above, loose matches on Subject: below --
2012-08-14  3:56 Diego Petteno (flameeyes)

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