public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2021-02-16 21:10 Theo Anderson
  0 siblings, 0 replies; 13+ messages in thread
From: Theo Anderson @ 2021-02-16 21:10 UTC (permalink / raw
  To: gentoo-commits

commit:     8384595045846411fe6ec1cb4f6ee6b8acdd6c69
Author:     Simon van der Maas <svdm-gentoo <AT> protonmail <DOT> com>
AuthorDate: Tue Feb 16 14:20:00 2021 +0000
Commit:     Theo Anderson <telans <AT> posteo <DOT> de>
CommitDate: Tue Feb 16 14:20:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=83845950

app-shells/zsh-autosuggestions: new package

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Simon van der Maas <svdm-gentoo <AT> protonmail.com>

 app-shells/zsh-autosuggestions/Manifest            |  1 +
 app-shells/zsh-autosuggestions/metadata.xml        |  8 +++++++
 .../zsh-autosuggestions-0.6.4.ebuild               | 27 ++++++++++++++++++++++
 3 files changed, 36 insertions(+)

diff --git a/app-shells/zsh-autosuggestions/Manifest b/app-shells/zsh-autosuggestions/Manifest
new file mode 100644
index 00000000..249800d8
--- /dev/null
+++ b/app-shells/zsh-autosuggestions/Manifest
@@ -0,0 +1 @@
+DIST zsh-autosuggestions-0.6.4.tar.gz 29154 BLAKE2B 73bef916e4abb53f6bd7d8daa67040a78e30aaaf3d71ed04e2f32d4fbbbc35bda1fa8cbcb8957324b52c39bf7ed454132ede657b2caee03798a41a2c330df0d9 SHA512 226b99048577ecdbe198501e6e4b3156c3d849994f0a2f7e15687cd244d4cac472cbcf746aaa32b2886652f6962852a475777b5f2bfcb3a6d0279be98a6020bb

diff --git a/app-shells/zsh-autosuggestions/metadata.xml b/app-shells/zsh-autosuggestions/metadata.xml
new file mode 100644
index 00000000..ad8cead2
--- /dev/null
+++ b/app-shells/zsh-autosuggestions/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <maintainer type="person">
+        <email>svdm-gentoo@protonmail.com</email>
+        <name>Simon van der Maas</name>
+    </maintainer>
+</pkgmetadata>

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
new file mode 100644
index 00000000..3b307eb0
--- /dev/null
+++ b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Fish-like autosuggestions for zsh"
+HOMEPAGE="https://github.com/zsh-users/zsh-autosuggestions"
+SRC_URI="https://github.com/zsh-users/zsh-autosuggestions/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+
+SLOT="0"
+
+KEYWORDS="~amd64"
+
+DEPEND=">=app-shells/zsh-4.3.11"
+
+RDEPEND="${DEPEND}"
+
+src_install() {
+	insinto "/usr/share/zsh/site-functions/"
+	doins "${PN}.zsh"
+}
+
+pkg_postinst() {
+	elog "In order to use ${CATEGORY}/${PN} add ". /usr/share/zsh/site-functions/zsh-autosuggestions.zsh" at the end of your ~/.zshrc (including the dot)"
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2021-04-19 13:43 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-04-19 13:43 UTC (permalink / raw
  To: gentoo-commits

commit:     9ecd71eaf9189cc2843774ff660ffccb673ae2d0
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Apr 19 10:45:03 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Apr 19 10:45:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9ecd71ea

app-shells/zsh-autosuggestions: restrict test for now

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 .../zsh-autosuggestions-0.6.4.ebuild                  | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
index 3b307eb01..50f7d1f5c 100644
--- a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
+++ b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
@@ -8,14 +8,21 @@ HOMEPAGE="https://github.com/zsh-users/zsh-autosuggestions"
 SRC_URI="https://github.com/zsh-users/zsh-autosuggestions/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
-
 SLOT="0"
-
 KEYWORDS="~amd64"
-
-DEPEND=">=app-shells/zsh-4.3.11"
-
-RDEPEND="${DEPEND}"
+IUSE="test"
+#RESTRICT="!test? ( test )"
+#test need byebug not packaged
+RESTRICT="test"
+RDEPEND=">=app-shells/zsh-4.3.11"
+BDEPEND="
+	test? (
+		${RDEPEND}
+		dev-ruby/bundler
+		dev-ruby/rspec
+	)
+"
+DEPEND=""
 
 src_install() {
 	insinto "/usr/share/zsh/site-functions/"


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2021-04-20  9:43 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-04-20  9:43 UTC (permalink / raw
  To: gentoo-commits

commit:     e0fa89217531194a60c0791b27493c6787273cb5
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Apr 19 23:32:09 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Apr 19 23:32:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e0fa8921

app-shells/zsh-autosuggestions: tentative changes for tests

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 .../zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild     | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
index 50f7d1f5c..7eceae128 100644
--- a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
+++ b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
@@ -3,6 +3,11 @@
 
 EAPI=7
 
+USE_RUBY="ruby25 ruby26 ruby27 ruby30"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
 DESCRIPTION="Fish-like autosuggestions for zsh"
 HOMEPAGE="https://github.com/zsh-users/zsh-autosuggestions"
 SRC_URI="https://github.com/zsh-users/zsh-autosuggestions/archive/v${PV}.tar.gz -> ${P}.tar.gz"
@@ -11,15 +16,16 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test"
-#RESTRICT="!test? ( test )"
+RESTRICT="!test? ( test )"
 #test need byebug not packaged
-RESTRICT="test"
+#RESTRICT="test"
 RDEPEND=">=app-shells/zsh-4.3.11"
 BDEPEND="
 	test? (
 		${RDEPEND}
 		dev-ruby/bundler
-		dev-ruby/rspec
+		dev-ruby/pry-byebug
+		dev-ruby/rspec-wait
 	)
 "
 DEPEND=""


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2021-04-20 10:42 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-04-20 10:42 UTC (permalink / raw
  To: gentoo-commits

commit:     f1916e91ba0c3489b2542f0ae822630d1e0daa5b
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Apr 20 10:32:59 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 20 10:32:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1916e91

app-shells/zsh-autosuggestions: fix path

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
index 53166b0f3..baa0f36eb 100644
--- a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
+++ b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
@@ -17,8 +17,6 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test"
 RESTRICT="!test? ( test )"
-#test need byebug not packaged
-#RESTRICT="test"
 RDEPEND=">=app-shells/zsh-4.3.11"
 BDEPEND="
 	test? (
@@ -33,7 +31,7 @@ DEPEND=""
 
 src_install() {
 	insinto "/usr/share/zsh/site-functions/"
-	doins "${PN}.zsh"
+	doins "${WORKDIR}/all/${P}/${PN}.zsh"
 }
 
 pkg_postinst() {


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2021-04-20 10:42 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-04-20 10:42 UTC (permalink / raw
  To: gentoo-commits

commit:     7cd5c929014bf39b5f7613fce28e1e55609f702a
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Apr 20 10:20:58 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 20 10:22:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7cd5c929

app-shells/zsh-autosuggestions: added missing dependency

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
index 7eceae128..53166b0f3 100644
--- a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
+++ b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
@@ -23,6 +23,7 @@ RDEPEND=">=app-shells/zsh-4.3.11"
 BDEPEND="
 	test? (
 		${RDEPEND}
+		app-misc/tmux
 		dev-ruby/bundler
 		dev-ruby/pry-byebug
 		dev-ruby/rspec-wait


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2021-04-20 10:42 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-04-20 10:42 UTC (permalink / raw
  To: gentoo-commits

commit:     ddb3f4ea43aa54a61579e5b219027eafd47f9362
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Apr 20 10:39:50 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 20 10:39:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ddb3f4ea

app-shells/zsh-autosuggestions: pry dep to be more safe

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
index baa0f36eb..dabb23945 100644
--- a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
+++ b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
@@ -23,6 +23,7 @@ BDEPEND="
 		${RDEPEND}
 		app-misc/tmux
 		dev-ruby/bundler
+		dev-ruby/pry
 		dev-ruby/pry-byebug
 		dev-ruby/rspec-wait
 	)


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2021-07-13  9:09 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-07-13  9:09 UTC (permalink / raw
  To: gentoo-commits

commit:     1c7e56d1399538661750399a0c70068612861641
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Jul 11 22:10:47 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun Jul 11 22:10:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c7e56d1

app-shells/zsh-autosuggestions: disable ruby25

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
index dabb23945..8cf887769 100644
--- a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
+++ b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
@@ -3,8 +3,8 @@
 
 EAPI=7
 
-USE_RUBY="ruby25 ruby26 ruby27 ruby30"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+USE_RUBY="ruby26 ruby27 ruby30"
 
 inherit ruby-fakegem
 
@@ -16,7 +16,7 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test"
-RESTRICT="!test? ( test )"
+
 RDEPEND=">=app-shells/zsh-4.3.11"
 BDEPEND="
 	test? (
@@ -28,7 +28,8 @@ BDEPEND="
 		dev-ruby/rspec-wait
 	)
 "
-DEPEND=""
+
+RESTRICT="!test? ( test )"
 
 src_install() {
 	insinto "/usr/share/zsh/site-functions/"


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2022-04-06 10:48 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2022-04-06 10:48 UTC (permalink / raw
  To: gentoo-commits

commit:     23dd59a1749efbd60b540dbe2c6fe72f695f05eb
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Apr  6 01:13:09 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Apr  6 01:13:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=23dd59a1

app-shells/zsh-autosuggestions: add 0.7.0

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-shells/zsh-autosuggestions/Manifest            |  1 +
 .../zsh-autosuggestions-0.7.0.ebuild               | 57 ++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/app-shells/zsh-autosuggestions/Manifest b/app-shells/zsh-autosuggestions/Manifest
index 249800d81..9483341be 100644
--- a/app-shells/zsh-autosuggestions/Manifest
+++ b/app-shells/zsh-autosuggestions/Manifest
@@ -1 +1,2 @@
 DIST zsh-autosuggestions-0.6.4.tar.gz 29154 BLAKE2B 73bef916e4abb53f6bd7d8daa67040a78e30aaaf3d71ed04e2f32d4fbbbc35bda1fa8cbcb8957324b52c39bf7ed454132ede657b2caee03798a41a2c330df0d9 SHA512 226b99048577ecdbe198501e6e4b3156c3d849994f0a2f7e15687cd244d4cac472cbcf746aaa32b2886652f6962852a475777b5f2bfcb3a6d0279be98a6020bb
+DIST zsh-autosuggestions-0.7.0.tar.gz 27953 BLAKE2B b12c387a7a6424f1e3e2bc76a4d9f11a3bddb4bc1d69236249722a829c53f3136ff0cbf8aaf02faff54f49f7b7363fcd06576a2dc6c8026c62951da2d0ebc2c2 SHA512 b1a0a11a89095e4f142061525f92836588561e3bfab015bb96eabe3f1f68d0cfcd7483014dac8c5b2911e65640e9182c5fc4cb4fb53e3a05ef7997c006ff76a6

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0.ebuild
new file mode 100644
index 000000000..924f2c04d
--- /dev/null
+++ b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+USE_RUBY="ruby26 ruby27 ruby30"
+
+inherit readme.gentoo-r1 ruby-fakegem
+
+DESCRIPTION="Fish-like autosuggestions for zsh"
+HOMEPAGE="https://github.com/zsh-users/zsh-autosuggestions"
+SRC_URI="https://github.com/zsh-users/zsh-autosuggestions/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/all/${P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND=">=app-shells/zsh-4.3.11"
+BDEPEND="
+	test? (
+		${RDEPEND}
+		app-misc/tmux
+		dev-ruby/bundler
+		dev-ruby/pry
+		dev-ruby/pry-byebug
+		dev-ruby/rspec-wait
+	)
+"
+
+RESTRICT="!test? ( test )"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
+. /usr/share/zsh/site-functions/${PN}.zsh
+at the end of your ~/.zshrc"
+
+src_prepare() {
+	# FIXME: Disable failing tests
+	rm "spec/options/buffer_max_size_spec.rb" \
+		|| die "Could not remove tests"
+	ruby-ng_src_prepare
+}
+
+src_install() {
+	insinto "/usr/share/zsh/site-functions/"
+	doins "${PN}.zsh"
+
+	readme.gentoo_create_doc
+	einstalldocs
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2022-04-06 21:25 Ronny Gutbrod
  0 siblings, 0 replies; 13+ messages in thread
From: Ronny Gutbrod @ 2022-04-06 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     69f1edbd96d9bf63b263aff711626740a3b71fcb
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Apr  6 19:36:42 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Wed Apr  6 19:46:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=69f1edbd

app-shells/zsh-autosuggestions: drop 0.7.0

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 .../zsh-autosuggestions-0.7.0.ebuild               | 57 ----------------------
 1 file changed, 57 deletions(-)

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0.ebuild
deleted file mode 100644
index 924f2c04d..000000000
--- a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-USE_RUBY="ruby26 ruby27 ruby30"
-
-inherit readme.gentoo-r1 ruby-fakegem
-
-DESCRIPTION="Fish-like autosuggestions for zsh"
-HOMEPAGE="https://github.com/zsh-users/zsh-autosuggestions"
-SRC_URI="https://github.com/zsh-users/zsh-autosuggestions/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/all/${P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND=">=app-shells/zsh-4.3.11"
-BDEPEND="
-	test? (
-		${RDEPEND}
-		app-misc/tmux
-		dev-ruby/bundler
-		dev-ruby/pry
-		dev-ruby/pry-byebug
-		dev-ruby/rspec-wait
-	)
-"
-
-RESTRICT="!test? ( test )"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
-. /usr/share/zsh/site-functions/${PN}.zsh
-at the end of your ~/.zshrc"
-
-src_prepare() {
-	# FIXME: Disable failing tests
-	rm "spec/options/buffer_max_size_spec.rb" \
-		|| die "Could not remove tests"
-	ruby-ng_src_prepare
-}
-
-src_install() {
-	insinto "/usr/share/zsh/site-functions/"
-	doins "${PN}.zsh"
-
-	readme.gentoo_create_doc
-	einstalldocs
-}
-
-pkg_postinst() {
-	readme.gentoo_print_elog
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
  2022-04-06 19:50 [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
@ 2022-04-06 21:25 ` Ronny Gutbrod
  0 siblings, 0 replies; 13+ messages in thread
From: Ronny Gutbrod @ 2022-04-06 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     1cf47b5a6da4f551086eeafe036cff1ee73cfbc3
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Apr  6 19:29:33 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Wed Apr  6 19:46:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1cf47b5a

app-shells/zsh-autosuggestions: Don't pull test deps with USE="-test"

ruby-fakegem pulls in virtual/rubygems unconditionally, so we use
ruby-ng directly and copy each_ruby_test() from ruby-fakegem.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 .../zsh-autosuggestions-0.7.0-r1.ebuild            | 83 ++++++++++++++++++++++
 1 file changed, 83 insertions(+)

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r1.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r1.ebuild
new file mode 100644
index 000000000..834a9c1b9
--- /dev/null
+++ b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r1.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby26 ruby27 ruby30"
+RUBY_OPTIONAL="yes"
+
+inherit readme.gentoo-r1 ruby-ng
+
+DESCRIPTION="Fish-like autosuggestions for zsh"
+HOMEPAGE="https://github.com/zsh-users/zsh-autosuggestions"
+SRC_URI="https://github.com/zsh-users/zsh-autosuggestions/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/all/${P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+REQUIRED_USE="test? ( || ( $(ruby_get_use_targets) ) )"
+
+RDEPEND=">=app-shells/zsh-4.3.11"
+DEPEND=""
+BDEPEND="
+	test? (
+		${RDEPEND}
+		$(ruby_implementations_depend)
+		app-misc/tmux
+		dev-ruby/bundler
+		dev-ruby/pry
+		dev-ruby/pry-byebug
+		dev-ruby/rspec:3
+		dev-ruby/rspec-wait
+		virtual/rubygems
+	)
+"
+
+RESTRICT="!test? ( test )"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
+. /usr/share/zsh/site-functions/${PN}.zsh
+at the end of your ~/.zshrc"
+
+pkg_setup() {
+	use test && ruby-ng_pkg_setup
+}
+
+src_prepare() {
+	# FIXME: Disable failing tests
+	rm "spec/options/buffer_max_size_spec.rb" \
+		|| die "Could not remove tests"
+
+	if use test; then
+		ruby-ng_src_prepare
+	else
+		default
+	fi
+}
+
+src_configure() {
+	use test && ruby-ng_src_configure
+}
+
+src_compile() {
+	use test && ruby-ng_src_compile
+}
+
+each_ruby_test() {
+	RSPEC_VERSION=3 ruby-ng_rspec
+}
+
+src_install() {
+	insinto "/usr/share/zsh/site-functions/"
+	doins "${PN}.zsh"
+
+	readme.gentoo_create_doc
+	einstalldocs
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2023-09-25 10:00 Florian Schmaus
  0 siblings, 0 replies; 13+ messages in thread
From: Florian Schmaus @ 2023-09-25 10:00 UTC (permalink / raw
  To: gentoo-commits

commit:     6af2b0022af615fa7a79ccfa729b5cad557f2594
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Sun Sep 24 19:11:22 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 19:11:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6af2b002

app-shells/zsh-autosuggestions: empty revbump for previous change

and also because I forgot to add the `Closes` tag

Closes: https://bugs.gentoo.org/914602
Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

 ...utosuggestions-0.7.0-r1.ebuild => zsh-autosuggestions-0.7.0-r2.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r1.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r2.ebuild
similarity index 100%
rename from app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r1.ebuild
rename to app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r2.ebuild


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2023-09-25 10:00 Florian Schmaus
  0 siblings, 0 replies; 13+ messages in thread
From: Florian Schmaus @ 2023-09-25 10:00 UTC (permalink / raw
  To: gentoo-commits

commit:     65aeb23e595573a732097fa30a217ea9cf216b2f
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Sun Sep 24 19:04:06 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 19:07:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=65aeb23e

app-shells/zsh-autosuggestions: drop 0.6.4

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

 app-shells/zsh-autosuggestions/Manifest            |  1 -
 .../zsh-autosuggestions-0.6.4.ebuild               | 41 ----------------------
 2 files changed, 42 deletions(-)

diff --git a/app-shells/zsh-autosuggestions/Manifest b/app-shells/zsh-autosuggestions/Manifest
index 9483341be9..ce4a3ffbcb 100644
--- a/app-shells/zsh-autosuggestions/Manifest
+++ b/app-shells/zsh-autosuggestions/Manifest
@@ -1,2 +1 @@
-DIST zsh-autosuggestions-0.6.4.tar.gz 29154 BLAKE2B 73bef916e4abb53f6bd7d8daa67040a78e30aaaf3d71ed04e2f32d4fbbbc35bda1fa8cbcb8957324b52c39bf7ed454132ede657b2caee03798a41a2c330df0d9 SHA512 226b99048577ecdbe198501e6e4b3156c3d849994f0a2f7e15687cd244d4cac472cbcf746aaa32b2886652f6962852a475777b5f2bfcb3a6d0279be98a6020bb
 DIST zsh-autosuggestions-0.7.0.tar.gz 27953 BLAKE2B b12c387a7a6424f1e3e2bc76a4d9f11a3bddb4bc1d69236249722a829c53f3136ff0cbf8aaf02faff54f49f7b7363fcd06576a2dc6c8026c62951da2d0ebc2c2 SHA512 b1a0a11a89095e4f142061525f92836588561e3bfab015bb96eabe3f1f68d0cfcd7483014dac8c5b2911e65640e9182c5fc4cb4fb53e3a05ef7997c006ff76a6

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
deleted file mode 100644
index 8cf8877692..0000000000
--- a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.6.4.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-USE_RUBY="ruby26 ruby27 ruby30"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Fish-like autosuggestions for zsh"
-HOMEPAGE="https://github.com/zsh-users/zsh-autosuggestions"
-SRC_URI="https://github.com/zsh-users/zsh-autosuggestions/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND=">=app-shells/zsh-4.3.11"
-BDEPEND="
-	test? (
-		${RDEPEND}
-		app-misc/tmux
-		dev-ruby/bundler
-		dev-ruby/pry
-		dev-ruby/pry-byebug
-		dev-ruby/rspec-wait
-	)
-"
-
-RESTRICT="!test? ( test )"
-
-src_install() {
-	insinto "/usr/share/zsh/site-functions/"
-	doins "${WORKDIR}/all/${P}/${PN}.zsh"
-}
-
-pkg_postinst() {
-	elog "In order to use ${CATEGORY}/${PN} add ". /usr/share/zsh/site-functions/zsh-autosuggestions.zsh" at the end of your ~/.zshrc (including the dot)"
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/
@ 2023-09-25 10:00 Florian Schmaus
  0 siblings, 0 replies; 13+ messages in thread
From: Florian Schmaus @ 2023-09-25 10:00 UTC (permalink / raw
  To: gentoo-commits

commit:     d7d3a9fec1a6429ad06863f9baf676a6b939bba8
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Sun Sep 24 19:04:28 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 19:07:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d7d3a9fe

app-shells/zsh-autosuggestions: update USE_RUBY

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

 app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r1.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r1.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r1.ebuild
index 834a9c1b9b..99ee170438 100644
--- a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r1.ebuild
+++ b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-USE_RUBY="ruby26 ruby27 ruby30"
+USE_RUBY="ruby31 ruby32"
 RUBY_OPTIONAL="yes"
 
 inherit readme.gentoo-r1 ruby-ng
@@ -50,6 +50,8 @@ src_prepare() {
 	# FIXME: Disable failing tests
 	rm "spec/options/buffer_max_size_spec.rb" \
 		|| die "Could not remove tests"
+	rm "spec/integrations/auto_cd_spec.rb" \
+		|| die "Could not remove tests"
 
 	if use test; then
 		ruby-ng_src_prepare


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2023-09-25 10:00 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-13  9:09 [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-autosuggestions/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2023-09-25 10:00 Florian Schmaus
2023-09-25 10:00 Florian Schmaus
2023-09-25 10:00 Florian Schmaus
2022-04-06 21:25 Ronny Gutbrod
2022-04-06 19:50 [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
2022-04-06 21:25 ` [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
2022-04-06 10:48 Andrew Ammerlaan
2021-04-20 10:42 Andrew Ammerlaan
2021-04-20 10:42 Andrew Ammerlaan
2021-04-20 10:42 Andrew Ammerlaan
2021-04-20  9:43 Andrew Ammerlaan
2021-04-19 13:43 Andrew Ammerlaan
2021-02-16 21:10 Theo Anderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox