From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/curb/
Date: Sat, 20 Apr 2019 06:37:02 +0000 (UTC) [thread overview]
Message-ID: <1555742189.21d2c32a9b3e5416a87a84c559f86ca3060c46b2.graaff@gentoo> (raw)
commit: 21d2c32a9b3e5416a87a84c559f86ca3060c46b2
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 20 06:02:45 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Apr 20 06:36:29 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21d2c32a
dev-ruby/curb: cleanup
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
dev-ruby/curb/Manifest | 2 --
dev-ruby/curb/curb-0.9.7.ebuild | 45 ---------------------------------------
dev-ruby/curb/curb-0.9.8.ebuild | 47 -----------------------------------------
3 files changed, 94 deletions(-)
diff --git a/dev-ruby/curb/Manifest b/dev-ruby/curb/Manifest
index 218a4bdd003..23df56deb4c 100644
--- a/dev-ruby/curb/Manifest
+++ b/dev-ruby/curb/Manifest
@@ -1,3 +1 @@
-DIST curb-0.9.7.gem 83968 BLAKE2B 591c4fde6fe809c813bb7586875e954dcc3b6190eb6955b5769a2dd1538d156074d0e025af6b1d42cbd820fb012b46eec4e9ca96fe61acc3697cf1f6c5018b43 SHA512 6068eaaad6b1dc2dbbf7d0588235ce2a681d786bf8ed6d072e501b7cbff600d8fbc9d675fac3949a565c8451641982cbd9ab29a50cf3707e8c4cdc35b539f42b
-DIST curb-0.9.8.gem 86528 BLAKE2B e96520e78e7126042ada0464a494af2d6547e581c638d3c1da85c98fd841ce86e81b3c13a2eaed26046048ab75614616a6b8f093fbb058ccae232768ea8ea4da SHA512 be57d572fd1703440e4f4127d55fdc6efdb5c30b50ca86ef5a66a5fd99667708771480cd3abf9be62aae7adb43fa41a03b57019ae7edbf03a9a7d7c2bbefeba9
DIST curb-0.9.9.gem 87040 BLAKE2B 107c6486887c0c168a06b7cdad4cc01e34a85c7cfb20e8991db4c695e9dfe3700655d95dbc798e4eb3269586b86d61037d0e39a88c4d687e0e776a0e9cc27f0e SHA512 3f91004e109f9cc7c2d58fb7a6bc387d037237442b05ee52bad2944738eb24bf8d909ad7c21db965ba1e6291d08f0f2335c54a5c1a1ee1d224c5790e81dc8037
diff --git a/dev-ruby/curb/curb-0.9.7.ebuild b/dev-ruby/curb/curb-0.9.7.ebuild
deleted file mode 100644
index 4f617df41cc..00000000000
--- a/dev-ruby/curb/curb-0.9.7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_TEST="rake"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby-language bindings for libcurl"
-HOMEPAGE="https://github.com/taf2/curb"
-
-LICENSE="Ruby"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND+=" net-misc/curl[ssl]"
-RDEPEND+=" net-misc/curl[ssl]"
-
-all_ruby_prepare() {
- # fix tests when localhost is also ::1
- sed -i -e 's|localhost:|127.0.0.1:|g' tests/*.rb || die
-
- # avoid tests making outside network connections
- rm tests/bug_postfields_crash.rb || die
- sed -e '/test_easy_http_verbs_must_respond_to_str/,/^ end/ s:^:#:' \
- -i tests/tc_curl_easy.rb || die
-
- # avoid failing tests where failure condition seems weird, no
- # upstream travis so not clear if the test is indeed broken.
- sed -i -e '/test_multi_easy_http/,/^ end/ s:^:#:' tests/tc_curl_multi.rb || die
-}
-
-each_ruby_configure() {
- ${RUBY} -Cext extconf.rb || die "extconf.rb failed"
-}
-
-each_ruby_compile() {
- emake -Cext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}" V=1
- cp -l ext/curb_core$(get_modname) lib || die
-}
diff --git a/dev-ruby/curb/curb-0.9.8.ebuild b/dev-ruby/curb/curb-0.9.8.ebuild
deleted file mode 100644
index d7cd3e30294..00000000000
--- a/dev-ruby/curb/curb-0.9.8.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_TEST="rake"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby-language bindings for libcurl"
-HOMEPAGE="https://github.com/taf2/curb"
-
-LICENSE="Ruby"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND+=" net-misc/curl[ssl]"
-RDEPEND+=" net-misc/curl[ssl]"
-
-all_ruby_prepare() {
- # fix tests when localhost is also ::1
- sed -i -e 's|localhost:|127.0.0.1:|g' tests/*.rb || die
-
- # avoid tests making outside network connections
- rm tests/bug_postfields_crash.rb || die
- sed -e '/test_easy_http_verbs_must_respond_to_str/,/^ end/ s:^:#:' \
- -i tests/tc_curl_easy.rb || die
- sed -e '/test_connection_keepalive/aomit "network connection needed"' \
- -i tests/tc_curl_multi.rb || die
-
- # avoid failing tests where failure condition seems weird, no
- # upstream travis so not clear if the test is indeed broken.
- sed -i -e '/test_multi_easy_http/,/^ end/ s:^:#:' tests/tc_curl_multi.rb || die
-}
-
-each_ruby_configure() {
- ${RUBY} -Cext extconf.rb || die "extconf.rb failed"
-}
-
-each_ruby_compile() {
- emake -Cext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}" V=1
- cp -l ext/curb_core$(get_modname) lib || die
-}
next reply other threads:[~2019-04-20 23:26 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-20 6:37 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-17 17:52 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/curb/ Hans de Graaff
2024-12-30 10:18 Hans de Graaff
2024-10-30 6:26 Hans de Graaff
2024-10-06 13:30 Jakov Smolić
2024-08-24 7:58 Hans de Graaff
2024-06-02 8:34 Hans de Graaff
2023-12-27 20:33 Hans de Graaff
2023-07-07 5:18 Hans de Graaff
2023-07-07 5:18 Hans de Graaff
2023-04-07 4:12 Sam James
2023-03-02 6:16 Hans de Graaff
2023-03-02 6:16 Hans de Graaff
2023-01-08 7:49 Hans de Graaff
2022-12-29 7:20 Hans de Graaff
2022-12-29 7:20 Hans de Graaff
2022-05-07 6:34 Hans de Graaff
2021-10-31 4:45 Hans de Graaff
2021-10-27 11:26 Hans de Graaff
2021-10-27 11:26 Hans de Graaff
2021-09-01 6:23 Hans de Graaff
2021-08-15 7:41 Hans de Graaff
2021-07-12 13:26 Hans de Graaff
2021-07-12 13:26 Hans de Graaff
2020-11-04 5:59 Hans de Graaff
2020-09-21 17:40 Hans de Graaff
2020-09-15 6:00 Hans de Graaff
2020-08-21 15:02 Hans de Graaff
2019-04-20 6:37 Hans de Graaff
2019-03-08 5:29 Hans de Graaff
2019-02-13 6:46 Hans de Graaff
2019-01-13 7:55 Hans de Graaff
2018-11-27 6:41 Hans de Graaff
2018-05-29 3:06 Hans de Graaff
2018-04-13 23:22 Aaron Bauman
2018-02-02 17:14 Hans de Graaff
2018-02-02 17:14 Hans de Graaff
2017-08-27 6:18 Hans de Graaff
2017-08-18 6:11 Hans de Graaff
2017-02-04 16:17 Hans de Graaff
2016-08-30 5:40 Hans de Graaff
2016-03-09 22:48 Manuel Rüger
2015-12-15 6:24 Hans de Graaff
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1555742189.21d2c32a9b3e5416a87a84c559f86ca3060c46b2.graaff@gentoo \
--to=graaff@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox