* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/shorturl/
@ 2015-11-15 23:23 Robin H. Johnson
0 siblings, 0 replies; 6+ messages in thread
From: Robin H. Johnson @ 2015-11-15 23:23 UTC (permalink / raw
To: gentoo-commits
commit: 498b00b0486c6d84265cf47608a45faee948533e
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 15 23:19:57 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Nov 15 23:22:57 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=498b00b0
dev-ruby/shorturl: build fix
Without fixing 'rake doc', the documentation is never built, and the
'doc' directory does not exist; this caused pushd/popd to fail.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild b/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
index 6fe5b84..ae31b1e 100644
--- a/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
+++ b/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
@@ -7,7 +7,8 @@ EAPI=5
USE_RUBY="ruby19 ruby20 ruby21 ruby22"
RUBY_FAKEGEM_TASK_TEST=""
-RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_TASK_DOC="doc"
RUBY_FAKEGEM_EXTRADOC="ChangeLog.txt README.rdoc TODO.rdoc"
@@ -31,7 +32,10 @@ each_ruby_test() {
all_ruby_install() {
all_fakegem_install
- pushd doc &>/dev/null
- dohtml -r .
- popd &>/dev/null
+ if use doc; then
+ # If the doc build fails, the doc directory might not exist
+ pushd doc &>/dev/null || die "pushd doc failed"
+ dohtml -r .
+ popd &>/dev/null
+ fi
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/shorturl/
@ 2016-02-23 7:14 Hans de Graaff
0 siblings, 0 replies; 6+ messages in thread
From: Hans de Graaff @ 2016-02-23 7:14 UTC (permalink / raw
To: gentoo-commits
commit: 385418436492774637ad8dcec60d8149ae4d9073
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 06:52:51 2016 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Feb 23 07:13:56 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38541843
dev-ruby/shorturl: add ruby23
Package-Manager: portage-2.2.26
dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild b/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
index ae31b1e..1a8ae8c 100644
--- a/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
+++ b/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/shorturl/
@ 2016-03-15 15:27 Agostino Sarubbo
0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo @ 2016-03-15 15:27 UTC (permalink / raw
To: gentoo-commits
commit: f1e3cf85ea6c5dc4d30ea3aaaf6cb1b4dc448463
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 15 15:24:28 2016 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 15:24:28 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1e3cf85
dev-ruby/shorturl: x86 stable wrt bug #575358
Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild b/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
index cf8ada0..be3725d 100644
--- a/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
+++ b/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="http://shorturl.rubyforge.org/"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd ~x86-macos"
+KEYWORDS="amd64 ~ppc x86 ~x86-fbsd ~x86-macos"
IUSE=""
# All tests require network connectivity.
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/shorturl/
@ 2016-03-15 23:41 Manuel Rüger
0 siblings, 0 replies; 6+ messages in thread
From: Manuel Rüger @ 2016-03-15 23:41 UTC (permalink / raw
To: gentoo-commits
commit: f1eeccf542a86d2fd5129077bd9b78cbe2bc4a09
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 15 23:40:10 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 23:40:10 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1eeccf5
dev-ruby/shorturl: Remove old
Package-Manager: portage-2.2.28
dev-ruby/shorturl/shorturl-1.0.0-r1.ebuild | 37 ------------------------------
1 file changed, 37 deletions(-)
diff --git a/dev-ruby/shorturl/shorturl-1.0.0-r1.ebuild b/dev-ruby/shorturl/shorturl-1.0.0-r1.ebuild
deleted file mode 100644
index 21f7880..0000000
--- a/dev-ruby/shorturl/shorturl-1.0.0-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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_TASK_TEST=""
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="ChangeLog.txt README.rdoc TODO.rdoc"
-
-inherit ruby-fakegem eutils
-
-DESCRIPTION="A very simple library to use URL shortening services such as TinyURL or RubyURL"
-HOMEPAGE="http://shorturl.rubyforge.org/"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd ~x86-macos"
-IUSE=""
-
-# All tests require network connectivity.
-RESTRICT="test"
-
-each_ruby_test() {
- ${RUBY} -Ilib:test test/ts_all.rb || die "tests failed"
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- pushd doc &>/dev/null
- dohtml -r .
- popd &>/dev/null
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/shorturl/
@ 2018-03-06 6:46 Hans de Graaff
0 siblings, 0 replies; 6+ messages in thread
From: Hans de Graaff @ 2018-03-06 6:46 UTC (permalink / raw
To: gentoo-commits
commit: 8c327b6feffbf13ac40e16e598fe420913dbf8fe
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 6 06:31:25 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Mar 6 06:31:25 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c327b6f
dev-ruby/shorturl: add ruby24, ruby25; fix HOMEPAGE
Package-Manager: Portage-2.3.19, Repoman-2.3.6
dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild b/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
index 403ddc4b89d..e6184c8dc2c 100644
--- a/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
+++ b/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
@@ -14,7 +14,7 @@ RUBY_FAKEGEM_EXTRADOC="ChangeLog.txt README.rdoc TODO.rdoc"
inherit ruby-fakegem eutils
DESCRIPTION="A very simple library to use URL shortening services such as TinyURL or RubyURL"
-HOMEPAGE="http://shorturl.rubyforge.org/"
+HOMEPAGE="https://github.com/robbyrussell/shorturl/"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/shorturl/
@ 2021-04-10 6:17 Hans de Graaff
0 siblings, 0 replies; 6+ messages in thread
From: Hans de Graaff @ 2021-04-10 6:17 UTC (permalink / raw
To: gentoo-commits
commit: ada61be36da297cda9c854829b756ff553cd6feb
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 10 06:15:32 2021 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Apr 10 06:15:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ada61be3
dev-ruby/shorturl: remove masked package
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/shorturl/Manifest | 1 -
dev-ruby/shorturl/metadata.xml | 8 ------
dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild | 40 ------------------------------
3 files changed, 49 deletions(-)
diff --git a/dev-ruby/shorturl/Manifest b/dev-ruby/shorturl/Manifest
deleted file mode 100644
index 7608585bfb5..00000000000
--- a/dev-ruby/shorturl/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST shorturl-1.0.0.gem 10752 BLAKE2B 6d6605dded6584510abaf09168cdb2fbe7bfeac804b2da9e1c80a9a17fcfdd7d594948394838a8490e6d1c186fb166aeebc81ade40bf352db44073816dfc4625 SHA512 d2323107449a5a66065dc225fbec101a653cf4bc1c719f18e7e5d78c89aafc8c4863aace08ed2a007e33c72f6986ea56a0307e856fb4bbf4c213206155d22312
diff --git a/dev-ruby/shorturl/metadata.xml b/dev-ruby/shorturl/metadata.xml
deleted file mode 100644
index eb1e47f2edf..00000000000
--- a/dev-ruby/shorturl/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>ruby@gentoo.org</email>
- <name>Gentoo Ruby Project</name>
- </maintainer>
-</pkgmetadata>
diff --git a/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild b/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
deleted file mode 100644
index d6d67b4e529..00000000000
--- a/dev-ruby/shorturl/shorturl-1.0.0-r2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_TASK_TEST=""
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_TASK_DOC="doc"
-
-RUBY_FAKEGEM_EXTRADOC="ChangeLog.txt README.rdoc TODO.rdoc"
-
-inherit ruby-fakegem eutils
-
-DESCRIPTION="A very simple library to use URL shortening services such as TinyURL or RubyURL"
-HOMEPAGE="https://github.com/robbyrussell/shorturl/"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-# All tests require network connectivity.
-RESTRICT="test"
-
-each_ruby_test() {
- ${RUBY} -Ilib:test test/ts_all.rb || die "tests failed"
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- if use doc; then
- # If the doc build fails, the doc directory might not exist
- pushd doc &>/dev/null || die "pushd doc failed"
- dohtml -r .
- popd &>/dev/null
- fi
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-04-10 6:17 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-10 6:17 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/shorturl/ Hans de Graaff
-- strict thread matches above, loose matches on Subject: below --
2018-03-06 6:46 Hans de Graaff
2016-03-15 23:41 Manuel Rüger
2016-03-15 15:27 Agostino Sarubbo
2016-02-23 7:14 Hans de Graaff
2015-11-15 23:23 Robin H. Johnson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox