diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /app-shells/zsh-async | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'app-shells/zsh-async')
| -rw-r--r-- | app-shells/zsh-async/Manifest | 2 | ||||
| -rw-r--r-- | app-shells/zsh-async/metadata.xml | 19 | ||||
| -rw-r--r-- | app-shells/zsh-async/zsh-async-1.8.5_p20211005.ebuild | 48 | ||||
| -rw-r--r-- | app-shells/zsh-async/zsh-async-1.8.6.ebuild | 46 |
4 files changed, 0 insertions, 115 deletions
diff --git a/app-shells/zsh-async/Manifest b/app-shells/zsh-async/Manifest deleted file mode 100644 index 26490134947a..000000000000 --- a/app-shells/zsh-async/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -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/metadata.xml b/app-shells/zsh-async/metadata.xml deleted file mode 100644 index a33916aa1590..000000000000 --- a/app-shells/zsh-async/metadata.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>tea+gentoo@cuddleslut.fr</email> - <name>tea</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_p20211005.ebuild b/app-shells/zsh-async/zsh-async-1.8.5_p20211005.ebuild deleted file mode 100644 index dcfac4fe1a22..000000000000 --- a/app-shells/zsh-async/zsh-async-1.8.5_p20211005.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit readme.gentoo-r1 shell-completion - -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() { - newzshcomp "async.zsh" "_async" - - readme.gentoo_create_doc - einstalldocs -} - -pkg_postinst() { - readme.gentoo_print_elog -} diff --git a/app-shells/zsh-async/zsh-async-1.8.6.ebuild b/app-shells/zsh-async/zsh-async-1.8.6.ebuild deleted file mode 100644 index c9e075ebaa1d..000000000000 --- a/app-shells/zsh-async/zsh-async-1.8.6.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 2022-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit readme.gentoo-r1 shell-completion - -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() { - newzshcomp "async.zsh" "_async" - - readme.gentoo_create_doc - einstalldocs -} - -pkg_postinst() { - readme.gentoo_print_elog -} |
