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: Thu, 11 Apr 2019 06:50:02
Message-Id: 1554965379.b2c457cc9bdd9bc7f70f2e3d36eb9c1ba04ee8a6.graaff@gentoo
1 commit: b2c457cc9bdd9bc7f70f2e3d36eb9c1ba04ee8a6
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 11 06:49:20 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 11 06:49:39 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2c457cc
7
8 dev-ruby/bson: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-ruby/bson/Manifest | 3 ---
14 dev-ruby/bson/bson-4.2.2.ebuild | 44 -----------------------------------------
15 dev-ruby/bson/bson-4.3.0.ebuild | 44 -----------------------------------------
16 dev-ruby/bson/bson-4.4.1.ebuild | 44 -----------------------------------------
17 4 files changed, 135 deletions(-)
18
19 diff --git a/dev-ruby/bson/Manifest b/dev-ruby/bson/Manifest
20 index d5ae7015adb..d02accca3df 100644
21 --- a/dev-ruby/bson/Manifest
22 +++ b/dev-ruby/bson/Manifest
23 @@ -1,4 +1 @@
24 -DIST bson-4.2.2.tar.gz 96725 BLAKE2B 62c40df519e185665f0c42bc8ab6a2d8472d123397f1ed1403e40254944cd423e6cedbfa014a03f6c6ed8a7cde94f8c26d06e784b82ea55f17a97996915381d6 SHA512 4de8950271f5fdd5927eda290b6506248012cb8a932d65773ad53f1e3e4c67ea17575b559447d5eb6c9286f672439879dbc89aa0cded4ec2d0fa35c49da7a574
25 -DIST bson-4.3.0.tar.gz 103341 BLAKE2B 29f7d870ce85e4984f47fda482b9ebc33986332eefcc3d9c5d56f7cc628e698a4a2e879225b81c6d0b1edc9e62f9b426f2510b67b51398a699d96de390544efb SHA512 c753bd68df5871a7cbed78dc68791a5d1c30db5975b70702742f12373afb754df8078d2bc6a772fd398815bca05a2fa020cc820a1ea9238f8b01eb492581b17f
26 -DIST bson-4.4.1.tar.gz 106995 BLAKE2B e10bf988c139ba4ffc1649f8f80dea0f7815c46ffe6d3bd35c522391879feb2996c161429bf4a5da2c092ab20fa9dcd544dd187bf3bb3a1baebb48df7c6be6d9 SHA512 740149ca01698998721cb6f585dd727ddc26ea770a16e5a6dc2d5faf6e52388ce8804a44b2c2ad1e52085dc810b522f4f320b72757c62cc7378ce6af84714d2a
27 DIST bson-4.4.2.tar.gz 107429 BLAKE2B 94b3f694d79a3219a6e7b13f4dfa5935a1fec5ac99883918d61052786b2e033d8cd335013155b4b9069a730a3a87a0c0ec00b8b5ee5b89bb8c357909e8f67fe4 SHA512 a27a82fab17f596df986a3c81f1e73146a8d283bb16e8a7dba1921215e8f0e863b6996dbc107ede44546e750e4b19cc2dd934d290e25712472efd6cc075b9984
28
29 diff --git a/dev-ruby/bson/bson-4.2.2.ebuild b/dev-ruby/bson/bson-4.2.2.ebuild
30 deleted file mode 100644
31 index 115c776b44f..00000000000
32 --- a/dev-ruby/bson/bson-4.2.2.ebuild
33 +++ /dev/null
34 @@ -1,44 +0,0 @@
35 -# Copyright 1999-2017 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=6
39 -USE_RUBY="ruby21 ruby22 ruby23 ruby24"
40 -
41 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
42 -
43 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
44 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
45 -
46 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
47 -
48 -GITHUB_USER="mongodb"
49 -GITHUB_PROJECT="bson-ruby"
50 -
51 -inherit multilib ruby-fakegem
52 -
53 -DESCRIPTION="A Ruby BSON implementation for MongoDB. (Includes binary C-based extension.)"
54 -HOMEPAGE="http://www.mongodb.org/"
55 -SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
56 -RUBY_S="bson-ruby-${PV}"
57 -
58 -LICENSE="APSL-2"
59 -SLOT="4"
60 -KEYWORDS="~amd64"
61 -IUSE="test doc"
62 -
63 -all_ruby_prepare() {
64 - # Remove bundler support
65 - sed -i -e '/bundler/I s:^:#:' Rakefile || die
66 -
67 - # Remove project-specific rspec options
68 - rm .rspec || die
69 -}
70 -
71 -each_ruby_configure() {
72 - ${RUBY} -C ext/bson extconf.rb || die "extconf.rb failed"
73 -}
74 -
75 -each_ruby_compile() {
76 - emake -C ext/bson V=1 CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}"
77 - cp ext/bson/*$(get_modname) lib/ || die
78 -}
79
80 diff --git a/dev-ruby/bson/bson-4.3.0.ebuild b/dev-ruby/bson/bson-4.3.0.ebuild
81 deleted file mode 100644
82 index ea7e0c78a4e..00000000000
83 --- a/dev-ruby/bson/bson-4.3.0.ebuild
84 +++ /dev/null
85 @@ -1,44 +0,0 @@
86 -# Copyright 1999-2018 Gentoo Foundation
87 -# Distributed under the terms of the GNU General Public License v2
88 -
89 -EAPI=6
90 -USE_RUBY="ruby23 ruby24 ruby25"
91 -
92 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
93 -
94 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
95 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
96 -
97 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
98 -
99 -GITHUB_USER="mongodb"
100 -GITHUB_PROJECT="bson-ruby"
101 -
102 -inherit multilib ruby-fakegem
103 -
104 -DESCRIPTION="A Ruby BSON implementation for MongoDB. (Includes binary C-based extension.)"
105 -HOMEPAGE="http://www.mongodb.org/"
106 -SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
107 -RUBY_S="bson-ruby-${PV}"
108 -
109 -LICENSE="APSL-2"
110 -SLOT="4"
111 -KEYWORDS="~amd64"
112 -IUSE="test doc"
113 -
114 -all_ruby_prepare() {
115 - # Remove bundler support
116 - sed -i -e '/bundler/I s:^:#:' Rakefile || die
117 -
118 - # Remove project-specific rspec options
119 - rm .rspec || die
120 -}
121 -
122 -each_ruby_configure() {
123 - ${RUBY} -C ext/bson extconf.rb || die "extconf.rb failed"
124 -}
125 -
126 -each_ruby_compile() {
127 - emake -C ext/bson V=1 CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}"
128 - cp ext/bson/*$(get_modname) lib/ || die
129 -}
130
131 diff --git a/dev-ruby/bson/bson-4.4.1.ebuild b/dev-ruby/bson/bson-4.4.1.ebuild
132 deleted file mode 100644
133 index fef1520820f..00000000000
134 --- a/dev-ruby/bson/bson-4.4.1.ebuild
135 +++ /dev/null
136 @@ -1,44 +0,0 @@
137 -# Copyright 1999-2019 Gentoo Authors
138 -# Distributed under the terms of the GNU General Public License v2
139 -
140 -EAPI=6
141 -USE_RUBY="ruby23 ruby24 ruby25 ruby26"
142 -
143 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
144 -
145 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
146 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
147 -
148 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
149 -
150 -GITHUB_USER="mongodb"
151 -GITHUB_PROJECT="bson-ruby"
152 -
153 -inherit multilib ruby-fakegem
154 -
155 -DESCRIPTION="A Ruby BSON implementation for MongoDB. (Includes binary C-based extension.)"
156 -HOMEPAGE="http://www.mongodb.org/"
157 -SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
158 -RUBY_S="bson-ruby-${PV}"
159 -
160 -LICENSE="APSL-2"
161 -SLOT="4"
162 -KEYWORDS="~amd64"
163 -IUSE="test doc"
164 -
165 -all_ruby_prepare() {
166 - # Remove bundler support
167 - sed -i -e '/bundler/I s:^:#:' Rakefile || die
168 -
169 - # Remove project-specific rspec options
170 - rm .rspec || die
171 -}
172 -
173 -each_ruby_configure() {
174 - ${RUBY} -C ext/bson extconf.rb || die "extconf.rb failed"
175 -}
176 -
177 -each_ruby_compile() {
178 - emake -C ext/bson V=1 CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}"
179 - cp ext/bson/*$(get_modname) lib/ || die
180 -}