* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-async/
@ 2022-04-06 0:07 Ronny Gutbrod
0 siblings, 0 replies; 5+ messages in thread
From: Ronny Gutbrod @ 2022-04-06 0:07 UTC (permalink / raw
To: gentoo-commits
commit: da649491fd59e87a39e70f4334eb3e3bf4a5eab3
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue Apr 5 18:34:49 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Tue Apr 5 21:26:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=da649491
app-shells/zsh-async: initial import
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
app-shells/zsh-async/Manifest | 1 +
app-shells/zsh-async/metadata.xml | 19 ++++++++++++
app-shells/zsh-async/zsh-async-1.8.5.ebuild | 46 +++++++++++++++++++++++++++++
3 files changed, 66 insertions(+)
diff --git a/app-shells/zsh-async/Manifest b/app-shells/zsh-async/Manifest
new file mode 100644
index 000000000..738f00fdb
--- /dev/null
+++ b/app-shells/zsh-async/Manifest
@@ -0,0 +1 @@
+DIST zsh-async-1.8.5.tar.gz 18346 BLAKE2B 9ac98ca71caa569ca5ede093f9a4c690ac2aa4266b8a0b4ded9304ee241269ca7d3a3c6eb7e0aaa55a0da372725f65d66eb627fe7cae0c9c59f09c867d498038 SHA512 ad9139330c57cbfb115c0ee58763db19578279e9834593f06ab97857fd416bd40a0be3215e35b5d58e212f58f46359fe3b6c2caf9820cf946efeb541cccb7d0c
diff --git a/app-shells/zsh-async/metadata.xml b/app-shells/zsh-async/metadata.xml
new file mode 100644
index 000000000..068749f86
--- /dev/null
+++ b/app-shells/zsh-async/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gentoo@tastytea.de</email>
+ <name>Ronny (tastytea) Gutbrod</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">mafredri/zsh-async</remote-id>
+ </upstream>
+ <longdescription lang="en">
+ With zsh-async you can run multiple asynchronous jobs, enforce
+ unique jobs (multiple instances of the same job will not run),
+ flush all currently running jobs and create multiple workers (each
+ with their own jobs). For each worker you can register a
+ callback-function through which you will be notified about the job
+ results (job name, return code, output and execution time).
+ </longdescription>
+</pkgmetadata>
diff --git a/app-shells/zsh-async/zsh-async-1.8.5.ebuild b/app-shells/zsh-async/zsh-async-1.8.5.ebuild
new file mode 100644
index 000000000..55f33fd69
--- /dev/null
+++ b/app-shells/zsh-async/zsh-async-1.8.5.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit readme.gentoo-r1
+
+DESCRIPTION="Run multiple asynchronous jobs with callbacks"
+HOMEPAGE="https://github.com/mafredri/zsh-async"
+SRC_URI="https://github.com/mafredri/zsh-async/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="app-shells/zsh"
+BDEPEND="
+ test? (
+ app-shells/zsh
+ dev-vcs/git
+ )
+"
+
+RESTRICT="!test? ( test )"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
+. /usr/share/zsh/site-functions/async.zsh
+at the end of your ~/.zshrc"
+
+src_test() {
+ git init || die "git repository initialization for testing failed"
+ ./test.zsh -v || die "One or more tests failed"
+}
+
+src_install() {
+ insinto /usr/share/zsh/site-functions
+ doins async.zsh
+
+ readme.gentoo_create_doc
+ einstalldocs
+}
+
+pkg_postinst() {
+ readme.gentoo_print_elog
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-async/
@ 2022-04-06 0:07 Ronny Gutbrod
0 siblings, 0 replies; 5+ messages in thread
From: Ronny Gutbrod @ 2022-04-06 0:07 UTC (permalink / raw
To: gentoo-commits
commit: abe02b9447e0a573efae39e2d4d77d2f40b06cea
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue Apr 5 23:41:43 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Tue Apr 5 23:41:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=abe02b94
app-shells/zsh-async: Add newline between SRC_URI and LICENSE
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
app-shells/zsh-async/zsh-async-1.8.5.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/app-shells/zsh-async/zsh-async-1.8.5.ebuild b/app-shells/zsh-async/zsh-async-1.8.5.ebuild
index 55f33fd69..452a9c4b2 100644
--- a/app-shells/zsh-async/zsh-async-1.8.5.ebuild
+++ b/app-shells/zsh-async/zsh-async-1.8.5.ebuild
@@ -8,6 +8,7 @@ inherit readme.gentoo-r1
DESCRIPTION="Run multiple asynchronous jobs with callbacks"
HOMEPAGE="https://github.com/mafredri/zsh-async"
SRC_URI="https://github.com/mafredri/zsh-async/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-async/
2022-04-07 22:27 [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
@ 2022-04-08 2:43 ` Ronny Gutbrod
0 siblings, 0 replies; 5+ messages in thread
From: Ronny Gutbrod @ 2022-04-08 2:43 UTC (permalink / raw
To: gentoo-commits
commit: 9b63bb1d8cb935593441e7182f8a9fd264b7e2f2
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Apr 7 22:25:24 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Thu Apr 7 22:27:06 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9b63bb1d
app-shells/zsh-async: add 1.8.5_p20211005
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
app-shells/zsh-async/Manifest | 1 +
.../zsh-async/zsh-async-1.8.5_p20211005.ebuild | 49 ++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/app-shells/zsh-async/Manifest b/app-shells/zsh-async/Manifest
index 738f00fdb..f0b058ecd 100644
--- a/app-shells/zsh-async/Manifest
+++ b/app-shells/zsh-async/Manifest
@@ -1 +1,2 @@
DIST zsh-async-1.8.5.tar.gz 18346 BLAKE2B 9ac98ca71caa569ca5ede093f9a4c690ac2aa4266b8a0b4ded9304ee241269ca7d3a3c6eb7e0aaa55a0da372725f65d66eb627fe7cae0c9c59f09c867d498038 SHA512 ad9139330c57cbfb115c0ee58763db19578279e9834593f06ab97857fd416bd40a0be3215e35b5d58e212f58f46359fe3b6c2caf9820cf946efeb541cccb7d0c
+DIST zsh-async-1.8.5_p20211005.tar.gz 18508 BLAKE2B 25fe3dc647679571e7baeef4f92138062b9d658bc45aec8110736a1b186a7fe07d54660159bd85cb6c89ec793457ea453a833b656fb406d768c7f25329d085c7 SHA512 8a65a150772aa3e0b6ba1308affc2e008705430d46825803d029c8f4bee6eda7ee657239b3cfe7b87ba829aba929e8921912aa405f9707a9ae623e7b1e17fbff
diff --git a/app-shells/zsh-async/zsh-async-1.8.5_p20211005.ebuild b/app-shells/zsh-async/zsh-async-1.8.5_p20211005.ebuild
new file mode 100644
index 000000000..983b73ba2
--- /dev/null
+++ b/app-shells/zsh-async/zsh-async-1.8.5_p20211005.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit readme.gentoo-r1
+
+MY_COMMIT="3ba6e2d1ea874bfb6badb8522ab86c1ae272923d"
+DESCRIPTION="Run multiple asynchronous jobs with callbacks"
+HOMEPAGE="https://github.com/mafredri/zsh-async"
+SRC_URI="https://github.com/mafredri/zsh-async/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MY_COMMIT}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="app-shells/zsh"
+BDEPEND="
+ test? (
+ app-shells/zsh
+ dev-vcs/git
+ )
+"
+
+RESTRICT="!test? ( test )"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
+. /usr/share/zsh/site-functions/async.zsh
+at the end of your ~/.zshrc"
+
+src_test() {
+ git init || die "git repository initialization for testing failed"
+ ./test.zsh -v || die "One or more tests failed"
+}
+
+src_install() {
+ insinto /usr/share/zsh/site-functions
+ doins async.zsh
+
+ readme.gentoo_create_doc
+ einstalldocs
+}
+
+pkg_postinst() {
+ readme.gentoo_print_elog
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-async/
@ 2023-01-12 10:38 Florian Schmaus
0 siblings, 0 replies; 5+ messages in thread
From: Florian Schmaus @ 2023-01-12 10:38 UTC (permalink / raw
To: gentoo-commits
commit: e78757ce510c524490804d56b3ceb5e83643057c
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Jan 11 22:59:33 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 22:59:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e78757ce
app-shells/zsh-async: drop 1.8.5
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
app-shells/zsh-async/Manifest | 1 -
app-shells/zsh-async/zsh-async-1.8.5.ebuild | 47 -----------------------------
2 files changed, 48 deletions(-)
diff --git a/app-shells/zsh-async/Manifest b/app-shells/zsh-async/Manifest
index 0fe277056..264901349 100644
--- a/app-shells/zsh-async/Manifest
+++ b/app-shells/zsh-async/Manifest
@@ -1,3 +1,2 @@
-DIST zsh-async-1.8.5.tar.gz 18346 BLAKE2B 9ac98ca71caa569ca5ede093f9a4c690ac2aa4266b8a0b4ded9304ee241269ca7d3a3c6eb7e0aaa55a0da372725f65d66eb627fe7cae0c9c59f09c867d498038 SHA512 ad9139330c57cbfb115c0ee58763db19578279e9834593f06ab97857fd416bd40a0be3215e35b5d58e212f58f46359fe3b6c2caf9820cf946efeb541cccb7d0c
DIST zsh-async-1.8.5_p20211005.tar.gz 18508 BLAKE2B 25fe3dc647679571e7baeef4f92138062b9d658bc45aec8110736a1b186a7fe07d54660159bd85cb6c89ec793457ea453a833b656fb406d768c7f25329d085c7 SHA512 8a65a150772aa3e0b6ba1308affc2e008705430d46825803d029c8f4bee6eda7ee657239b3cfe7b87ba829aba929e8921912aa405f9707a9ae623e7b1e17fbff
DIST zsh-async-1.8.6.tar.gz 18507 BLAKE2B 4fb49b941e260057a089b9fd0fc3f8b9b7d0e2f9765bf1ae9ba2d7b8ac7a82b7e873bb166dc17f58d2db858fda1efefc5b4ba76f6d735c1dcb901723c2334e95 SHA512 953632905851465c760f3bb2921fdfd7a886ab477ee846d799c82c8e0179e29c1fc1d6589305c7f1c4f9f20fe7d8250f66c92de02309f49f40f7ec71d5efc95d
diff --git a/app-shells/zsh-async/zsh-async-1.8.5.ebuild b/app-shells/zsh-async/zsh-async-1.8.5.ebuild
deleted file mode 100644
index 452a9c4b2..000000000
--- a/app-shells/zsh-async/zsh-async-1.8.5.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit readme.gentoo-r1
-
-DESCRIPTION="Run multiple asynchronous jobs with callbacks"
-HOMEPAGE="https://github.com/mafredri/zsh-async"
-SRC_URI="https://github.com/mafredri/zsh-async/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="app-shells/zsh"
-BDEPEND="
- test? (
- app-shells/zsh
- dev-vcs/git
- )
-"
-
-RESTRICT="!test? ( test )"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
-. /usr/share/zsh/site-functions/async.zsh
-at the end of your ~/.zshrc"
-
-src_test() {
- git init || die "git repository initialization for testing failed"
- ./test.zsh -v || die "One or more tests failed"
-}
-
-src_install() {
- insinto /usr/share/zsh/site-functions
- doins async.zsh
-
- readme.gentoo_create_doc
- einstalldocs
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-async/
@ 2023-01-12 10:38 Florian Schmaus
0 siblings, 0 replies; 5+ messages in thread
From: Florian Schmaus @ 2023-01-12 10:38 UTC (permalink / raw
To: gentoo-commits
commit: 5c308ceaa0e861cd078957b63ba1685bb0c0925e
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Jan 11 22:50:02 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 22:59:10 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5c308cea
app-shells/zsh-async: add 1.8.6
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
app-shells/zsh-async/Manifest | 1 +
app-shells/zsh-async/zsh-async-1.8.6.ebuild | 47 +++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/app-shells/zsh-async/Manifest b/app-shells/zsh-async/Manifest
index f0b058ecd..0fe277056 100644
--- a/app-shells/zsh-async/Manifest
+++ b/app-shells/zsh-async/Manifest
@@ -1,2 +1,3 @@
DIST zsh-async-1.8.5.tar.gz 18346 BLAKE2B 9ac98ca71caa569ca5ede093f9a4c690ac2aa4266b8a0b4ded9304ee241269ca7d3a3c6eb7e0aaa55a0da372725f65d66eb627fe7cae0c9c59f09c867d498038 SHA512 ad9139330c57cbfb115c0ee58763db19578279e9834593f06ab97857fd416bd40a0be3215e35b5d58e212f58f46359fe3b6c2caf9820cf946efeb541cccb7d0c
DIST zsh-async-1.8.5_p20211005.tar.gz 18508 BLAKE2B 25fe3dc647679571e7baeef4f92138062b9d658bc45aec8110736a1b186a7fe07d54660159bd85cb6c89ec793457ea453a833b656fb406d768c7f25329d085c7 SHA512 8a65a150772aa3e0b6ba1308affc2e008705430d46825803d029c8f4bee6eda7ee657239b3cfe7b87ba829aba929e8921912aa405f9707a9ae623e7b1e17fbff
+DIST zsh-async-1.8.6.tar.gz 18507 BLAKE2B 4fb49b941e260057a089b9fd0fc3f8b9b7d0e2f9765bf1ae9ba2d7b8ac7a82b7e873bb166dc17f58d2db858fda1efefc5b4ba76f6d735c1dcb901723c2334e95 SHA512 953632905851465c760f3bb2921fdfd7a886ab477ee846d799c82c8e0179e29c1fc1d6589305c7f1c4f9f20fe7d8250f66c92de02309f49f40f7ec71d5efc95d
diff --git a/app-shells/zsh-async/zsh-async-1.8.6.ebuild b/app-shells/zsh-async/zsh-async-1.8.6.ebuild
new file mode 100644
index 000000000..6b00fa4d7
--- /dev/null
+++ b/app-shells/zsh-async/zsh-async-1.8.6.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit readme.gentoo-r1
+
+DESCRIPTION="Run multiple asynchronous jobs with callbacks"
+HOMEPAGE="https://github.com/mafredri/zsh-async"
+SRC_URI="https://github.com/mafredri/zsh-async/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="app-shells/zsh"
+BDEPEND="
+ test? (
+ app-shells/zsh
+ dev-vcs/git
+ )
+"
+
+RESTRICT="!test? ( test )"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
+. /usr/share/zsh/site-functions/async.zsh
+at the end of your ~/.zshrc"
+
+src_test() {
+ git init || die "git repository initialization for testing failed"
+ ./test.zsh -v || die "One or more tests failed"
+}
+
+src_install() {
+ insinto /usr/share/zsh/site-functions
+ doins async.zsh
+
+ readme.gentoo_create_doc
+ einstalldocs
+}
+
+pkg_postinst() {
+ readme.gentoo_print_elog
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-01-12 10:38 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-12 10:38 [gentoo-commits] repo/proj/guru:master commit in: app-shells/zsh-async/ Florian Schmaus
-- strict thread matches above, loose matches on Subject: below --
2023-01-12 10:38 Florian Schmaus
2022-04-07 22:27 [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
2022-04-08 2:43 ` [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
2022-04-06 0:07 Ronny Gutbrod
2022-04-06 0:07 Ronny Gutbrod
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox