From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/psych/
Date: Mon, 14 Nov 2016 06:39:01 +0000 (UTC) [thread overview]
Message-ID: <1479105137.dee72b42d072bb2e2d6f6ac02a851b485090d63c.graaff@gentoo> (raw)
commit: dee72b42d072bb2e2d6f6ac02a851b485090d63c
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 14 06:32:17 2016 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Nov 14 06:32:17 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dee72b42
dev-ruby/psych: add 2.2.0
Package-Manager: portage-2.3.0
dev-ruby/psych/Manifest | 1 +
dev-ruby/psych/psych-2.2.0.ebuild | 46 +++++++++++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/dev-ruby/psych/Manifest b/dev-ruby/psych/Manifest
index 057dc6f..9a1a389 100644
--- a/dev-ruby/psych/Manifest
+++ b/dev-ruby/psych/Manifest
@@ -1,3 +1,4 @@
DIST psych-2.0.17.gem 128000 SHA256 e85529ced4f91728a63c945f8bdf5206e71fc3192b9ac0e7ba251dbf0d398513 SHA512 f82bb015986941193878c6223fee69930c4e643d2432057d83399dd1763834ea0116b360b23c371d1b050414f2a769bb6762d3e0dd6e891d1b94ebe260194452 WHIRLPOOL 2455312625d12110e0de5514f1b52d8a7c7c3855289115edd270b0f7804f9bcef6c9879b731bcad696e4c038a4aef0b046bd23a58f771cc4b51d41c96c537483
DIST psych-2.1.0.gem 128512 SHA256 92bf0d9bd47e4fafc74f6fad89e207f21348878c201ac36967ec587526d3dde9 SHA512 767d33759f7536e2b1c87c85f0659856f37be2c5c9b48d07bd8b7c538b42a40527335df300ad1b53e5212f6020e156e9066b3babc2fde1b758e330fd53106c48 WHIRLPOOL 969f01c2658b880ac92295a158da2629f6b5cad988c1135d8dda88c822fe0a0d55f90c5682d394a6aea8b05cc3d575b59245e3c51a4767d8485862c801a88243
DIST psych-2.1.1.tar.gz 132735 SHA256 c98c173060042b9a4740e553d4cc8da01a688564c40bccdaef9859d698161cad SHA512 d4e26004153dc66179194c83800b8d8a3d1230efe1ee16c6f9939d87365f6d3707d9988e95c513e4411661cfa704aef067df23cc44f9172b428a0575ea893f6b WHIRLPOOL 06f072f563dec2a7249ed3d32254c61582f786f21a4b65f5bf01242f25a9a3534f6f069712204d22d3b540b87ded71a647ce2047f845de4a25dbfb322c38027e
+DIST psych-2.2.0.tar.gz 133402 SHA256 97936452a7c246a3e1c813c3d0066504255da867a13978aea8f7e507988e4f19 SHA512 b8abbb99d2ee3bd0213ddd410485a7b3ef80a1497535ce0a922211b0ac0baca501b83c2deb2e2cee3644c29a2f550b6199af104b9eaf5d822ae592563d0cd362 WHIRLPOOL 1f17eadab16cbcb9cb170b6ba5f405d539f2b911912dddbba74fc44f816b1256d1f04d5ee75909617fa9f87dd5f05a63f23bbf6439dc2b8d3bd1681a25f065cf
diff --git a/dev-ruby/psych/psych-2.2.0.ebuild b/dev-ruby/psych/psych-2.2.0.ebuild
new file mode 100644
index 00000000..2726cf0
--- /dev/null
+++ b/dev-ruby/psych/psych-2.2.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="A libyaml wrapper for Ruby"
+HOMEPAGE="https://github.com/tenderlove/psych"
+SRC_URI="https://github.com/tenderlove/psych/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND+=" >=dev-libs/libyaml-0.1.7"
+
+ruby_add_bdepend "test? ( dev-ruby/minitest:5 )"
+
+all_ruby_prepare() {
+ sed -i -e '1igem "minitest", "~>5.0"' test/psych/helper.rb || die
+ sed -i -e '/s.files/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_configure() {
+ ${RUBY} -Cext/${PN} extconf.rb || die
+}
+
+each_ruby_compile() {
+ emake V=1 -Cext/${PN}
+ cp ext/${PN}/${PN}$(get_modname) lib/ || die
+}
+
+each_ruby_test() {
+ ${RUBY} -Ilib:test:test/${PN}:. -e "Dir['test/psych/**/test_*.rb'].each {|f| require f}" || die
+}
next reply other threads:[~2016-11-14 6:39 UTC|newest]
Thread overview: 82+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-14 6:39 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-05-02 15:39 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/psych/ Hans de Graaff
2025-05-02 15:39 Hans de Graaff
2025-04-23 15:52 Sam James
2025-04-22 0:36 Sam James
2025-04-21 16:15 Arthur Zamarin
2025-04-21 4:31 Sam James
2025-04-20 7:40 Sam James
2025-04-20 7:40 Sam James
2025-01-18 6:17 Hans de Graaff
2024-12-18 6:29 Hans de Graaff
2024-12-03 14:03 Hans de Graaff
2024-12-03 14:03 Hans de Graaff
2024-11-07 7:22 Hans de Graaff
2024-10-15 12:47 Arthur Zamarin
2024-10-10 12:20 Arthur Zamarin
2024-10-09 0:06 Jakov Smolić
2024-10-08 20:10 Arthur Zamarin
2024-10-08 19:25 Sam James
2024-10-06 7:52 Sam James
2024-10-06 7:52 Sam James
2024-10-06 7:40 Hans de Graaff
2024-07-17 4:38 Viorel Munteanu
2023-12-21 6:48 Hans de Graaff
2023-12-10 7:47 Hans de Graaff
2023-08-11 19:14 Hans de Graaff
2023-07-11 4:37 Hans de Graaff
2023-05-14 8:31 Sam James
2023-04-10 12:57 Arthur Zamarin
2023-04-10 10:18 Sam James
2023-04-10 10:18 Sam James
2023-04-10 10:17 Sam James
2023-04-10 10:17 Sam James
2023-04-10 10:17 Sam James
2023-04-10 10:17 Sam James
2023-04-10 10:17 Sam James
2023-03-04 10:25 Hans de Graaff
2023-02-10 7:45 Hans de Graaff
2023-01-22 8:30 Hans de Graaff
2022-12-18 10:53 Sam James
2022-12-18 10:53 Sam James
2022-12-18 9:27 Sam James
2022-12-18 9:27 Sam James
2022-12-11 20:43 Arthur Zamarin
2022-12-11 13:58 Sam James
2022-12-11 12:53 Sam James
2022-12-11 9:06 Hans de Graaff
2022-12-11 6:27 Hans de Graaff
2022-10-01 7:06 Hans de Graaff
2022-09-07 6:09 Hans de Graaff
2022-05-17 5:32 Hans de Graaff
2022-03-12 7:21 Hans de Graaff
2022-03-12 7:21 Hans de Graaff
2019-11-09 6:28 Hans de Graaff
2019-04-10 17:27 Hans de Graaff
2019-01-28 6:57 Hans de Graaff
2018-12-18 5:58 Hans de Graaff
2018-12-18 5:58 Hans de Graaff
2018-10-20 5:18 Hans de Graaff
2018-03-15 21:24 Sergei Trofimovich
2018-03-15 21:24 Sergei Trofimovich
2018-03-15 21:24 Sergei Trofimovich
2018-02-08 6:25 Hans de Graaff
2017-12-21 5:39 Hans de Graaff
2017-12-17 5:57 Hans de Graaff
2017-07-18 6:45 Hans de Graaff
2017-03-07 6:01 Hans de Graaff
2017-03-07 6:01 Hans de Graaff
2016-12-26 5:52 Hans de Graaff
2016-12-11 6:40 Hans de Graaff
2016-12-11 6:33 Hans de Graaff
2016-09-08 4:50 Hans de Graaff
2016-09-08 4:50 Hans de Graaff
2016-09-07 4:48 Hans de Graaff
2016-06-26 5:38 Hans de Graaff
2016-03-06 21:09 Hans de Graaff
2016-03-06 21:09 Hans de Graaff
2015-12-23 21:22 Manuel Rüger
2015-12-09 6:00 Hans de Graaff
2015-12-09 6:00 Hans de Graaff
2015-08-22 5:44 Hans de Graaff
2015-08-22 5:44 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=1479105137.dee72b42d072bb2e2d6f6ac02a851b485090d63c.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