blob: 8b44aba69e0c9055156aebcea07e3991ba8708f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
USE_RUBY="ruby30 ruby31 ruby32"
RUBY_FAKEGEM_NAME="RbST"
RUBY_FAKEGEM_GEMSPEC="RbST.gemspec"
inherit python-single-r1 ruby-fakegem
DESCRIPTION="A simple Ruby wrapper for processing rST via docutils"
HOMEPAGE="https://github.com/xwmx/rbst/"
SRC_URI="
https://github.com/xwmx/rbst/archive/${PV}.tar.gz -> ${P}.tar.gz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
dev-python/docutils
${PYTHON_DEPS}
"
DEPEND="
test? ( ${RDEPEND} )
"
ruby_add_bdepend "
test? (
>=dev-ruby/minitest-5.14.0:5
>=dev-ruby/mocha-1.1.0:1.0
)
"
pkg_setup() {
python-single-r1_pkg_setup
ruby-ng_pkg_setup
}
all_ruby_prepare() {
# do not use bundler
sed -i -e '/bundler/,/end/d' \
Rakefile test/helper.rb || die
# do not use python2
sed -i -e '/python2/,/end/d' \
test/test_rbst.rb || die
# broken by new docutils
sed -i -e '/it.*LaTeX/,/end/d' \
test/test_rbst.rb || die
# force our python version
sed -i -e "s:\(python_path=\"\)python:\1${EPYTHON}:" lib/rbst.rb || die
python_fix_shebang lib/rst2parts
}
|