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/actionpack-xml_parser/
Date: Sun, 18 Jul 2021 05:59:40
Message-Id: 1626587351.2dbeaffbed4099fe9532f988c92a45d4c7722817.graaff@gentoo
1 commit: 2dbeaffbed4099fe9532f988c92a45d4c7722817
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 18 05:49:11 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 18 05:49:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dbeaffb
7
8 dev-ruby/actionpack-xml_parser: cleanup
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 .../actionpack-xml_parser-2.0.1.ebuild | 33 ----------------------
14 1 file changed, 33 deletions(-)
15
16 diff --git a/dev-ruby/actionpack-xml_parser/actionpack-xml_parser-2.0.1.ebuild b/dev-ruby/actionpack-xml_parser/actionpack-xml_parser-2.0.1.ebuild
17 deleted file mode 100644
18 index 48e5bf081ed..00000000000
19 --- a/dev-ruby/actionpack-xml_parser/actionpack-xml_parser-2.0.1.ebuild
20 +++ /dev/null
21 @@ -1,33 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -USE_RUBY="ruby24 ruby25 ruby26"
27 -
28 -RUBY_FAKEGEM_TASK_DOC=""
29 -
30 -inherit ruby-fakegem
31 -
32 -DESCRIPTION="XML parameters parser for Action Pack (removed from core in Rails 4.0)"
33 -HOMEPAGE="https://github.com/rails/actionpack-xml_parser"
34 -SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
35 -
36 -LICENSE="MIT"
37 -
38 -KEYWORDS="~amd64"
39 -SLOT="2"
40 -IUSE=""
41 -
42 -ruby_add_rdepend "=dev-ruby/actionpack-5*:* =dev-ruby/railties-5*:*"
43 -
44 -all_ruby_prepare() {
45 - sed -i -e "/bundler/d" Rakefile test/helper.rb || die
46 - sed -i -e '1igem "actionpack", "~>5.2"' test/helper.rb || die
47 -
48 - # Skip test that is not compatible with Rails 5.2
49 - sed -i -e '/occurring a parse error if parsing unsuccessful/askip "rails 5.2"' test/xml_params_parsing_test.rb || die
50 -}
51 -
52 -each_ruby_test() {
53 - MT_NO_PLUGINS=true ${RUBY} -Ilib:.:test -e "Dir['test/*_test.rb'].each{|f| require f}" || die
54 -}