summaryrefslogtreecommitdiff
path: root/dev-ruby/rbst
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-09-04 16:22:09 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-09-04 16:22:09 +0100
commit86eece26841510c190c0b254a24efc4d6b42acec (patch)
treea1931d648bb4ba1c6fc66c1675bf3c68de7351e4 /dev-ruby/rbst
parent2f4adc38bc4dd33f9064b281ada16084185932ec (diff)
gentoo auto-resync : 04:09:2022 - 16:22:09
Diffstat (limited to 'dev-ruby/rbst')
-rw-r--r--dev-ruby/rbst/Manifest1
-rw-r--r--dev-ruby/rbst/rbst-0.6.5.ebuild51
2 files changed, 0 insertions, 52 deletions
diff --git a/dev-ruby/rbst/Manifest b/dev-ruby/rbst/Manifest
index 6e73456daa55..1dc0897af7e2 100644
--- a/dev-ruby/rbst/Manifest
+++ b/dev-ruby/rbst/Manifest
@@ -1,4 +1,3 @@
DIST rbst-0.6.5.tar.gz 15760 BLAKE2B 3bace4401c8c92eba286f242c1e074aa833094c21e4b00bfa2eee982ad8cbb94024dda2210eb1c72ab88293b1a63a62a5bdeafde2615b0430bd0a7cc21ced14c SHA512 2d4a28c70a4925e1ffe0cd2ff10c275f67cae4a918c1064bd73cb8e7e490be251acff09670d78fef1edeb1a7dab8995aa0b4737563a0797ff66c0fee3f89bba2
EBUILD rbst-0.6.5-r1.ebuild 1223 BLAKE2B 2aa02b7a443da34f7737cf8d3a969fca22ac7891b7732099a0af66dd2cd99670ed0caad198ddbb43a738b683fddce41dd8585648ecb7394f147e6bd3ebc6ac3d SHA512 9a77fb0a811524ff293e9cd69cd2fe456a5ad396cf94c1f6d55c8021e7de0b93f988830149c9e23cad7595f4a4985f8dc9eabd9ac9a152a5ed7b21b86d82b608
-EBUILD rbst-0.6.5.ebuild 1132 BLAKE2B 14b2ad516618aafcb59c630b66274a80f8bbaef53edbd3dd783c1935541db02dc09022466fc27619ab6db6a53c94deec077d19fa1586a34400ca4a443c71929d SHA512 1ffc64c5ac70f6cec50769fd4ee09d3fd83e8628df4edc36d1bcb2c53ed92235e9dfc52cb1855e5730db2ec414e52cb6df90a18102fb5d3aaef3b83473afc144
MISC metadata.xml 248 BLAKE2B f308d2aa052d11e427850af58bbebf95e7773f5562ed221f39043474b4c3827d724d49667edf1874272a5586a13201159f40e8f5eafb7e400e79c6566e1a6ac2 SHA512 b875c838394523483ae7d93585207eb3c642a345bbb08e1dcef3ceb737c813fa779e2f5479d48cdcc30732b8a0a9e6ecc648df940def6731e4dff43b23786e6d
diff --git a/dev-ruby/rbst/rbst-0.6.5.ebuild b/dev-ruby/rbst/rbst-0.6.5.ebuild
deleted file mode 100644
index 7390ccd1e168..000000000000
--- a/dev-ruby/rbst/rbst-0.6.5.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
-USE_RUBY="ruby25 ruby26 ruby27"
-
-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/alphabetum/rbst"
-SRC_URI="https://github.com/alphabetum/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
-
- # force our python version
- sed -i -e "s:\(python_path=\"\)python:\1${EPYTHON}:" lib/rbst.rb || die
- python_fix_shebang lib/rst2parts
-}