From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-ruby/safe_yaml/Manifest | 1 + dev-ruby/safe_yaml/metadata.xml | 5 +++++ dev-ruby/safe_yaml/safe_yaml-1.0.4-r1.ebuild | 33 ++++++++++++++++++++++++++++ dev-ruby/safe_yaml/safe_yaml-1.0.4-r2.ebuild | 33 ++++++++++++++++++++++++++++ dev-ruby/safe_yaml/safe_yaml-1.0.4.ebuild | 33 ++++++++++++++++++++++++++++ 5 files changed, 105 insertions(+) create mode 100644 dev-ruby/safe_yaml/Manifest create mode 100644 dev-ruby/safe_yaml/metadata.xml create mode 100644 dev-ruby/safe_yaml/safe_yaml-1.0.4-r1.ebuild create mode 100644 dev-ruby/safe_yaml/safe_yaml-1.0.4-r2.ebuild create mode 100644 dev-ruby/safe_yaml/safe_yaml-1.0.4.ebuild (limited to 'dev-ruby/safe_yaml') diff --git a/dev-ruby/safe_yaml/Manifest b/dev-ruby/safe_yaml/Manifest new file mode 100644 index 000000000000..51c891bb23e7 --- /dev/null +++ b/dev-ruby/safe_yaml/Manifest @@ -0,0 +1 @@ +DIST safe_yaml-1.0.4.gem 30208 SHA256 248193992ef1730a0c9ec579999ef2256a2b3a32a9bd9d708a1e12544a489ec2 SHA512 ecc944a6e5f0862acf1413d7ab38bd35b56405893bb8064be2b8a056f0164d3710afaa2f6ef65868770e855ecf54a87bf9ddae2241c3c2957ca001ca04b04c5a WHIRLPOOL ae637634e0c9747fe27ca8519d8f7a4fafbfac416c235e55222f29ee72bf07ec4f8c79f8b1395236fa5c7e1afb7ee78aa9945d3b327c93dc86612b2cbfdca6c6 diff --git a/dev-ruby/safe_yaml/metadata.xml b/dev-ruby/safe_yaml/metadata.xml new file mode 100644 index 000000000000..852136183369 --- /dev/null +++ b/dev-ruby/safe_yaml/metadata.xml @@ -0,0 +1,5 @@ + + + +ruby + diff --git a/dev-ruby/safe_yaml/safe_yaml-1.0.4-r1.ebuild b/dev-ruby/safe_yaml/safe_yaml-1.0.4-r1.ebuild new file mode 100644 index 000000000000..5ebccb71f2d3 --- /dev/null +++ b/dev-ruby/safe_yaml/safe_yaml-1.0.4-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_RECIPE_TEST="none" + +inherit ruby-fakegem + +DESCRIPTION="Parse YAML safely, without that pesky arbitrary object deserialization vulnerability" +HOMEPAGE="https://dtao.github.com/safe_yaml" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="test" + +ruby_add_bdepend "test? ( dev-ruby/hashie + dev-ruby/heredoc_unindent + dev-ruby/rspec:2 )" + +each_ruby_test() { + # Run specs with monkeypatch + ${RUBY} -S rspec --tag ~libraries || die + + # Running specs without monkeypatch + ${RUBY} -S rspec --tag libraries || die +} diff --git a/dev-ruby/safe_yaml/safe_yaml-1.0.4-r2.ebuild b/dev-ruby/safe_yaml/safe_yaml-1.0.4-r2.ebuild new file mode 100644 index 000000000000..05f7e82dddd0 --- /dev/null +++ b/dev-ruby/safe_yaml/safe_yaml-1.0.4-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_RECIPE_TEST="none" + +inherit ruby-fakegem + +DESCRIPTION="Parse YAML safely, without that pesky arbitrary object deserialization vulnerability" +HOMEPAGE="https://dtao.github.com/safe_yaml" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="test" + +ruby_add_bdepend "test? ( dev-ruby/hashie + dev-ruby/heredoc_unindent + dev-ruby/rspec:3 )" + +each_ruby_test() { + # Run specs with monkeypatch + ${RUBY} -S rspec-3 --tag ~libraries || die + + # Running specs without monkeypatch + ${RUBY} -S rspec-3 --tag libraries || die +} diff --git a/dev-ruby/safe_yaml/safe_yaml-1.0.4.ebuild b/dev-ruby/safe_yaml/safe_yaml-1.0.4.ebuild new file mode 100644 index 000000000000..4dea9cf7475e --- /dev/null +++ b/dev-ruby/safe_yaml/safe_yaml-1.0.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby19 ruby20" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_RECIPE_TEST="none" + +inherit ruby-fakegem + +DESCRIPTION="Parse YAML safely, without that pesky arbitrary object deserialization vulnerability" +HOMEPAGE="https://dtao.github.com/safe_yaml" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 ~ppc ~ppc64 x86" +IUSE="test" + +ruby_add_bdepend "test? ( dev-ruby/hashie + dev-ruby/heredoc_unindent + dev-ruby/rspec:2 )" + +each_ruby_test() { + # Run specs with monkeypatch + ${RUBY} -S rspec --tag ~libraries || die + + # Running specs without monkeypatch + ${RUBY} -S rspec --tag libraries || die +} -- cgit v1.2.3-65-gdbad