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/liquid-c/
Date: Fri, 16 Jul 2021 09:31:07
Message-Id: 1626427858.621e6056133b2a4d9feda0a5035217e8084732b0.graaff@gentoo
1 commit: 621e6056133b2a4d9feda0a5035217e8084732b0
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 16 09:27:10 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 09:30:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=621e6056
7
8 dev-ruby/liquid-c: 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 dev-ruby/liquid-c/liquid-c-4.0.0.ebuild | 37 ---------------------------------
14 1 file changed, 37 deletions(-)
15
16 diff --git a/dev-ruby/liquid-c/liquid-c-4.0.0.ebuild b/dev-ruby/liquid-c/liquid-c-4.0.0.ebuild
17 deleted file mode 100644
18 index 859ab056980..00000000000
19 --- a/dev-ruby/liquid-c/liquid-c-4.0.0.ebuild
20 +++ /dev/null
21 @@ -1,37 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -USE_RUBY="ruby23 ruby24 ruby25 ruby26"
27 -
28 -RUBY_FAKEGEM_TASK_DOC=""
29 -RUBY_FAKEGEM_TASK_TEST=""
30 -RUBY_FAKEGEM_EXTRADOC="README.md"
31 -
32 -inherit multilib ruby-fakegem
33 -
34 -DESCRIPTION="Liquid performance extension in C"
35 -HOMEPAGE="https://github.com/Shopify/liquid-c"
36 -
37 -LICENSE="MIT"
38 -SLOT="4"
39 -KEYWORDS="~amd64 ~arm64"
40 -IUSE=""
41 -
42 -MY_PN=${PN/-/_}
43 -
44 -ruby_add_rdepend ">=dev-ruby/liquid-3.0.0:*"
45 -
46 -all_ruby_prepare() {
47 - sed -i -e "s/-Werror//" ext/${MY_PN}/extconf.rb || die
48 - sed -i -e "/[Bb]undler/d" Rakefile || die
49 -}
50 -
51 -each_ruby_configure() {
52 - ${RUBY} -Cext/${MY_PN} extconf.rb || die
53 -}
54 -
55 -each_ruby_compile() {
56 - emake V=1 -Cext/${MY_PN}
57 - cp ext/${MY_PN}/${MY_PN}$(get_modname) lib/ || die
58 -}