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 D95A21396D9 for ; Sat, 14 Oct 2017 08:08:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F3612BC003; Sat, 14 Oct 2017 08:08:17 +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 1C9EE2BC003 for ; Sat, 14 Oct 2017 08:08:17 +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 1C45E33BEDC for ; Sat, 14 Oct 2017 08:08:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D3C8B909E for ; Sat, 14 Oct 2017 08:08:14 +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: <1507968486.3bc719876c80841779ff9e65bf55c9368b70c66b.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/maildir/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/maildir/Manifest dev-ruby/maildir/maildir-2.2.1.ebuild dev-ruby/maildir/metadata.xml X-VCS-Directories: dev-ruby/maildir/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 3bc719876c80841779ff9e65bf55c9368b70c66b X-VCS-Branch: master Date: Sat, 14 Oct 2017 08:08:14 +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-Archives-Salt: 88292a56-2ae0-4785-854e-84a8def7aaf2 X-Archives-Hash: 68df95f92f39413c341bb942eb7d87eb commit: 3bc719876c80841779ff9e65bf55c9368b70c66b Author: Hans de Graaff gentoo org> AuthorDate: Sat Oct 14 08:07:46 2017 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Oct 14 08:08:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bc71987 dev-ruby/maildir: initial import of 2.2.1 Package-Manager: Portage-2.3.8, Repoman-2.3.3 dev-ruby/maildir/Manifest | 1 + dev-ruby/maildir/maildir-2.2.1.ebuild | 31 +++++++++++++++++++++++++++++++ dev-ruby/maildir/metadata.xml | 11 +++++++++++ 3 files changed, 43 insertions(+) diff --git a/dev-ruby/maildir/Manifest b/dev-ruby/maildir/Manifest new file mode 100644 index 00000000000..14e1e159ba9 --- /dev/null +++ b/dev-ruby/maildir/Manifest @@ -0,0 +1 @@ +DIST maildir-2.2.1.gem 15360 SHA256 40739ec2778b54691a3b3d4040f75aa56804e1e5675ce9d4e42938312ef6b0c2 SHA512 4c366333c802bbe0cbd19e6abaef1fa31ad84596518d24ddcc33aa3afe39890896d107bc864c68787c90c3a38115979f6a4fe8b442aecaead39306122d560f18 WHIRLPOOL 6d1645435b13fb43f2b08902dd393ab4c5faf73e82916448b66a879327f1fa8f6dfb74a8746daa6b1288746712e22e744e0f886cec9ae29d0d33ff9468b279f4 diff --git a/dev-ruby/maildir/maildir-2.2.1.ebuild b/dev-ruby/maildir/maildir-2.2.1.ebuild new file mode 100644 index 00000000000..06999901332 --- /dev/null +++ b/dev-ruby/maildir/maildir-2.2.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby22 ruby23 ruby24" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" + +RUBY_FAKEGEM_EXTRAINSTALL="README.rdoc" + +inherit ruby-fakegem + +DESCRIPTION="A library for reading and writing arbitrary messages in DJB's maildir format" +HOMEPAGE="https://github.com/ktheory/maildir" +LICENSE="MIT" + +KEYWORDS="~amd64" +SLOT="2" +IUSE="test" + +ruby_add_bdepend " + test? ( >=dev-ruby/fakefs-0.3.2 dev-ruby/mail dev-ruby/shoulda-context dev-ruby/test-unit:2 )" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' Rakefile test/helper.rb || die + sed -i -e 's/shoulda/shoulda-context/' test/helper.rb || die + + # Avoid tests that appear to need activesupport for .blank? support + sed -i -e '/add and remove flags/,/^ end/ s:^:#:' test/test_message.rb || die + sed -i -e '/be removed from flag list/,/^ end/ s:^:#:' test/test_maildir.rb || die +} diff --git a/dev-ruby/maildir/metadata.xml b/dev-ruby/maildir/metadata.xml new file mode 100644 index 00000000000..524f23aed80 --- /dev/null +++ b/dev-ruby/maildir/metadata.xml @@ -0,0 +1,11 @@ + + + + + ruby@gentoo.org + Gentoo Ruby Project + + + ktheory/maildir + +