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 8E071139368 for ; Sun, 8 Aug 2021 05:56:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70CBFE086D; Sun, 8 Aug 2021 05:56:57 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DF532E0877 for ; Sun, 8 Aug 2021 05:56:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 760BD342C9E for ; Sun, 8 Aug 2021 05:56:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE1487BD for ; Sun, 8 Aug 2021 05:56:53 +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: <1628401527.7f312e3c16cf367b060c8d8f4016df61da1912cc.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sorted_set/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/sorted_set/Manifest dev-ruby/sorted_set/metadata.xml dev-ruby/sorted_set/sorted_set-1.0.3.ebuild X-VCS-Directories: dev-ruby/sorted_set/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 7f312e3c16cf367b060c8d8f4016df61da1912cc X-VCS-Branch: master Date: Sun, 8 Aug 2021 05:56:53 +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: 684b8b89-b465-481f-8f08-f7572cc8321d X-Archives-Hash: f5d02c3b328569dc7c5067e3c7249e51 commit: 7f312e3c16cf367b060c8d8f4016df61da1912cc Author: Hans de Graaff gentoo org> AuthorDate: Sun Aug 8 05:45:27 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Aug 8 05:45:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f312e3c dev-ruby/sorted_set: import of 1.0.3 New dependency for dev-ruby/bunny. Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/sorted_set/Manifest | 1 + dev-ruby/sorted_set/metadata.xml | 8 ++++++++ dev-ruby/sorted_set/sorted_set-1.0.3.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 33 insertions(+) diff --git a/dev-ruby/sorted_set/Manifest b/dev-ruby/sorted_set/Manifest new file mode 100644 index 00000000000..f467e2c02f7 --- /dev/null +++ b/dev-ruby/sorted_set/Manifest @@ -0,0 +1 @@ +DIST sorted_set-1.0.3.tar.gz 4863 BLAKE2B 43dc21205db8cdef8be016d041607cecc7c23a847b2622518f212fe65d00b4bd63bc77c356f3e96ee84c6a1a702641f8248bb3d3201d7252652fd2fac7900d88 SHA512 67236fdac7d024203dd8d7432ec575008a14ad1e54367f6afb168711158ef5abac24629417751b0e11f641607d0a83689ec79e0c42b44025a6a7671cdcf3a70a diff --git a/dev-ruby/sorted_set/metadata.xml b/dev-ruby/sorted_set/metadata.xml new file mode 100644 index 00000000000..3df5c34efc9 --- /dev/null +++ b/dev-ruby/sorted_set/metadata.xml @@ -0,0 +1,8 @@ + + + + + ruby@gentoo.org + Gentoo Ruby Project + + diff --git a/dev-ruby/sorted_set/sorted_set-1.0.3.ebuild b/dev-ruby/sorted_set/sorted_set-1.0.3.ebuild new file mode 100644 index 00000000000..886a0324f92 --- /dev/null +++ b/dev-ruby/sorted_set/sorted_set-1.0.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_GEMSPEC="sorted_set.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Implements a variant of Set whose elements are sorted in ascending order" +HOMEPAGE="https://github.com/knu/sorted_set" +SRC_URI="https://github.com/knu/sorted_set/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_rdepend " + dev-ruby/rbtree + dev-ruby/set:0 +"