* [gentoo-commits] gentoo-x86 commit in dev-ruby/bson: ChangeLog bson-2.0.0.ebuild
@ 2013-12-25 7:40 Hans de Graaff (graaff)
0 siblings, 0 replies; 2+ messages in thread
From: Hans de Graaff (graaff) @ 2013-12-25 7:40 UTC (permalink / raw
To: gentoo-commits
graaff 13/12/25 07:40:41
Modified: ChangeLog
Added: bson-2.0.0.ebuild
Log:
Version bump. Upstream now releases one gem with the compiled extension included.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path
1.9 dev-ruby/bson/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bson/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bson/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bson/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bson/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 25 Dec 2013 07:22:06 -0000 1.8
+++ ChangeLog 25 Dec 2013 07:40:41 -0000 1.9
@@ -1,39 +1,10 @@
# ChangeLog for dev-ruby/bson
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bson/ChangeLog,v 1.8 2013/12/25 07:22:06 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bson/ChangeLog,v 1.9 2013/12/25 07:40:41 graaff Exp $
- 25 Dec 2013; Hans de Graaff <graaff@gentoo.org> -bson-1.6.2.ebuild:
- Cleanup.
+*bson-2.0.0 (25 Dec 2013)
-*bson-1.6.2-r1 (17 Nov 2013)
+ 25 Dec 2013; Hans de Graaff <graaff@gentoo.org> +bson-2.0.0.ebuild:
+ Version bump. Upstream now releases one gem with the compiled extension
+ included.
- 17 Nov 2013; Manuel Rüger <mrueg@gentoo.org> +bson-1.6.2-r1.ebuild:
- Add ruby20 target.
-
- 12 May 2012; Diego E. Pettenò <flameeyes@gentoo.org> -bson-1.5.2.ebuild,
- -bson-1.6.0.ebuild, -bson-1.6.1.ebuild, bson-1.6.2.ebuild:
- Do not build doc unconditionally, restore USE=doc.
-
- 11 May 2012; Diego E. Pettenò <flameeyes@gentoo.org> bson-1.6.2.ebuild:
- Add support for ruby 1.9 (works fine).
-
-*bson-1.6.2 (05 Apr 2012)
-
- 05 Apr 2012; Diego E. Pettenò <flameeyes@gentoo.org> +bson-1.6.2.ebuild:
- Version bump.
-
-*bson-1.6.1 (08 Mar 2012)
-
- 08 Mar 2012; Diego E. Pettenò <flameeyes@gentoo.org> +bson-1.6.1.ebuild:
- Version bump.
-
-*bson-1.6.0 (22 Feb 2012)
-
- 22 Feb 2012; Diego E. Pettenò <flameeyes@gentoo.org> +bson-1.6.0.ebuild:
- Version bump.
-
-*bson-1.5.2 (28 Dec 2011)
-
- 28 Dec 2011; Diego E. Pettenò <flameeyes@gentoo.org> +bson-1.5.2.ebuild,
- +metadata.xml:
- Initial import of ebuild for bson (and bson_ext).
1.1 dev-ruby/bson/bson-2.0.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bson/bson-2.0.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bson/bson-2.0.0.ebuild?rev=1.1&content-type=text/plain
Index: bson-2.0.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bson/bson-2.0.0.ebuild,v 1.1 2013/12/25 07:40:41 graaff Exp $
EAPI=5
# jruby → support needs to be written properly
USE_RUBY="ruby18 ruby19 ruby20"
RUBY_FAKEGEM_RECIPE_TEST="rspec"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
GITHUB_USER="mongodb"
GITHUB_PROJECT="bson-ruby"
inherit multilib ruby-fakegem
DESCRIPTION="A Ruby BSON implementation for MongoDB. (Includes binary C-based extension.)"
HOMEPAGE="http://www.mongodb.org/"
SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/v${PV}.tar.gz"
RUBY_S="bson-ruby-${PV}"
LICENSE="APSL-2"
SLOT="2"
KEYWORDS="~amd64"
IUSE="test doc"
ruby_add_bdepend \
"test? (
dev-ruby/rake
dev-ruby/shoulda
dev-ruby/mocha
dev-ruby/test-unit:2
)
doc? ( virtual/ruby-rdoc )"
all_ruby_prepare() {
# Remove bundler support
sed -i -e '/bundler/I s:^:#:' Rakefile || die
# Remove project-specific rspec options
rm .rspec || die
}
each_ruby_configure() {
case ${RUBY} in
*/ruby18|*/ruby19|*/ruby20)
${RUBY} -C ext/bson extconf.rb || die "extconf.rb failed"
;;
*/jruby)
${RUBY} -S rake build:java || die "rake build:java failed"
;;
esac
}
each_ruby_compile() {
case ${RUBY} in
*/ruby18|*/ruby19|*/ruby20)
emake -C ext/bson V=1 CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}"
cp ext/bson/*$(get_modname) lib/ || die
;;
*/jruby)
die "missing in ebuild"
;;
esac
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ruby/bson: ChangeLog bson-2.0.0.ebuild
@ 2014-06-16 14:19 Hans de Graaff (graaff)
0 siblings, 0 replies; 2+ messages in thread
From: Hans de Graaff (graaff) @ 2014-06-16 14:19 UTC (permalink / raw
To: gentoo-commits
graaff 14/06/16 14:19:48
Modified: ChangeLog
Removed: bson-2.0.0.ebuild
Log:
Cleanup.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path
1.12 dev-ruby/bson/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bson/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bson/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bson/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bson/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 1 Jun 2014 06:46:43 -0000 1.11
+++ ChangeLog 16 Jun 2014 14:19:48 -0000 1.12
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/bson
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bson/ChangeLog,v 1.11 2014/06/01 06:46:43 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bson/ChangeLog,v 1.12 2014/06/16 14:19:48 graaff Exp $
+
+ 16 Jun 2014; Hans de Graaff <graaff@gentoo.org> -bson-2.0.0.ebuild:
+ Cleanup.
*bson-2.2.4 (01 Jun 2014)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-06-16 14:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-16 14:19 [gentoo-commits] gentoo-x86 commit in dev-ruby/bson: ChangeLog bson-2.0.0.ebuild Hans de Graaff (graaff)
-- strict thread matches above, loose matches on Subject: below --
2013-12-25 7:40 Hans de Graaff (graaff)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox