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 D30EF158086 for ; Sat, 30 Oct 2021 05:16:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 014F6E0823; Sat, 30 Oct 2021 05:16:33 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C822AE0823 for ; Sat, 30 Oct 2021 05:16:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B1C5D343162 for ; Sat, 30 Oct 2021 05:16:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53A6E195 for ; Sat, 30 Oct 2021 05:16:29 +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: <1635570985.99639e0c589a3fe3a6001d6675589f880c03717f.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/charlock_holmes/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/charlock_holmes/charlock_holmes-0.7.7.ebuild X-VCS-Directories: dev-ruby/charlock_holmes/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 99639e0c589a3fe3a6001d6675589f880c03717f X-VCS-Branch: master Date: Sat, 30 Oct 2021 05:16:29 +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: 0cc3bc29-5b27-4a1d-bbf9-a747e24bbc84 X-Archives-Hash: 2b0704acf48413d809c327b08ae3d500 commit: 99639e0c589a3fe3a6001d6675589f880c03717f Author: Hans de Graaff gentoo org> AuthorDate: Sat Oct 30 05:08:02 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Oct 30 05:16:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99639e0c dev-ruby/charlock_holmes: cleanup Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> .../charlock_holmes/charlock_holmes-0.7.7.ebuild | 47 ---------------------- 1 file changed, 47 deletions(-) diff --git a/dev-ruby/charlock_holmes/charlock_holmes-0.7.7.ebuild b/dev-ruby/charlock_holmes/charlock_holmes-0.7.7.ebuild deleted file mode 100644 index a3342a1a238..00000000000 --- a/dev-ruby/charlock_holmes/charlock_holmes-0.7.7.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="README.md" - -inherit ruby-fakegem - -DESCRIPTION="Character encoding detecting library for Ruby using ICU" -HOMEPAGE="https://github.com/brianmario/charlock_holmes" -SRC_URI="https://github.com/brianmario/charlock_holmes/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" - -ruby_add_bdepend "test? ( - dev-ruby/minitest )" - -CDEPEND="dev-libs/icu:= - sys-libs/zlib" -DEPEND+=" ${CDEPEND}" -RDEPEND+=" ${CDEPEND}" - -all_ruby_prepare() { - sed -i -e '/bundler/d' test/helper.rb || die - - # Avoid dependency on rake-compiler - sed -i -e '/rake-compiler/,$ s:^:#:' Rakefile || die -} - -each_ruby_configure() { - ${RUBY} -Cext/${PN} extconf.rb || die -} - -each_ruby_compile() { - emake V=1 -Cext/${PN} - cp ext/${PN}/${PN}$(get_modname) lib/${PN}/ || die -} - -each_ruby_test() { - ${RUBY} -Ilib test/*.rb || die -}