From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 77764158020 for ; Sat, 3 Dec 2022 07:13:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3CBAE0907; Sat, 3 Dec 2022 07:13:42 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 9DBFBE0907 for ; Sat, 3 Dec 2022 07:13:42 +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 E18DE340A9D for ; Sat, 3 Dec 2022 07:13:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C7B2776 for ; Sat, 3 Dec 2022 07:13:39 +0000 (UTC) From: "Hans de Graaff" 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" Message-ID: <1670051596.fbc3fff45eb6f7ed039d4bff8e1674bebdb8b5c8.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-xslt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/ruby-xslt/ruby-xslt-0.9.10.ebuild X-VCS-Directories: dev-ruby/ruby-xslt/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: fbc3fff45eb6f7ed039d4bff8e1674bebdb8b5c8 X-VCS-Branch: master Date: Sat, 3 Dec 2022 07:13:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 78367e2a-f163-44ea-a08c-081a2430aef1 X-Archives-Hash: 627deb31563986043a604addc183a29e commit: fbc3fff45eb6f7ed039d4bff8e1674bebdb8b5c8 Author: Hans de Graaff gentoo org> AuthorDate: Fri Dec 2 13:37:46 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Dec 3 07:13:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc3fff4 dev-ruby/ruby-xslt: drop 0.9.10 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/ruby-xslt/ruby-xslt-0.9.10.ebuild | 46 ------------------------------ 1 file changed, 46 deletions(-) diff --git a/dev-ruby/ruby-xslt/ruby-xslt-0.9.10.ebuild b/dev-ruby/ruby-xslt/ruby-xslt-0.9.10.ebuild deleted file mode 100644 index d1f5ff9fe47c..000000000000 --- a/dev-ruby/ruby-xslt/ruby-xslt-0.9.10.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="" - -RUBY_FAKEGEM_EXTRADOC="ChangeLog.rdoc AUTHORS.rdoc README.rdoc" - -inherit multilib ruby-fakegem - -DESCRIPTION="A Ruby class for processing XSLT" -HOMEPAGE="https://github.com/glejeune/ruby-xslt" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc64 x86" -IUSE="" - -DEPEND+=" >=dev-libs/libxslt-1.1.12" -RDEPEND+=" >=dev-libs/libxslt-1.1.12" - -all_ruby_prepare() { - # Remove forced -g compiler flag. - sed -i -e 's/-g //' ext/xslt_lib/extconf.rb || die - - # One test fails but we have installed this code already for a long - # time so this probably isn't a regression. No upstream bug tracker - # to report the problem :-( - sed -i -e '/test_transformation_error/,/^ end/ s:^:#:' test/test.rb || die -} - -each_ruby_configure() { - ${RUBY} -C ext/xslt_lib extconf.rb || die -} - -each_ruby_compile() { - emake -C ext/xslt_lib V=1 - cp ext/xslt_lib/xslt_lib$(get_modname) lib/xml/ || die -} - -each_ruby_test() { - ${RUBY} -I../lib:lib -Ctest test.rb || die -}