From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 096D41388C0 for ; Fri, 26 Feb 2016 06:54:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AABE821C00A; Fri, 26 Feb 2016 06:54:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BC51221C004 for ; Fri, 26 Feb 2016 06:54:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A310340C66 for ; Fri, 26 Feb 2016 06:54:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11A881AE8 for ; Fri, 26 Feb 2016 06:54:06 +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: <1456468566.9902f4f8f0e977ba5311987005b98ec76a9ce2d2.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/jwt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/jwt/Manifest dev-ruby/jwt/jwt-1.5.3.ebuild X-VCS-Directories: dev-ruby/jwt/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 9902f4f8f0e977ba5311987005b98ec76a9ce2d2 X-VCS-Branch: master Date: Fri, 26 Feb 2016 06:54:06 +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: 95379cc5-a11d-4aa7-8f56-9af7dce8a59f X-Archives-Hash: a17fedf14ff1fb22873fb39f9c4357a1 commit: 9902f4f8f0e977ba5311987005b98ec76a9ce2d2 Author: Hans de Graaff gentoo org> AuthorDate: Thu Feb 25 06:35:37 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Feb 26 06:36:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9902f4f8 dev-ruby/jwt: add 1.5.3 Package-Manager: portage-2.2.26 dev-ruby/jwt/Manifest | 1 + dev-ruby/jwt/jwt-1.5.3.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-ruby/jwt/Manifest b/dev-ruby/jwt/Manifest index 52ccbc6..c5fb6da 100644 --- a/dev-ruby/jwt/Manifest +++ b/dev-ruby/jwt/Manifest @@ -1 +1,2 @@ DIST jwt-1.5.2.tar.gz 21131 SHA256 6e628b77e541929f13118344e57511ca9dc08de7dcaf0dc0b6dc5dd3793faeb5 SHA512 9b56bf1fad65318f4c6a6d3bb09bad2ac2661704e4d0ae01eaac5b71bf0486abba573536afa1fa0f00b2b68ea445350f723ac5b73319b238c4d69f10b21d0773 WHIRLPOOL 87a9881eef08b15fdf1295543d332465280d56340d371b021c16663f2d6788944638bf4c9560f3d2f4b6982a105986d59824c0491c64ad40120e52ce252d1b88 +DIST jwt-1.5.3.tar.gz 21972 SHA256 81442b60756812ca54134e4fe69e052c15ab0dc7c40030be415593699bec599b SHA512 6ef91237658911be11dd2bdbe6c16e285015784a0a3f4e756be9d5b9066533ac6891aac94889449b6e6137bfe8d91bd0ee3fa3239f5daf7751a562652481e976 WHIRLPOOL 4578fc0eafd26a912d9347d0c48ab502cad16f6179d9113bb5939d86b2d8edfc0c601485197ba6455023e3a1b0bdd5c8aed6911dccd914102fab2116f3c524a3 diff --git a/dev-ruby/jwt/jwt-1.5.3.ebuild b/dev-ruby/jwt/jwt-1.5.3.ebuild new file mode 100644 index 0000000..f51fc28 --- /dev/null +++ b/dev-ruby/jwt/jwt-1.5.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" + +inherit ruby-fakegem + +DESCRIPTION="A Ruby implementation of JSON Web Token draft 06" +HOMEPAGE="https://github.com/jwt/ruby-jwt" +SRC_URI="https://github.com/jwt/ruby-jwt/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +RUBY_S="ruby-jwt-${PV}" + +all_ruby_prepare() { + sed -i -e "/simplecov/ s:^:#:" \ + -e '/^SimpleCov.configure/,/^end/ s:^:#:' \ + -e '/codeclimate/I s:^:#:' \ + spec/spec_helper.rb || die +}