Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rbst/
Date: Fri, 18 Sep 2020 09:38:21
Message-Id: 1600421881.840161ce0fe9192eb75bdd8edf90284dd401907c.mgorny@gentoo
1 commit: 840161ce0fe9192eb75bdd8edf90284dd401907c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 18 09:29:00 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 18 09:38:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=840161ce
7
8 dev-ruby/rbst: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-ruby/rbst/Manifest | 1 -
13 dev-ruby/rbst/rbst-0.5.1.ebuild | 51 -----------------------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-ruby/rbst/Manifest b/dev-ruby/rbst/Manifest
17 index 6b475f235b8..97279cd541f 100644
18 --- a/dev-ruby/rbst/Manifest
19 +++ b/dev-ruby/rbst/Manifest
20 @@ -1,2 +1 @@
21 -DIST rbst-0.5.1.tar.gz 14039 BLAKE2B 7399e92f98c650842464ea9240775ad776ec8d574c578d8da764778bbe8050be429e2521df82b3b04a0bf9cd18bef4f114890d54ef8d6f34c797f0f2f2e35bc2 SHA512 a7fffc1ccf495c1858d6d9fadd38a4d6a2c27a2da8eda8dad038f4ab881f4521223a35f97d4018d25b32c2621132a623040ba930494b36e1385356ecb87fecdc
22 DIST rbst-0.6.5.tar.gz 15760 BLAKE2B 3bace4401c8c92eba286f242c1e074aa833094c21e4b00bfa2eee982ad8cbb94024dda2210eb1c72ab88293b1a63a62a5bdeafde2615b0430bd0a7cc21ced14c SHA512 2d4a28c70a4925e1ffe0cd2ff10c275f67cae4a918c1064bd73cb8e7e490be251acff09670d78fef1edeb1a7dab8995aa0b4737563a0797ff66c0fee3f89bba2
23
24 diff --git a/dev-ruby/rbst/rbst-0.5.1.ebuild b/dev-ruby/rbst/rbst-0.5.1.ebuild
25 deleted file mode 100644
26 index d26acad50ed..00000000000
27 --- a/dev-ruby/rbst/rbst-0.5.1.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python{3_6,3_7} )
35 -USE_RUBY="ruby23 ruby24 ruby25 ruby26"
36 -
37 -RUBY_FAKEGEM_NAME="RbST"
38 -RUBY_FAKEGEM_GEMSPEC="RbST.gemspec"
39 -
40 -inherit python-single-r1 ruby-fakegem
41 -
42 -DESCRIPTION="A simple Ruby wrapper for processing rST via docutils"
43 -HOMEPAGE="https://github.com/alphabetum/rbst"
44 -SRC_URI="https://github.com/alphabetum/rbst/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -KEYWORDS="~amd64"
49 -IUSE="test"
50 -
51 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
52 -
53 -RDEPEND="dev-python/docutils ${PYTHON_DEPS}"
54 -DEPEND="test? ( ${RDEPEND} )"
55 -
56 -ruby_add_bdepend "
57 - test? (
58 - >=dev-ruby/mocha-1.1.0:1.0
59 - >=dev-ruby/shoulda-3.5.0:3
60 - >=dev-ruby/test-unit-3.0.9:2
61 - )"
62 -
63 -# Tests are pretty much useless as they depend on very specific output
64 -# from an unknown docutils version.
65 -RESTRICT="test"
66 -
67 -pkg_setup() {
68 - python-single-r1_pkg_setup
69 - ruby-ng_pkg_setup
70 -}
71 -
72 -all_ruby_prepare() {
73 - # do not use bundler
74 - sed -i -e '/bundler/,/end/d' \
75 - Rakefile test/helper.rb || die
76 -
77 - # force our python version
78 - sed -i -e "s:\(python_path=\"\)python:\1${EPYTHON}:" lib/rbst.rb || die
79 - python_fix_shebang lib/rst2parts
80 -}