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/rubyzip/
Date: Sat, 30 Apr 2022 09:08:09
Message-Id: 1651309676.c761be67df05763f5db41399b188a4e34b6ea75f.graaff@gentoo
1 commit: c761be67df05763f5db41399b188a4e34b6ea75f
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 05:58:29 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 09:07:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c761be67
7
8 dev-ruby/rubyzip: drop 2.2.0, 2.3.0, 2.3.2
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/rubyzip/Manifest | 2 --
13 dev-ruby/rubyzip/rubyzip-2.2.0.ebuild | 49 -------------------------------
14 dev-ruby/rubyzip/rubyzip-2.3.0.ebuild | 54 -----------------------------------
15 dev-ruby/rubyzip/rubyzip-2.3.2.ebuild | 54 -----------------------------------
16 4 files changed, 159 deletions(-)
17
18 diff --git a/dev-ruby/rubyzip/Manifest b/dev-ruby/rubyzip/Manifest
19 index b0d8f9f9c9a4..70718105c8b5 100644
20 --- a/dev-ruby/rubyzip/Manifest
21 +++ b/dev-ruby/rubyzip/Manifest
22 @@ -1,4 +1,2 @@
23 DIST rubyzip-1.3.0-git.tgz 156664 BLAKE2B 2bde6515ddc71da32fc2d2819770857f7dde8605718c868f73edb8493f7db5ce66a7115d09933ffc6a06ac0979ab07e8cbdcd47984707688b7a5db43394847bc SHA512 5a764725d1f6a797f710581dbe07bd7971f0a8a5b0ffb7fc9b1a627c32e6e342ff54e2ad39e74e294dd283b8cbf358ed2dc40857f6f656007adff80d4769b9f4
24 -DIST rubyzip-2.2.0-git.tgz 224109 BLAKE2B b1d879d04c4bd23f32f82260d386a0b0ff8bb4c1af705a4eca9fc279b4095551edad27e2187aa146b9c76f183df2687fc03dd7c6d62c2dde6d70c9137226316c SHA512 c10f3574c7948ae29ed665de69f79d714e146bda27a634c3bfdf7210240b535c6a9fba43fff0228fd85afd262ca56d25002393eda90237d8da1034edda62e2a7
25 -DIST rubyzip-2.3.0-git.tgz 225336 BLAKE2B 24b00e02c26881953c843761d38b8bf3a9a5a04da6cafa73bea6abdeea345a71a31241a557ff3c182df274210a970f17b3e866657153784df6b03cdf472681f6 SHA512 da9c446aa1a3c457decdaedb387f4030f84a2b1c1c3ca14a0e8588103f95cf893812e7a146362c083aba478828ccda4b127cd0b80fa2fa09022e06ad041506bf
26 DIST rubyzip-2.3.2-git.tgz 225923 BLAKE2B ed901326cd0f79c8be004d9c14b32d7e67e90ab4d2d5b67dc64559fd4691dfb63cfa1ee18363a7cf864bd62559f1bc2fae71fc25ad1c727d7cc01f94d1ec62ee SHA512 6c64e53c1f5ca530abfa22baf388f87c8cf098d81cc9c639f20903e5193cf26243fbf861ac12002ae954f026e04168d8a55beeaf3ac5542bd0618ca85a5c90de
27
28 diff --git a/dev-ruby/rubyzip/rubyzip-2.2.0.ebuild b/dev-ruby/rubyzip/rubyzip-2.2.0.ebuild
29 deleted file mode 100644
30 index 35b67483c881..000000000000
31 --- a/dev-ruby/rubyzip/rubyzip-2.2.0.ebuild
32 +++ /dev/null
33 @@ -1,49 +0,0 @@
34 -# Copyright 1999-2020 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
40 -
41 -RUBY_FAKEGEM_RECIPE_DOC="none"
42 -RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md TODO"
43 -
44 -RUBY_FAKEGEM_GEMSPEC="rubyzip.gemspec"
45 -
46 -inherit ruby-fakegem
47 -
48 -DESCRIPTION="A ruby library for reading and writing zip files"
49 -HOMEPAGE="https://github.com/rubyzip/rubyzip"
50 -# Tests are not included in the gem.
51 -SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tgz"
52 -
53 -LICENSE="Ruby"
54 -SLOT="$(ver_cut 1)"
55 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
56 -IUSE=""
57 -
58 -RDEPEND=""
59 -DEPEND="${DEPEND} test? ( app-arch/zip )"
60 -
61 -ruby_add_bdepend "test? ( dev-ruby/minitest:5 )"
62 -
63 -all_ruby_install() {
64 - all_fakegem_install
65 -
66 - docinto examples
67 - dodoc samples/*
68 -}
69 -
70 -all_ruby_prepare() {
71 - # Avoid dependencies on simplecov and coveralls
72 - sed -i -e '/simplecov/ s:^:#:' test/test_helper.rb || die
73 -
74 - # Avoid dependency on bundler
75 - sed -i -e '/bundler/ s:^:#:' Rakefile || die
76 -
77 - # Fix hardcoded path to /tmp
78 - sed -i -e 's:/tmp/:'${T}'/:g' test/entry_test.rb || die
79 -
80 - # Add missing requires
81 - sed -i -e '1irequire "forwardable"; require "pathname"' test/input_stream_test.rb || die
82 -}
83
84 diff --git a/dev-ruby/rubyzip/rubyzip-2.3.0.ebuild b/dev-ruby/rubyzip/rubyzip-2.3.0.ebuild
85 deleted file mode 100644
86 index 63b3c7e93be4..000000000000
87 --- a/dev-ruby/rubyzip/rubyzip-2.3.0.ebuild
88 +++ /dev/null
89 @@ -1,54 +0,0 @@
90 -# Copyright 1999-2021 Gentoo Authors
91 -# Distributed under the terms of the GNU General Public License v2
92 -
93 -EAPI=7
94 -
95 -USE_RUBY="ruby25 ruby26 ruby27 ruby30"
96 -
97 -RUBY_FAKEGEM_RECIPE_DOC="none"
98 -RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md TODO"
99 -
100 -RUBY_FAKEGEM_GEMSPEC="rubyzip.gemspec"
101 -
102 -RUBY_FAKEGEM_BINWRAP=""
103 -
104 -inherit ruby-fakegem
105 -
106 -DESCRIPTION="A ruby library for reading and writing zip files"
107 -HOMEPAGE="https://github.com/rubyzip/rubyzip"
108 -# Tests are not included in the gem.
109 -SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tgz"
110 -
111 -LICENSE="Ruby"
112 -SLOT="$(ver_cut 1)"
113 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
114 -IUSE=""
115 -
116 -RDEPEND=""
117 -DEPEND="${DEPEND} test? ( app-arch/zip )"
118 -
119 -ruby_add_bdepend "test? ( dev-ruby/minitest:5 )"
120 -
121 -all_ruby_install() {
122 - all_fakegem_install
123 -
124 - docinto examples
125 - dodoc samples/*
126 -}
127 -
128 -all_ruby_prepare() {
129 - # Avoid dependencies on simplecov and coveralls
130 - sed -i -e '/simplecov/ s:^:#:' test/test_helper.rb || die
131 -
132 - # Avoid dependency on bundler
133 - sed -i -e '/bundler/ s:^:#: ; /rubocop/I s:^:#:' Rakefile || die
134 -
135 - # Fix hardcoded path to /tmp
136 - sed -i -e 's:/tmp/:'${T}'/:g' test/entry_test.rb || die
137 -
138 - # Add missing requires
139 - sed -i -e '1irequire "forwardable"; require "pathname"' test/input_stream_test.rb || die
140 -
141 - # Fix broken test that uses native endian
142 - sed -i -e '/pack/ s/LLS/VVv/' test/file_extract_test.rb || die
143 -}
144
145 diff --git a/dev-ruby/rubyzip/rubyzip-2.3.2.ebuild b/dev-ruby/rubyzip/rubyzip-2.3.2.ebuild
146 deleted file mode 100644
147 index aef8a552c081..000000000000
148 --- a/dev-ruby/rubyzip/rubyzip-2.3.2.ebuild
149 +++ /dev/null
150 @@ -1,54 +0,0 @@
151 -# Copyright 1999-2021 Gentoo Authors
152 -# Distributed under the terms of the GNU General Public License v2
153 -
154 -EAPI=7
155 -
156 -USE_RUBY="ruby25 ruby26 ruby27 ruby30"
157 -
158 -RUBY_FAKEGEM_RECIPE_DOC="none"
159 -RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md TODO"
160 -
161 -RUBY_FAKEGEM_GEMSPEC="rubyzip.gemspec"
162 -
163 -RUBY_FAKEGEM_BINWRAP=""
164 -
165 -inherit ruby-fakegem
166 -
167 -DESCRIPTION="A ruby library for reading and writing zip files"
168 -HOMEPAGE="https://github.com/rubyzip/rubyzip"
169 -# Tests are not included in the gem.
170 -SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tgz"
171 -
172 -LICENSE="Ruby"
173 -SLOT="$(ver_cut 1)"
174 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
175 -IUSE=""
176 -
177 -RDEPEND=""
178 -DEPEND="${DEPEND} test? ( app-arch/zip )"
179 -
180 -ruby_add_bdepend "test? ( dev-ruby/minitest:5 )"
181 -
182 -all_ruby_install() {
183 - all_fakegem_install
184 -
185 - docinto examples
186 - dodoc samples/*
187 -}
188 -
189 -all_ruby_prepare() {
190 - # Avoid dependencies on simplecov and coveralls
191 - sed -i -e '/simplecov/ s:^:#:' test/test_helper.rb || die
192 -
193 - # Avoid dependency on bundler
194 - sed -i -e '/bundler/ s:^:#: ; /rubocop/I s:^:#:' Rakefile || die
195 -
196 - # Fix hardcoded path to /tmp
197 - sed -i -e 's:/tmp/:'${T}'/:g' test/entry_test.rb || die
198 -
199 - # Add missing requires
200 - sed -i -e '1irequire "forwardable"; require "pathname"' test/input_stream_test.rb || die
201 -
202 - # Fix broken test that uses native endian
203 - sed -i -e '/pack/ s/LLS/VVv/' test/file_extract_test.rb || die
204 -}