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/org-ruby | |
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/org-ruby')
-rw-r--r-- | dev-ruby/org-ruby/Manifest | 2 | ||||
-rw-r--r-- | dev-ruby/org-ruby/metadata.xml | 8 | ||||
-rw-r--r-- | dev-ruby/org-ruby/org-ruby-0.9.12.ebuild | 31 | ||||
-rw-r--r-- | dev-ruby/org-ruby/org-ruby-0.9.9.ebuild | 31 |
4 files changed, 72 insertions, 0 deletions
diff --git a/dev-ruby/org-ruby/Manifest b/dev-ruby/org-ruby/Manifest new file mode 100644 index 000000000000..eaec3dae4aee --- /dev/null +++ b/dev-ruby/org-ruby/Manifest @@ -0,0 +1,2 @@ +DIST org-ruby-0.9.12.tar.gz 143472 SHA256 0c941aeeeef6c4ef8059db68121f57f63deacc4c5da86308f8d91724469f6382 SHA512 040c7bc9d9727fcec9bbd7ed4994ca489121c103d58242f98d340b4149f94cb97fc0bbc670bbd5dfba5a11de53930b579a33b6b1ffa343c7f2602674ec65aa07 WHIRLPOOL e018e919f43a41d0968d627519de1a546105e9bbed31979193dd8eae419d206c1edbc3023c62e44aa584e2061ba31d1c41c1745e3f29a4b857d24f99dcfb341b +DIST org-ruby-0.9.9.tar.gz 143319 SHA256 8a67f126915e307d5a4a8a40a7c4b951ae8974476f7d0a04833455a9ec7c9a93 SHA512 2998f7140af5217a7d2df100107fac981eecd6256c57d7df17242214a2c60c17d062be3da78208c1a060803cb37e3211cff8ee1232a85ffdacba0bc457c9135d WHIRLPOOL 9d7025e4f6f9c523657c4c877ede7ef1adb54aa20da05bc40cc7cafd454ca76831f80aee95651567f8268d59f199fcbccf168fcf5c3fbf452f241c6a6bfeb3be diff --git a/dev-ruby/org-ruby/metadata.xml b/dev-ruby/org-ruby/metadata.xml new file mode 100644 index 000000000000..3c5f35f0f3cf --- /dev/null +++ b/dev-ruby/org-ruby/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>ruby</herd> + <upstream> + <remote-id type="github">wallyqs/org-ruby</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-ruby/org-ruby/org-ruby-0.9.12.ebuild b/dev-ruby/org-ruby/org-ruby-0.9.12.ebuild new file mode 100644 index 000000000000..9d9eb67a0592 --- /dev/null +++ b/dev-ruby/org-ruby/org-ruby-0.9.12.ebuild @@ -0,0 +1,31 @@ +# 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_TEST="rspec" +RUBY_FAKEGEM_RECIPE_DOC="none" +RUBY_FAKEGEM_EXTRADOC="README.org History.org" + +inherit ruby-fakegem + +DESCRIPTION="Ruby routines for parsing org-mode files" +HOMEPAGE="https://github.com/wallyqs/org-ruby" +SRC_URI="https://github.com/wallyqs/${PN}/archive/version-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RUBY_S="${PN}-version-${PV}" + +ruby_add_rdepend "=dev-ruby/rubypants-0.2*:0" +ruby_add_bdepend "test? ( dev-ruby/tilt )" + +all_ruby_prepare() { + #Fix tests until rspec:3 is available in the tree + sed -i -e "s/truthy/true/" -e "s/falsy/false/" spec/headline_spec.rb spec/parser_spec.rb spec/line_spec.rb || die +} diff --git a/dev-ruby/org-ruby/org-ruby-0.9.9.ebuild b/dev-ruby/org-ruby/org-ruby-0.9.9.ebuild new file mode 100644 index 000000000000..40971f971506 --- /dev/null +++ b/dev-ruby/org-ruby/org-ruby-0.9.9.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_RECIPE_TEST="rspec" +RUBY_FAKEGEM_RECIPE_DOC="none" +RUBY_FAKEGEM_EXTRADOC="README.org History.org" + +inherit ruby-fakegem + +DESCRIPTION="Ruby routines for parsing org-mode files" +HOMEPAGE="https://github.com/wallyqs/org-ruby" +SRC_URI="https://github.com/wallyqs/${PN}/archive/version-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RUBY_S="${PN}-version-${PV}" + +ruby_add_rdepend "=dev-ruby/rubypants-0.2*:0" +ruby_add_bdepend "test? ( dev-ruby/tilt )" + +all_ruby_prepare() { + #Fix tests until rspec:3 is available in the tree + sed -i -e "s/truthy/true/" -e "s/falsy/false/" spec/headline_spec.rb spec/parser_spec.rb spec/line_spec.rb || die +} |