From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/slim/
Date: Sat, 25 Jul 2020 17:10:50 +0000 (UTC) [thread overview]
Message-ID: <1595697040.90e37f0c8e9e6edadb5b1cd942bede4c4bfb08a9.graaff@gentoo> (raw)
commit: 90e37f0c8e9e6edadb5b1cd942bede4c4bfb08a9
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 25 11:44:06 2020 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Jul 25 17:10:40 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90e37f0c
dev-ruby/slim: cleanup
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/slim/Manifest | 1 -
dev-ruby/slim/slim-4.0.1-r1.ebuild | 51 --------------------------------------
dev-ruby/slim/slim-4.0.1.ebuild | 50 -------------------------------------
3 files changed, 102 deletions(-)
diff --git a/dev-ruby/slim/Manifest b/dev-ruby/slim/Manifest
index 641a07459de..01dd2ce3af8 100644
--- a/dev-ruby/slim/Manifest
+++ b/dev-ruby/slim/Manifest
@@ -1,3 +1,2 @@
DIST slim-3.0.9.gem 99840 BLAKE2B e449585fe5642c1980b4d8fb0c93979d8c16020c331f1bc2993c6f7b5bb3e55c1b85595711bf3acdc369c6a3fbfdc6873a8208c59aedaa49dead1cd9166347d4 SHA512 220dbcde230aab05e294022924346fbb02a1bf813a7c97910c2f60d7b3a7dd498d04f6f4f2883b895d2a3e6e9f526331914e3ab4560e748de2bd991358cca90d
-DIST slim-4.0.1.gem 103424 BLAKE2B cf3629e6bb5254082ee3596dc4ddd05921186071823cfe6c423d3f173f80c46ca874e3cfa9a795ce4d564da2c7aa42a422513677978a6e79545a918ef3b9fb6f SHA512 afdaf01ce8372e270c00bc3fd863b9c2f7d26c851ed032374e648f069e6591e9522d4490f57350d4f13b85c68e6a9038111ad03a644a8e89894dca4ebffa0c90
DIST slim-4.1.0.gem 103424 BLAKE2B 87de8411d6284569ac56366d4e2f3ee351c6908001cbda2926312f25c1c39520662371e826493d1346722bb507348bd8c117f3b0447b433bdb406435b80a70e2 SHA512 a929edcd1b194bc6abddf5757e0e942835f6c5e1555aa7bf021b0e850d74c9777637a2a0eafbdf2de7f0f0574eb03866c562826c656adcc0517cc4bfcb5ca897
diff --git a/dev-ruby/slim/slim-4.0.1-r1.ebuild b/dev-ruby/slim/slim-4.0.1-r1.ebuild
deleted file mode 100644
index 4e71e1931b4..00000000000
--- a/dev-ruby/slim/slim-4.0.1-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_EXTRADOC="CHANGES README.md"
-
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_TASK_DOC="yard"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit eapi7-ver ruby-fakegem
-
-DESCRIPTION="A template language aiming to reduce the syntax to the essential parts"
-HOMEPAGE="http://slim-lang.com/"
-LICENSE="MIT"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
-SLOT="$(ver_cut 1)"
-IUSE="doc"
-
-ruby_add_rdepend ">=dev-ruby/tilt-2.0.6:* =dev-ruby/tilt-2.0*:*
- >=dev-ruby/temple-0.7.6:0.7
- !!<dev-ruby/slim-3.0.9-r1"
-
-ruby_add_bdepend "doc? ( dev-ruby/yard dev-ruby/redcarpet )"
-
-ruby_add_bdepend "test? ( dev-ruby/redcarpet dev-ruby/sass )"
-
-all_ruby_prepare() {
- sed -i -e '/bundler/I s:^:#:' Rakefile || die
-
- # This sinatra code expects tests to be installed but we strip those.
- sed -i -e "s/require 'sinatra'/require 'bogussinatra'/" Rakefile || die
-
- # Avoid tests for things we don't have. The builder test does not pass with tilt 2.x
- sed -i -e '/test_wip_render_with_asciidoc/,/^ end/ s:^:#:' \
- -e '/test_render_with_wiki/,/^ end/ s:^:#:' \
- -e '/test_render_with_creole/,/^ end/ s:^:#:' \
- -e '/test_render_with_builder/,/^ end/ s:^:#:' \
- -e '/test_render_with_org/,/^ end/ s:^:#:' test/core/test_embedded_engines.rb || die
-
- sed -i -e '/s\.files/ s/git ls-files/find . -type f -print/' \
- -e '/s\.executables/ s:git ls-files -- bin/\*:find bin -type f -print:' ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-each_ruby_prepare() {
- sed -i -e '/Open3/ s:ruby:'${RUBY}':' test/core/test_commands.rb || die
-}
diff --git a/dev-ruby/slim/slim-4.0.1.ebuild b/dev-ruby/slim/slim-4.0.1.ebuild
deleted file mode 100644
index c6a86b28616..00000000000
--- a/dev-ruby/slim/slim-4.0.1.ebuild
+++ /dev/null
@@ -1,50 +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_EXTRADOC="CHANGES README.md"
-
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_TASK_DOC="yard"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit eapi7-ver ruby-fakegem
-
-DESCRIPTION="A template language aiming to reduce the syntax to the essential parts"
-HOMEPAGE="http://slim-lang.com/"
-LICENSE="MIT"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
-SLOT="$(ver_cut 1)"
-IUSE="doc"
-
-ruby_add_rdepend ">=dev-ruby/tilt-2.0.6:* =dev-ruby/tilt-2.0*:*
- >=dev-ruby/temple-0.7.6:0.7"
-
-ruby_add_bdepend "doc? ( dev-ruby/yard dev-ruby/redcarpet )"
-
-ruby_add_bdepend "test? ( dev-ruby/redcarpet dev-ruby/sass )"
-
-all_ruby_prepare() {
- sed -i -e '/bundler/I s:^:#:' Rakefile || die
-
- # This sinatra code expects tests to be installed but we strip those.
- sed -i -e "s/require 'sinatra'/require 'bogussinatra'/" Rakefile || die
-
- # Avoid tests for things we don't have. The builder test does not pass with tilt 2.x
- sed -i -e '/test_wip_render_with_asciidoc/,/^ end/ s:^:#:' \
- -e '/test_render_with_wiki/,/^ end/ s:^:#:' \
- -e '/test_render_with_creole/,/^ end/ s:^:#:' \
- -e '/test_render_with_builder/,/^ end/ s:^:#:' \
- -e '/test_render_with_org/,/^ end/ s:^:#:' test/core/test_embedded_engines.rb || die
-
- sed -i -e '/s\.files/ s/git ls-files/find . -type f -print/' \
- -e '/s\.executables/ s:git ls-files -- bin/\*:find bin -type f -print:' ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-each_ruby_prepare() {
- sed -i -e '/Open3/ s:ruby:'${RUBY}':' test/core/test_commands.rb || die
-}
next reply other threads:[~2020-07-25 17:10 UTC|newest]
Thread overview: 95+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-25 17:10 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-09 5:46 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/slim/ Sam James
2024-10-06 18:39 Arthur Zamarin
2024-10-06 13:30 Arthur Zamarin
2024-03-07 6:19 Hans de Graaff
2024-02-08 17:59 Hans de Graaff
2023-11-12 7:07 Hans de Graaff
2023-11-12 7:07 Hans de Graaff
2023-08-29 6:01 Hans de Graaff
2023-08-29 6:01 Hans de Graaff
2023-08-02 13:19 Sam James
2023-07-24 8:54 Jakov Smolić
2023-06-12 2:27 Sam James
2023-06-02 11:07 Arthur Zamarin
2023-06-01 6:22 Sam James
2023-06-01 5:56 Sam James
2023-06-01 5:31 Sam James
2023-06-01 5:31 Sam James
2023-04-09 1:28 Sam James
2023-04-03 5:08 Sam James
2023-04-02 2:56 Sam James
2023-04-02 2:56 Sam James
2023-04-02 2:56 Sam James
2023-03-28 22:12 Sam James
2023-03-28 22:12 Sam James
2023-01-23 7:17 Hans de Graaff
2022-12-19 6:42 Hans de Graaff
2022-12-18 14:43 Hans de Graaff
2022-12-18 9:27 Sam James
2022-12-18 9:27 Sam James
2022-12-18 9:18 Sam James
2022-12-04 7:21 Hans de Graaff
2022-07-17 6:50 Hans de Graaff
2022-06-19 8:24 Agostino Sarubbo
2022-06-19 8:15 Agostino Sarubbo
2022-06-19 8:14 Agostino Sarubbo
2022-03-20 10:04 Hans de Graaff
2021-12-31 10:56 Sam James
2021-11-08 2:51 Yixun Lan
2021-10-10 23:45 Sam James
2021-10-10 21:48 Sam James
2021-10-10 20:43 Sam James
2021-10-10 0:09 Sam James
2021-10-08 6:15 Hans de Graaff
2021-10-06 5:33 Hans de Graaff
2021-10-06 5:33 Hans de Graaff
2021-10-03 6:30 Hans de Graaff
2021-10-02 18:49 Sam James
2021-10-02 18:49 Sam James
2021-10-02 18:49 Sam James
2021-10-02 18:49 Sam James
2021-10-02 18:49 Sam James
2021-10-02 18:49 Sam James
2021-10-02 18:49 Sam James
2021-10-02 18:49 Sam James
2021-10-02 18:48 Sam James
2021-10-02 18:48 Sam James
2021-10-02 18:40 Sam James
2021-10-02 18:40 Sam James
2020-12-24 7:41 Hans de Graaff
2020-05-10 5:50 Hans de Graaff
2019-11-04 18:34 Hans de Graaff
2019-11-04 18:34 Hans de Graaff
2019-03-04 6:42 Hans de Graaff
2019-02-11 5:59 Hans de Graaff
2019-02-10 17:51 Mikle Kolyada
2018-12-19 22:48 Sergei Trofimovich
2018-09-11 4:50 Hans de Graaff
2018-08-31 6:20 Hans de Graaff
2018-07-19 19:16 Hans de Graaff
2018-06-06 23:23 Thomas Deutschmann
2018-06-02 13:50 Mikle Kolyada
2018-05-23 4:47 Hans de Graaff
2018-03-22 20:23 Jeroen Roovers
2018-01-25 6:34 Hans de Graaff
2017-11-10 6:57 Hans de Graaff
2017-10-01 0:56 Thomas Deutschmann
2017-10-01 0:56 Thomas Deutschmann
2017-07-24 5:28 Hans de Graaff
2017-07-03 9:12 Alexis Ballier
2017-05-18 5:22 Hans de Graaff
2017-05-18 5:22 Hans de Graaff
2017-02-27 18:55 Michael Weber
2017-02-20 6:52 Hans de Graaff
2017-02-19 14:05 Hans de Graaff
2016-10-29 14:59 Manuel Rüger
2016-08-07 6:57 Hans de Graaff
2016-08-07 6:57 Hans de Graaff
2016-08-03 16:57 Alexis Ballier
2016-05-22 6:14 Hans de Graaff
2016-05-22 6:14 Hans de Graaff
2016-03-06 19:08 Manuel Rüger
2016-03-06 19:08 Manuel Rüger
2015-11-01 7:15 Hans de Graaff
2015-11-01 7:15 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=1595697040.90e37f0c8e9e6edadb5b1cd942bede4c4bfb08a9.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