Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bson/
Date: Sat, 24 Feb 2018 08:50:05
Message-Id: 1519462095.5643d09e76465307962c9ff2c5445c6e8fa5beb5.graaff@gentoo
1 commit: 5643d09e76465307962c9ff2c5445c6e8fa5beb5
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 24 08:34:46 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 24 08:48:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5643d09e
7
8 dev-ruby/bson: remove masked version
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-ruby/bson/Manifest | 1 -
13 dev-ruby/bson/bson-3.2.6.ebuild | 44 -----------------------------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-ruby/bson/Manifest b/dev-ruby/bson/Manifest
17 index 65c699b0e36..d53d69ea591 100644
18 --- a/dev-ruby/bson/Manifest
19 +++ b/dev-ruby/bson/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST bson-3.2.6.tar.gz 51846 BLAKE2B a714c4166f30df6376523fd500557905507c180c9b5d1042d9b6b03e03edd996ca46f0d043180786b97d81c289d51f29e7b9904aff903f7dbba5826e857357c9 SHA512 da8d7c4e50bd5387a50f0ef471f1d854e0a1bf3f109bb793b16c8e4d110f6b98cb37aee126176eccb097c5d7814360ef85e96be4aa4704226a8490984a5dd3f2
22 DIST bson-4.2.2.tar.gz 96725 BLAKE2B 62c40df519e185665f0c42bc8ab6a2d8472d123397f1ed1403e40254944cd423e6cedbfa014a03f6c6ed8a7cde94f8c26d06e784b82ea55f17a97996915381d6 SHA512 4de8950271f5fdd5927eda290b6506248012cb8a932d65773ad53f1e3e4c67ea17575b559447d5eb6c9286f672439879dbc89aa0cded4ec2d0fa35c49da7a574
23 DIST bson-4.3.0.tar.gz 103341 BLAKE2B 29f7d870ce85e4984f47fda482b9ebc33986332eefcc3d9c5d56f7cc628e698a4a2e879225b81c6d0b1edc9e62f9b426f2510b67b51398a699d96de390544efb SHA512 c753bd68df5871a7cbed78dc68791a5d1c30db5975b70702742f12373afb754df8078d2bc6a772fd398815bca05a2fa020cc820a1ea9238f8b01eb492581b17f
24
25 diff --git a/dev-ruby/bson/bson-3.2.6.ebuild b/dev-ruby/bson/bson-3.2.6.ebuild
26 deleted file mode 100644
27 index 771786c4f35..00000000000
28 --- a/dev-ruby/bson/bson-3.2.6.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2016 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -USE_RUBY="ruby20 ruby21 ruby22"
36 -
37 -RUBY_FAKEGEM_RECIPE_TEST="rspec"
38 -
39 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
40 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
41 -
42 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
43 -
44 -GITHUB_USER="mongodb"
45 -GITHUB_PROJECT="bson-ruby"
46 -
47 -inherit multilib ruby-fakegem
48 -
49 -DESCRIPTION="A Ruby BSON implementation for MongoDB. (Includes binary C-based extension.)"
50 -HOMEPAGE="http://www.mongodb.org/"
51 -SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
52 -RUBY_S="bson-ruby-${PV}"
53 -
54 -LICENSE="APSL-2"
55 -SLOT="3"
56 -KEYWORDS="~amd64"
57 -IUSE="test doc"
58 -
59 -all_ruby_prepare() {
60 - # Remove bundler support
61 - sed -i -e '/bundler/I s:^:#:' Rakefile || die
62 -
63 - # Remove project-specific rspec options
64 - rm .rspec || die
65 -}
66 -
67 -each_ruby_configure() {
68 - ${RUBY} -C ext/bson extconf.rb || die "extconf.rb failed"
69 -}
70 -
71 -each_ruby_compile() {
72 - emake -C ext/bson V=1 CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}"
73 - cp ext/bson/*$(get_modname) lib/ || die
74 -}