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/rbst/
Date: Sun, 04 Sep 2022 10:54:25
Message-Id: 1662288854.7d53bf1795570e434f042e4c6f245a216455f989.graaff@gentoo
1 commit: 7d53bf1795570e434f042e4c6f245a216455f989
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 4 05:53:36 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 4 10:54:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d53bf17
7
8 dev-ruby/rbst: drop 0.6.5
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/rbst/rbst-0.6.5.ebuild | 51 -----------------------------------------
13 1 file changed, 51 deletions(-)
14
15 diff --git a/dev-ruby/rbst/rbst-0.6.5.ebuild b/dev-ruby/rbst/rbst-0.6.5.ebuild
16 deleted file mode 100644
17 index 7390ccd1e168..000000000000
18 --- a/dev-ruby/rbst/rbst-0.6.5.ebuild
19 +++ /dev/null
20 @@ -1,51 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -PYTHON_COMPAT=( python3_{7..9} )
26 -USE_RUBY="ruby25 ruby26 ruby27"
27 -
28 -RUBY_FAKEGEM_NAME="RbST"
29 -RUBY_FAKEGEM_GEMSPEC="RbST.gemspec"
30 -
31 -inherit python-single-r1 ruby-fakegem
32 -
33 -DESCRIPTION="A simple Ruby wrapper for processing rST via docutils"
34 -HOMEPAGE="https://github.com/alphabetum/rbst"
35 -SRC_URI="https://github.com/alphabetum/rbst/archive/${PV}.tar.gz -> ${P}.tar.gz"
36 -
37 -LICENSE="MIT"
38 -SLOT="0"
39 -KEYWORDS="~amd64"
40 -IUSE="test"
41 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
42 -
43 -RDEPEND="
44 - dev-python/docutils
45 - ${PYTHON_DEPS}"
46 -DEPEND="
47 - test? ( ${RDEPEND} )"
48 -
49 -ruby_add_bdepend "
50 - test? (
51 - >=dev-ruby/minitest-5.14.0:5
52 - >=dev-ruby/mocha-1.1.0:1.0
53 - )"
54 -
55 -pkg_setup() {
56 - python-single-r1_pkg_setup
57 - ruby-ng_pkg_setup
58 -}
59 -
60 -all_ruby_prepare() {
61 - # do not use bundler
62 - sed -i -e '/bundler/,/end/d' \
63 - Rakefile test/helper.rb || die
64 - # do not use python2
65 - sed -i -e '/python2/,/end/d' \
66 - test/test_rbst.rb || die
67 -
68 - # force our python version
69 - sed -i -e "s:\(python_path=\"\)python:\1${EPYTHON}:" lib/rbst.rb || die
70 - python_fix_shebang lib/rst2parts
71 -}