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 AE7C815811D for ; Wed, 5 Jul 2023 16:36:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02944E0897; Wed, 5 Jul 2023 16:36:53 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E09E5E0897 for ; Wed, 5 Jul 2023 16:36:52 +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 0A40F341076 for ; Wed, 5 Jul 2023 16:36:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D41AACF for ; Wed, 5 Jul 2023 16:36:49 +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: <1688575005.fa8cd43fbc05dda7af27403d695f039d6f498f5c.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/docile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/docile/docile-1.4.0.ebuild X-VCS-Directories: dev-ruby/docile/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: fa8cd43fbc05dda7af27403d695f039d6f498f5c X-VCS-Branch: master Date: Wed, 5 Jul 2023 16:36:49 +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: e3ffbc57-68e1-46c6-b47b-b303cd5788fc X-Archives-Hash: 27f27bbce17878fdaf67f22b4df47dd5 commit: fa8cd43fbc05dda7af27403d695f039d6f498f5c Author: Hans de Graaff gentoo org> AuthorDate: Wed Jul 5 16:20:01 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Jul 5 16:36:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa8cd43f dev-ruby/docile: drop 1.4.0 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/docile/docile-1.4.0.ebuild | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/dev-ruby/docile/docile-1.4.0.ebuild b/dev-ruby/docile/docile-1.4.0.ebuild deleted file mode 100644 index a32b1cd6ff1d..000000000000 --- a/dev-ruby/docile/docile-1.4.0.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_RUBY="ruby26 ruby27 ruby30 ruby31" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_EXTRADOC="README.md HISTORY.md" - -RUBY_FAKEGEM_GEMSPEC="docile.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Turns any Ruby object into a DSL" -HOMEPAGE="https://ms-ati.github.io/docile/" -SRC_URI="https://github.com/ms-ati/docile/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~riscv" -IUSE="" - -all_ruby_prepare() { - sed -i -e '/require \"github\/markup\"/d' Rakefile || die - sed -i -e '/simplecov/,/unshift/ s:^:#:' spec/spec_helper.rb || die - - sed -i -e 's:_relative ": "./:' -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die -}