* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sass-listen/, dev-ruby/sass-listen/files/
@ 2019-02-08 8:04 Hans de Graaff
0 siblings, 0 replies; 2+ messages in thread
From: Hans de Graaff @ 2019-02-08 8:04 UTC (permalink / raw
To: gentoo-commits
commit: f4689d65220573dde89c32798e3d71f5ac1571fa
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 8 07:01:29 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Feb 8 08:03:54 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4689d65
dev-ruby/sass-listen: add ruby26
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
.../sass-listen/files/listen-3.1.5-ruby26.patch | 33 ++++++++++++++++++++++
dev-ruby/sass-listen/sass-listen-4.0.0.ebuild | 6 ++--
2 files changed, 37 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/sass-listen/files/listen-3.1.5-ruby26.patch b/dev-ruby/sass-listen/files/listen-3.1.5-ruby26.patch
new file mode 100644
index 00000000000..f90ab1ed213
--- /dev/null
+++ b/dev-ruby/sass-listen/files/listen-3.1.5-ruby26.patch
@@ -0,0 +1,33 @@
+From 2908365366792ac3ba010fa32bc3be2beaed451a Mon Sep 17 00:00:00 2001
+From: Samuel Williams <samuel.williams@oriontransfer.co.nz>
+Date: Sun, 16 Dec 2018 11:32:45 +1300
+Subject: [PATCH] Use raw Pathname to fix Linux specs.
+
+---
+ lib/listen/adapter/linux.rb | 2 +-
+ spec/lib/listen/adapter/linux_spec.rb | 12 +-----------
+ 2 files changed, 2 insertions(+), 12 deletions(-)
+
+diff --git a/spec/lib/listen/adapter/linux_spec.rb b/spec/lib/listen/adapter/linux_spec.rb
+index d77f0c0..da48319 100644
+--- a/spec/lib/listen/adapter/linux_spec.rb
++++ b/spec/lib/listen/adapter/linux_spec.rb
+@@ -10,17 +10,7 @@
+ end
+
+ if linux?
+- let(:dir1) do
+- instance_double(
+- Pathname,
+- 'dir1',
+- to_s: '/foo/dir1',
+- cleanpath: real_dir1
+- )
+- end
+-
+- # just so cleanpath works in above double
+- let(:real_dir1) { instance_double(Pathname, 'dir1', to_s: '/foo/dir1') }
++ let(:dir1) {Pathname.new("/foo/dir1")}
+
+ let(:config) { instance_double(Listen::Adapter::Config) }
+ let(:queue) { instance_double(Queue) }
diff --git a/dev-ruby/sass-listen/sass-listen-4.0.0.ebuild b/dev-ruby/sass-listen/sass-listen-4.0.0.ebuild
index 7d102181fac..3e6486958d1 100644
--- a/dev-ruby/sass-listen/sass-listen-4.0.0.ebuild
+++ b/dev-ruby/sass-listen/sass-listen-4.0.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
@@ -24,6 +24,8 @@ SLOT="4"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
IUSE="test"
+PATCHES=( "${FILESDIR}/listen-3.1.5-ruby26.patch" )
+
ruby_add_rdepend ">=dev-ruby/rb-inotify-0.9.7"
ruby_add_bdepend "test? ( dev-ruby/thor )"
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sass-listen/, dev-ruby/sass-listen/files/
@ 2024-01-07 8:06 Hans de Graaff
0 siblings, 0 replies; 2+ messages in thread
From: Hans de Graaff @ 2024-01-07 8:06 UTC (permalink / raw
To: gentoo-commits
commit: a347ad2d773c45851ab3dc2939608f555a416aeb
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 7 08:04:19 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Jan 7 08:04:19 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a347ad2d
dev-ruby/sass-listen: masked package removed
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/sass-listen/Manifest | 1 -
.../sass-listen/files/listen-3.1.5-ruby26.patch | 33 ---------------
dev-ruby/sass-listen/metadata.xml | 11 -----
dev-ruby/sass-listen/sass-listen-4.0.0-r1.ebuild | 47 ----------------------
4 files changed, 92 deletions(-)
diff --git a/dev-ruby/sass-listen/Manifest b/dev-ruby/sass-listen/Manifest
deleted file mode 100644
index 27e4fbcb81f0..000000000000
--- a/dev-ruby/sass-listen/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sass-listen-4.0.0.tar.gz 49449 BLAKE2B bb44a91a6fbdca1b6d1b8b2253efd1709fb89713631d9772ce91dab9bc701b197a6551391699f5566d3a75ae42f9958d5d6d8346de9f74b45d7b60d88cca5ee7 SHA512 799e1e70f86b4be671c3286ae860cbcec83d8a1311d67fb37956dc527e2961888094439fd8377d50c78798c494f19ddbed3a412f02e76e429dcc1717c93b7e19
diff --git a/dev-ruby/sass-listen/files/listen-3.1.5-ruby26.patch b/dev-ruby/sass-listen/files/listen-3.1.5-ruby26.patch
deleted file mode 100644
index f90ab1ed213c..000000000000
--- a/dev-ruby/sass-listen/files/listen-3.1.5-ruby26.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 2908365366792ac3ba010fa32bc3be2beaed451a Mon Sep 17 00:00:00 2001
-From: Samuel Williams <samuel.williams@oriontransfer.co.nz>
-Date: Sun, 16 Dec 2018 11:32:45 +1300
-Subject: [PATCH] Use raw Pathname to fix Linux specs.
-
----
- lib/listen/adapter/linux.rb | 2 +-
- spec/lib/listen/adapter/linux_spec.rb | 12 +-----------
- 2 files changed, 2 insertions(+), 12 deletions(-)
-
-diff --git a/spec/lib/listen/adapter/linux_spec.rb b/spec/lib/listen/adapter/linux_spec.rb
-index d77f0c0..da48319 100644
---- a/spec/lib/listen/adapter/linux_spec.rb
-+++ b/spec/lib/listen/adapter/linux_spec.rb
-@@ -10,17 +10,7 @@
- end
-
- if linux?
-- let(:dir1) do
-- instance_double(
-- Pathname,
-- 'dir1',
-- to_s: '/foo/dir1',
-- cleanpath: real_dir1
-- )
-- end
--
-- # just so cleanpath works in above double
-- let(:real_dir1) { instance_double(Pathname, 'dir1', to_s: '/foo/dir1') }
-+ let(:dir1) {Pathname.new("/foo/dir1")}
-
- let(:config) { instance_double(Listen::Adapter::Config) }
- let(:queue) { instance_double(Queue) }
diff --git a/dev-ruby/sass-listen/metadata.xml b/dev-ruby/sass-listen/metadata.xml
deleted file mode 100644
index a8ced35735af..000000000000
--- a/dev-ruby/sass-listen/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>ruby@gentoo.org</email>
- <name>Gentoo Ruby Project</name>
- </maintainer>
- <upstream>
- <remote-id type="github">sass/listen</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-ruby/sass-listen/sass-listen-4.0.0-r1.ebuild b/dev-ruby/sass-listen/sass-listen-4.0.0-r1.ebuild
deleted file mode 100644
index 884788cfa04f..000000000000
--- a/dev-ruby/sass-listen/sass-listen-4.0.0-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby26 ruby27 ruby30 ruby31"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-SRC_URI="https://github.com/sass/listen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-DESCRIPTION="Fork of guard/listen provides a stable API for users of the ruby Sass CLI"
-HOMEPAGE="https://github.com/guard/listen"
-RUBY_S="listen-${PV}"
-
-LICENSE="MIT"
-SLOT="4"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv x86"
-IUSE="test"
-
-PATCHES=( "${FILESDIR}/listen-3.1.5-ruby26.patch" )
-
-ruby_add_rdepend ">=dev-ruby/rb-inotify-0.9.7"
-
-ruby_add_bdepend "test? ( dev-ruby/thor )"
-
-all_ruby_prepare() {
- rm -f Gemfile || die
- sed -i -e "/git/,+3d" -e "/rb-fsevent/d" ${PN}.gemspec || die
- sed -i -e "/rb-fsevent/d" lib/sass-listen/adapter/darwin.rb || die
- rm -rf spec/lib/listen/adapter/darwin_spec.rb || die
-}
-
-each_ruby_prepare() {
- mkdir spec/.fixtures || die
-}
-
-each_ruby_test() {
- RSPEC_VERSION=3 ruby-ng_rspec
- rm -rf spec/.fixtures || die
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-01-07 8:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-07 8:06 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sass-listen/, dev-ruby/sass-listen/files/ Hans de Graaff
-- strict thread matches above, loose matches on Subject: below --
2019-02-08 8:04 Hans de Graaff
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox