diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-ruby/spreadsheet | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
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 <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-ruby/spreadsheet')
-rw-r--r-- | dev-ruby/spreadsheet/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/spreadsheet/metadata.xml | 9 | ||||
-rw-r--r-- | dev-ruby/spreadsheet/spreadsheet-0.6.9.ebuild | 30 |
3 files changed, 40 insertions, 0 deletions
diff --git a/dev-ruby/spreadsheet/Manifest b/dev-ruby/spreadsheet/Manifest new file mode 100644 index 000000000000..4232083647b8 --- /dev/null +++ b/dev-ruby/spreadsheet/Manifest @@ -0,0 +1 @@ +DIST spreadsheet-0.6.9.gem 160256 SHA256 3f4c35eff313f1408b77ddc19fa90354472ff6bf82ee9f99faf979b3dc7cfedd SHA512 9400908153a671cfcf17dd9dfa8db7de0a9c95281ba6dbee1ac8002e9f0058616e5887e36eb2e1e2c790516731117d5a0f7efdbadcaaea3c69a8f9aa8d3091ac WHIRLPOOL 23b1f8e7d865c4a500fe006843aebfaa4a68e6089d23a1d0a70a2b9ff211e5240b3ee94f25f08505a16f87d176374cf36ff1cc5af34bdf2663b63ef7ddf1edaa diff --git a/dev-ruby/spreadsheet/metadata.xml b/dev-ruby/spreadsheet/metadata.xml new file mode 100644 index 000000000000..6d5b3ee6fac5 --- /dev/null +++ b/dev-ruby/spreadsheet/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>ruby</herd> + <maintainer> + <email>mjo@gentoo.org</email> + <name>Michael Orlitzky</name> + </maintainer> +</pkgmetadata> diff --git a/dev-ruby/spreadsheet/spreadsheet-0.6.9.ebuild b/dev-ruby/spreadsheet/spreadsheet-0.6.9.ebuild new file mode 100644 index 000000000000..ccabdd4de21a --- /dev/null +++ b/dev-ruby/spreadsheet/spreadsheet-0.6.9.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21 ruby22" + +# Avoid the complexity of the "rake" recipe and run testrb-2 manually. +RUBY_FAKEGEM_RECIPE_TEST=none + +# Same thing for the docs whose rake target just calls rdoc. +RUBY_FAKEGEM_RECIPE_DOC=rdoc +RUBY_FAKEGEM_EXTRADOC="GUIDE.txt History.txt README.txt" + +inherit ruby-fakegem + +DESCRIPTION="Ruby library to read and write spreadsheet documents" +HOMEPAGE="https://rubygems.org/gems/spreadsheet" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )" +ruby_add_rdepend ">=dev-ruby/ruby-ole-1.0" + +each_ruby_test() { + ruby-ng_testrb-2 --pattern='.+.rb' --exclude='suite\.rb' test/ +} |