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 7E396138330 for ; Sun, 14 Jan 2018 07:25:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 462F3E086F; Sun, 14 Jan 2018 07:25:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 1FFEAE086F for ; Sun, 14 Jan 2018 07:25:02 +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 CC3A5335C4A for ; Sun, 14 Jan 2018 07:25:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDF6F186 for ; Sun, 14 Jan 2018 07:24:59 +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: <1515914661.c6d5c808b9e51be11374e067b837d64a61c5ada8.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/docile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/docile/Manifest dev-ruby/docile/docile-1.2.0.ebuild X-VCS-Directories: dev-ruby/docile/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c6d5c808b9e51be11374e067b837d64a61c5ada8 X-VCS-Branch: master Date: Sun, 14 Jan 2018 07:24:59 +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: 4b60b1b7-3086-45bf-9067-9c9e434c37c5 X-Archives-Hash: 57854e76822c695e1372b39da9c9c803 commit: c6d5c808b9e51be11374e067b837d64a61c5ada8 Author: Hans de Graaff gentoo org> AuthorDate: Sun Jan 14 07:24:21 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Jan 14 07:24:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6d5c808 dev-ruby/docile: add 1.2.0 Package-Manager: Portage-2.3.13, Repoman-2.3.3 dev-ruby/docile/Manifest | 1 + dev-ruby/docile/docile-1.2.0.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-ruby/docile/Manifest b/dev-ruby/docile/Manifest index f63df65860c..d57663ffb8c 100644 --- a/dev-ruby/docile/Manifest +++ b/dev-ruby/docile/Manifest @@ -1 +1,2 @@ DIST docile-1.1.5.gem 14848 BLAKE2B a8689b3d1a23cac3f62c9fa5d6dd6425bd780a01ffaf96869a57d1bb0a7756b2d8242d77726ed7286e3405c0abc86644e6ac6b51722d120d4c541e4406d7de4d SHA512 3bdb2e42d83fd0050bf541d4dad0120180b63f80ab5ace1504ab7a12bd38397a89c74855437698267b4a87d72dd02dd4ab4ec365a2a4610828d2b100c2a9e3d4 +DIST docile-1.2.0.gem 16896 BLAKE2B eadbf625fe1f26bb63cafdf2c30e53d0f7362e19baeac2ffaa8bb8ecc01453bdd7a5d1b5005bf60a892b6f48188f0d7d3e2a1d75b53cefddc206e11c0384982b SHA512 328ef09e4d9981aeaec8e3d97ed54a1806ca1de8e5a00b6f2b311e377fcb986eef1b7fbfa8a27992d235f93629a636fa20a5c347ae7310f325af7e4af88ebccc diff --git a/dev-ruby/docile/docile-1.2.0.ebuild b/dev-ruby/docile/docile-1.2.0.ebuild new file mode 100644 index 00000000000..e38d1a5e24d --- /dev/null +++ b/dev-ruby/docile/docile-1.2.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby22 ruby23 ruby24" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.md HISTORY.md" + +inherit ruby-fakegem + +DESCRIPTION="Turns any Ruby object into a DSL" +HOMEPAGE="https://ms-ati.github.io/docile/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +all_ruby_prepare() { + sed -i -e '/require \"github\/markup\"/d' Rakefile || die + sed -i -e '/^unless on/,/^end/ s:^:#:' spec/spec_helper.rb || die +}