From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1433340-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 273B1158011 for <garchives@archives.gentoo.org>; Sun, 4 Sep 2022 10:54:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59DD0E01E4; Sun, 4 Sep 2022 10:54:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 40E8FE01E4 for <gentoo-commits@lists.gentoo.org>; Sun, 4 Sep 2022 10:54:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7C1A5340EE5 for <gentoo-commits@lists.gentoo.org>; Sun, 4 Sep 2022 10:54:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15F405B5 for <gentoo-commits@lists.gentoo.org>; Sun, 4 Sep 2022 10:54:22 +0000 (UTC) From: "Hans de Graaff" <graaff@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" <graaff@gentoo.org> Message-ID: <1662288854.7d53bf1795570e434f042e4c6f245a216455f989.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rbst/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rbst/rbst-0.6.5.ebuild X-VCS-Directories: dev-ruby/rbst/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 7d53bf1795570e434f042e4c6f245a216455f989 X-VCS-Branch: master Date: Sun, 4 Sep 2022 10:54:22 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 88c5db87-c53e-4d19-b169-4620c0ae0715 X-Archives-Hash: dc9728e7d4daa3da94bf8ef3578b2b8e commit: 7d53bf1795570e434f042e4c6f245a216455f989 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Sun Sep 4 05:53:36 2022 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Sun Sep 4 10:54:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d53bf17 dev-ruby/rbst: drop 0.6.5 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/rbst/rbst-0.6.5.ebuild | 51 ----------------------------------------- 1 file changed, 51 deletions(-) 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 -}