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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 59DE01382C5 for ; Sat, 23 May 2020 08:03:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A3DAE08EC; Sat, 23 May 2020 08:03:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3F0F1E08EC for ; Sat, 23 May 2020 08:03:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0986934EBD8 for ; Sat, 23 May 2020 08:03:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1351521E for ; Sat, 23 May 2020 08:03:02 +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: <1590220974.aba59edc078932379473d5694d825abcb885b686.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/brotli/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/brotli/Manifest dev-ruby/brotli/brotli-0.2.3.ebuild dev-ruby/brotli/metadata.xml X-VCS-Directories: dev-ruby/brotli/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: aba59edc078932379473d5694d825abcb885b686 X-VCS-Branch: master Date: Sat, 23 May 2020 08:03:02 +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: a0440cf6-2c30-4918-9a22-18fa059e1bdb X-Archives-Hash: 8f5ff2e90d238abe69c0f39a11c351c7 commit: aba59edc078932379473d5694d825abcb885b686 Author: Hans de Graaff gentoo org> AuthorDate: Sat May 23 07:43:15 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat May 23 08:02:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aba59edc dev-ruby/brotli: add 0.2.3 New dependency for dev-ruby/faraday_middleware Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/brotli/Manifest | 1 + dev-ruby/brotli/brotli-0.2.3.ebuild | 39 +++++++++++++++++++++++++++++++++++++ dev-ruby/brotli/metadata.xml | 11 +++++++++++ 3 files changed, 51 insertions(+) diff --git a/dev-ruby/brotli/Manifest b/dev-ruby/brotli/Manifest new file mode 100644 index 00000000000..98e45ea64d1 --- /dev/null +++ b/dev-ruby/brotli/Manifest @@ -0,0 +1 @@ +DIST brotli-0.2.3.tar.gz 63304 BLAKE2B 96321a480e855ae7e77b93c06fd09153611a8a273ba66a8952093f844f6ccfa908d4bcabfd4dde084813f7f3961e8843208ed71f78e91f924bfe7e2ddece3628 SHA512 7d057d0055836c79744b802bb2401630375cc924035e9a45069c54e5df32711b9aa25234f4743aea729526028b804c518f36112ab721a6761b55311d07a8b79e diff --git a/dev-ruby/brotli/brotli-0.2.3.ebuild b/dev-ruby/brotli/brotli-0.2.3.ebuild new file mode 100644 index 00000000000..fab2f12fe16 --- /dev/null +++ b/dev-ruby/brotli/brotli-0.2.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby24 ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_BINWRAP="" + +RUBY_FAKEGEM_GEMSPEC="brotli.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Brotli compressor/decompressor" +HOMEPAGE="https://github.com/miyucy/brotli" +SRC_URI="https://github.com/miyucy/brotli/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND+=" >=app-arch/brotli-1.0.7" +DEPEND+=" >=app-arch/brotli-1.0.7" + +# Depends on the test data in app-arch/brotli +RESTRICT="test" + +each_ruby_configure() { + ${RUBY} -Cext/brotli extconf.rb || die +} + +each_ruby_compile() { + emake V=1 -Cext/brotli + mv ext/brotli/brotli.so lib/brotli/ || die +} diff --git a/dev-ruby/brotli/metadata.xml b/dev-ruby/brotli/metadata.xml new file mode 100644 index 00000000000..eb5be24aa56 --- /dev/null +++ b/dev-ruby/brotli/metadata.xml @@ -0,0 +1,11 @@ + + + + + ruby@gentoo.org + Gentoo Ruby Project + + + miyucy/brotli + +