* [gentoo-commits] repo/gentoo:master commit in: dev-php/reactphp-promise/
@ 2021-02-01 19:15 Thomas Deutschmann
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Deutschmann @ 2021-02-01 19:15 UTC (permalink / raw
To: gentoo-commits
commit: dbd71774f6ea42b46e040061b0cf2bd7d1833a7d
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 1 18:08:49 2021 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Feb 1 19:15:50 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbd71774
dev-php/reactphp-promise: new package
New dependency of dev-php/composer-2.
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-php/reactphp-promise/Manifest | 1 +
dev-php/reactphp-promise/metadata.xml | 12 ++++++
.../reactphp-promise/reactphp-promise-2.8.0.ebuild | 48 ++++++++++++++++++++++
3 files changed, 61 insertions(+)
diff --git a/dev-php/reactphp-promise/Manifest b/dev-php/reactphp-promise/Manifest
new file mode 100644
index 00000000000..c11e1b03009
--- /dev/null
+++ b/dev-php/reactphp-promise/Manifest
@@ -0,0 +1 @@
+DIST reactphp-promise-2.8.0.tar.gz 17178 BLAKE2B 43e5a9eef0f774ec4de7be44fbab300dfd78a23b21de2acbb39e44af49ee95b2532f66b711acc4ee152522d4725e1e29f9abae20d0ac2e18fba3dbb3f615cc5e SHA512 8c882c96b47cc53f791de964303014feb00a73594a510287ea352ff619a8432d88f4c094523d4de98234f985f7351cd244bb094484a257aa36357e85eb0ee62e
diff --git a/dev-php/reactphp-promise/metadata.xml b/dev-php/reactphp-promise/metadata.xml
new file mode 100644
index 00000000000..3ea1553292f
--- /dev/null
+++ b/dev-php/reactphp-promise/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>php-bugs@gentoo.org</email>
+ <name>PHP</name>
+ </maintainer>
+ <stabilize-allarches/>
+ <upstream>
+ <remote-id type="github">reactphp/promise</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild b/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
new file mode 100644
index 00000000000..df260017122
--- /dev/null
+++ b/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="promise"
+
+DESCRIPTION="A lightweight implementation of CommonJS Promises/A for PHP"
+HOMEPAGE="https://reactphp.org/promise/"
+SRC_URI="https://github.com/reactphp/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+BDEPEND="dev-php/theseer-Autoload"
+
+RDEPEND="dev-php/fedora-autoloader
+ >=dev-lang/php-7.2:*"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_prepare() {
+ default
+
+ phpab \
+ --output src/autoload.php \
+ --template fedora2 \
+ --basedir src \
+ src \
+ || die
+
+cat >> src/autoload.php <<EOF || die "failed to extend autoload.php"
+
+// Dependencies
+\Fedora\Autoloader\Dependencies::required([
+ '/usr/share/php/React/Promise/functions.php'
+]);
+EOF
+}
+
+src_install() {
+ insinto /usr/share/php/React/Promise
+ doins -r src/*
+
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/reactphp-promise/
@ 2021-05-06 6:55 Agostino Sarubbo
0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo @ 2021-05-06 6:55 UTC (permalink / raw
To: gentoo-commits
commit: 05ad0f9e69c7c47dfb596be1fb5ba910693e96d9
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu May 6 06:53:08 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu May 6 06:54:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05ad0f9e
dev-php/reactphp-promise: amd64 stable wrt bug #754018
Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild b/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
index df260017122..62064b56a4b 100644
--- a/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
+++ b/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/reactphp/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE=""
BDEPEND="dev-php/theseer-Autoload"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/reactphp-promise/
@ 2021-05-10 6:58 Agostino Sarubbo
0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo @ 2021-05-10 6:58 UTC (permalink / raw
To: gentoo-commits
commit: 1ea3826a6e9c44562f5ab1ab96f3e49cb98db0c4
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon May 10 06:57:20 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon May 10 06:57:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ea3826a
dev-php/reactphp-promise: x86 stable wrt bug #754018
Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild b/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
index 62064b56a4b..bcc2cd5557a 100644
--- a/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
+++ b/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/reactphp/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE=""
BDEPEND="dev-php/theseer-Autoload"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-php/reactphp-promise/
@ 2024-01-09 17:42 Mart Raudsepp
0 siblings, 0 replies; 4+ messages in thread
From: Mart Raudsepp @ 2024-01-09 17:42 UTC (permalink / raw
To: gentoo-commits
commit: 4cfa5106885f23b5fb1250f0e139ceb2ab686af1
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 9 15:53:16 2024 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Tue Jan 9 17:38:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfa5106
dev-php/reactphp-promise: keyword 2.8.0 for ~arm64
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild b/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
index bcc2cd5557a4..3126e02ce036 100644
--- a/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
+++ b/dev-php/reactphp-promise/reactphp-promise-2.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/reactphp/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
IUSE=""
BDEPEND="dev-php/theseer-Autoload"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-09 17:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-10 6:58 [gentoo-commits] repo/gentoo:master commit in: dev-php/reactphp-promise/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2024-01-09 17:42 Mart Raudsepp
2021-05-06 6:55 Agostino Sarubbo
2021-02-01 19:15 Thomas Deutschmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox