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 C54FE138359 for ; Sat, 21 Nov 2020 06:39:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8FDEE07AE; Sat, 21 Nov 2020 06:39:52 +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 BEEA7E07A7 for ; Sat, 21 Nov 2020 06:39:52 +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 4B70D340E0F for ; Sat, 21 Nov 2020 06:39:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88699451 for ; Sat, 21 Nov 2020 06:39: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: <1605940529.c79407021747161ea702d621c0160a94d5cc0a02.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/vcard/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/vcard/Manifest dev-ruby/vcard/vcard-0.3.0.ebuild X-VCS-Directories: dev-ruby/vcard/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c79407021747161ea702d621c0160a94d5cc0a02 X-VCS-Branch: master Date: Sat, 21 Nov 2020 06:39: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: 0e2d13d4-db16-41e1-98e1-348ce962d5b3 X-Archives-Hash: 15aff27ef4fac7543298a2d2958f10e2 commit: c79407021747161ea702d621c0160a94d5cc0a02 Author: Hans de Graaff gentoo org> AuthorDate: Sat Nov 21 06:35:29 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Nov 21 06:35:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7940702 dev-ruby/vcard: add 0.3.0 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/vcard/Manifest | 1 + dev-ruby/vcard/vcard-0.3.0.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-ruby/vcard/Manifest b/dev-ruby/vcard/Manifest index bb311958aac..a03df8b0bc0 100644 --- a/dev-ruby/vcard/Manifest +++ b/dev-ruby/vcard/Manifest @@ -1 +1,2 @@ DIST vcard-0.2.16.gem 52224 BLAKE2B b8ee48d597e00fad376d632813fba61a22ae5b6b16ce3fc9c7b79839fd2f0d0f87b8bede3d3f6ebd41bb205a222fde540f4d3c46fcef8eb9b5a014ce8abf14da SHA512 33c8183d05b160e65a89747587f174dfa91b299c178c265645d271b54506734e818e3d3ac51a5b20fcddbc489b9ff910e321e5a1160f7b6254bc16faa185634b +DIST vcard-0.3.0.gem 54272 BLAKE2B ed019b7f771dbe2da574fc059dacdc8eb5b5eca735abe15c2d8aec08b4f91b22c413f317d4f39f100bc78d16bf8e3edf0e0a99d55b8fbdda5b47315bc33d37b1 SHA512 5b54bada881f4d6cce66bb76c15b3594e310659024d163598f857c4c434379c57e07f28873646d0a5a5aecef4313c8fc731313e80df5542e982f333c05802d4d diff --git a/dev-ruby/vcard/vcard-0.3.0.ebuild b/dev-ruby/vcard/vcard-0.3.0.ebuild new file mode 100644 index 00000000000..8c9fdf412fb --- /dev/null +++ b/dev-ruby/vcard/vcard-0.3.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby25 ruby26 ruby27" + +# Avoid the complexity of the "rake" recipe and run testrb-2 manually. +RUBY_FAKEGEM_RECIPE_TEST=none +RUBY_FAKEGEM_RECIPE_DOC=none + +inherit ruby-fakegem + +DESCRIPTION="Ruby vcard support extracted from Vpim" +HOMEPAGE="https://github.com/qoobaa/vcard" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )" + +each_ruby_test() { + ruby-ng_testrb-2 --load-path=lib --pattern='.*_test\.rb' test/ +}