* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/workflow/
@ 2022-08-14 14:09 Aisha Tammy
0 siblings, 0 replies; 3+ messages in thread
From: Aisha Tammy @ 2022-08-14 14:09 UTC (permalink / raw
To: gentoo-commits
commit: 0158112212d6b55675fc1ac76ed962c2fb41b3aa
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sun Aug 14 14:08:57 2022 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Sun Aug 14 14:08:57 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=01581122
dev-cpp/workflow: fix DEPEND and RDEPEND
Closes: https://bugs.gentoo.org/861062
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
.../workflow/{workflow-0.10.2.ebuild => workflow-0.10.2-r1.ebuild} | 4 ++--
dev-cpp/workflow/workflow-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-cpp/workflow/workflow-0.10.2.ebuild b/dev-cpp/workflow/workflow-0.10.2-r1.ebuild
similarity index 95%
rename from dev-cpp/workflow/workflow-0.10.2.ebuild
rename to dev-cpp/workflow/workflow-0.10.2-r1.ebuild
index a28e1535d..35d33b083 100644
--- a/dev-cpp/workflow/workflow-0.10.2.ebuild
+++ b/dev-cpp/workflow/workflow-0.10.2-r1.ebuild
@@ -19,10 +19,10 @@ fi
LICENSE="Apache-2.0"
SLOT="0"
-RDEPENDS="
+RDEPEND="
dev-libs/openssl:0=
"
-DEPENDS="${DEPENDS}
+DEPEND="${RDEPEND}
dev-cpp/gtest
"
diff --git a/dev-cpp/workflow/workflow-9999.ebuild b/dev-cpp/workflow/workflow-9999.ebuild
index a28e1535d..35d33b083 100644
--- a/dev-cpp/workflow/workflow-9999.ebuild
+++ b/dev-cpp/workflow/workflow-9999.ebuild
@@ -19,10 +19,10 @@ fi
LICENSE="Apache-2.0"
SLOT="0"
-RDEPENDS="
+RDEPEND="
dev-libs/openssl:0=
"
-DEPENDS="${DEPENDS}
+DEPEND="${RDEPEND}
dev-cpp/gtest
"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/workflow/
@ 2022-09-06 23:25 Aisha Tammy
0 siblings, 0 replies; 3+ messages in thread
From: Aisha Tammy @ 2022-09-06 23:25 UTC (permalink / raw
To: gentoo-commits
commit: f5e0a0d48ffe02175884e72c2aa94e3cbe7fa84c
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Sep 6 23:25:46 2022 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Sep 6 23:25:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f5e0a0d4
dev-cpp/workflow: add 0.10.3
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-cpp/workflow/Manifest | 1 +
dev-cpp/workflow/workflow-0.10.3.ebuild | 42 +++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/dev-cpp/workflow/Manifest b/dev-cpp/workflow/Manifest
index b853273fc..6f8c2e3b8 100644
--- a/dev-cpp/workflow/Manifest
+++ b/dev-cpp/workflow/Manifest
@@ -1 +1,2 @@
DIST workflow-0.10.2.tar.gz 389218 BLAKE2B d02d9df7cb9fbcaa9280cc4ec5dfa16a2226fab15515ffa4beb45572e44024f405c5d3fa02aba994aecb8659c9e623bcf45c5cd6a44d9b38f9234ab65fc8764c SHA512 19e35a7179f4323e401bed21a203e465b35cb45dee9b78e4ecaa1ece2569758e06e2d2550fdba99ca268943254f2aeed6c3d86d32a02a32975b6dc04fc55c57a
+DIST workflow-0.10.3.tar.gz 394650 BLAKE2B ba246ceb620bc2122e316b5288cf4b8f58203f1c1d61b63e0e2b0a02f1a8b1c7a18b74409bb35bc1a4bacd07635e0ba91a677659ea712f5afc70c5d79f91a49c SHA512 5511f5d0c8b8c040e7316c7629b47648c4a6a1871b63ead33329cfa57d3c1b19e7aad1056487f92e5579d5baa354db3e4c002beb3c7f9b3d922cce4d9881ce36
diff --git a/dev-cpp/workflow/workflow-0.10.3.ebuild b/dev-cpp/workflow/workflow-0.10.3.ebuild
new file mode 100644
index 000000000..35d33b083
--- /dev/null
+++ b/dev-cpp/workflow/workflow-0.10.3.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="C++ Parallel Computing and Asynchronous Networking Engine"
+HOMEPAGE="https://github.com/sogou/workflow"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/sogou/workflow"
+else
+ SRC_URI="https://github.com/sogou/workflow/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+RDEPEND="
+ dev-libs/openssl:0=
+"
+DEPEND="${RDEPEND}
+ dev-cpp/gtest
+"
+
+PATCHES=(
+ "${FILESDIR}/workflow-0.10.2-enable-tests.patch"
+)
+
+src_prepare() {
+ cmake_src_prepare
+ mkdir docs/cn || die
+ mv docs/*.md docs/cn || die
+}
+
+src_install() {
+ cmake_src_install
+ dodoc -r docs/.
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/workflow/
@ 2023-02-24 14:00 Aisha Tammy
0 siblings, 0 replies; 3+ messages in thread
From: Aisha Tammy @ 2023-02-24 14:00 UTC (permalink / raw
To: gentoo-commits
commit: 610ee0656ca7ac9829d1cbe309f953ced8135979
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Feb 24 14:00:10 2023 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Feb 24 14:00:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=610ee065
dev-cpp/workflow: add 0.10.5
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-cpp/workflow/Manifest | 1 +
dev-cpp/workflow/workflow-0.10.5.ebuild | 42 +++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/dev-cpp/workflow/Manifest b/dev-cpp/workflow/Manifest
index 6f8c2e3b8..607420467 100644
--- a/dev-cpp/workflow/Manifest
+++ b/dev-cpp/workflow/Manifest
@@ -1,2 +1,3 @@
DIST workflow-0.10.2.tar.gz 389218 BLAKE2B d02d9df7cb9fbcaa9280cc4ec5dfa16a2226fab15515ffa4beb45572e44024f405c5d3fa02aba994aecb8659c9e623bcf45c5cd6a44d9b38f9234ab65fc8764c SHA512 19e35a7179f4323e401bed21a203e465b35cb45dee9b78e4ecaa1ece2569758e06e2d2550fdba99ca268943254f2aeed6c3d86d32a02a32975b6dc04fc55c57a
DIST workflow-0.10.3.tar.gz 394650 BLAKE2B ba246ceb620bc2122e316b5288cf4b8f58203f1c1d61b63e0e2b0a02f1a8b1c7a18b74409bb35bc1a4bacd07635e0ba91a677659ea712f5afc70c5d79f91a49c SHA512 5511f5d0c8b8c040e7316c7629b47648c4a6a1871b63ead33329cfa57d3c1b19e7aad1056487f92e5579d5baa354db3e4c002beb3c7f9b3d922cce4d9881ce36
+DIST workflow-0.10.5.tar.gz 404494 BLAKE2B 6c43dd768210ffc5b39f69a47820de9caa449dc632790d7d7cb2b2b3b0b3e0c008b6d379eac8036fc60bd6948ef88ff054a0d8cccf0d9cfa65548b689eb2a343 SHA512 696e82a1f6a7e6c339fbabb7b1f98ffe40f5f5ee7e77f4c947c0c1532817409e7a61f020c6238a32acd9eb3e06cf3e522e6d67beda32d5bbb08ea1080c20277d
diff --git a/dev-cpp/workflow/workflow-0.10.5.ebuild b/dev-cpp/workflow/workflow-0.10.5.ebuild
new file mode 100644
index 000000000..35d33b083
--- /dev/null
+++ b/dev-cpp/workflow/workflow-0.10.5.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="C++ Parallel Computing and Asynchronous Networking Engine"
+HOMEPAGE="https://github.com/sogou/workflow"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/sogou/workflow"
+else
+ SRC_URI="https://github.com/sogou/workflow/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+RDEPEND="
+ dev-libs/openssl:0=
+"
+DEPEND="${RDEPEND}
+ dev-cpp/gtest
+"
+
+PATCHES=(
+ "${FILESDIR}/workflow-0.10.2-enable-tests.patch"
+)
+
+src_prepare() {
+ cmake_src_prepare
+ mkdir docs/cn || die
+ mv docs/*.md docs/cn || die
+}
+
+src_install() {
+ cmake_src_install
+ dodoc -r docs/.
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-02-24 14:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-06 23:25 [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/workflow/ Aisha Tammy
-- strict thread matches above, loose matches on Subject: below --
2023-02-24 14:00 Aisha Tammy
2022-08-14 14:09 Aisha Tammy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox