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 0EABC158086 for ; Thu, 16 Dec 2021 10:16:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B946E2BC023; Thu, 16 Dec 2021 10:16:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 722782BC020 for ; Thu, 16 Dec 2021 10:16: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 4F35A3433C5 for ; Thu, 16 Dec 2021 10:16:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2626244 for ; Thu, 16 Dec 2021 10:16:39 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1639649793.4c21d06142bc7850bfba6e06a417e18ff6191ea7.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/duktape-rb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild X-VCS-Directories: dev-ruby/duktape-rb/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 4c21d06142bc7850bfba6e06a417e18ff6191ea7 X-VCS-Branch: master Date: Thu, 16 Dec 2021 10:16: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: 5acbcb99-1f19-4db0-9560-8400edb1a200 X-Archives-Hash: e457f81d2109f47e89dc3eae1eb10ab6 commit: 4c21d06142bc7850bfba6e06a417e18ff6191ea7 Author: Marek Szuba gentoo org> AuthorDate: Thu Dec 16 10:11:23 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Thu Dec 16 10:16:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c21d061 dev-ruby/duktape-rb: drop 2.3.0.0-r2 Signed-off-by: Marek Szuba gentoo.org> dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild | 51 ------------------------ 1 file changed, 51 deletions(-) diff --git a/dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild b/dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild deleted file mode 100644 index 9b5790032cb5..000000000000 --- a/dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_GEMSPEC="duktape.gemspec" -RUBY_FAKEGEM_NAME="duktape" - -inherit ruby-fakegem - -MY_PN=${PN/-/\.} -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Ruby bindings to the Duktape JavaScript interpeter" -HOMEPAGE="https://github.com/judofyr/duktape.rb" -SRC_URI="https://github.com/judofyr/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ppc ~riscv" - -COMMON_DEPEND="dev-lang/duktape:=" -DEPEND+="${COMMON_DEPEND}" -RDEPEND+="${COMMON_DEPEND}" - -ruby_add_bdepend " - dev-ruby/pkg-config - dev-ruby/rake-compiler - dev-ruby/sdoc -" - -PATCHES=( - "${FILESDIR}"/${PN}-2.3.0.0_duktape-2.5.0-tests.patch - "${FILESDIR}"/${PN}-2.3.0.0_use-system-duktape.patch -) - -RUBY_S=${MY_P} - -all_ruby_prepare() { - rm ext/duktape/duktape.{c,h} ext/duktape/duk_config.h || die "Failed to remove bundled duktape" -} - -each_ruby_configure() { - ${RUBY} -C ext/duktape extconf.rb || die "extconf.rb failed" -} - -each_ruby_compile() { - ${RUBY} -S rake compile -}