Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/cpp-taskflow/
Date: Sat, 23 May 2020 07:01:57
Message-Id: 1590217233.fcb2ebb167a148788105c74491aaa33cb510a5b4.tamiko@gentoo
1 commit: fcb2ebb167a148788105c74491aaa33cb510a5b4
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 23 07:00:33 2020 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Sat May 23 07:00:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcb2ebb1
7
8 dev-cpp/cpp-taskflow: new package
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
12
13 dev-cpp/cpp-taskflow/Manifest | 1 +
14 dev-cpp/cpp-taskflow/cpp-taskflow-2.4.0.ebuild | 27 ++++++++++++++++++++++++++
15 dev-cpp/cpp-taskflow/metadata.xml | 20 +++++++++++++++++++
16 3 files changed, 48 insertions(+)
17
18 diff --git a/dev-cpp/cpp-taskflow/Manifest b/dev-cpp/cpp-taskflow/Manifest
19 new file mode 100644
20 index 00000000000..4c62f183ab2
21 --- /dev/null
22 +++ b/dev-cpp/cpp-taskflow/Manifest
23 @@ -0,0 +1 @@
24 +DIST cpp-taskflow-2.4.0.tar.gz 76993334 BLAKE2B 8f257165ab72dbe6c1cf6a86886669008e9f16f1dfd4871defc452bdb9dfa3e45ab9bfbbdc874b4ba566a2a7d8984a666ce2933b2c6d2215467f7fbfa03ac520 SHA512 dd6c7500e39d7058871280d12e120bd28d9609e5289f1d7851b3b59e2c1bfe74d3040d902bd5b26895e558b563c8abad878e7bc343e199e7356940c02a64217f
25
26 diff --git a/dev-cpp/cpp-taskflow/cpp-taskflow-2.4.0.ebuild b/dev-cpp/cpp-taskflow/cpp-taskflow-2.4.0.ebuild
27 new file mode 100644
28 index 00000000000..a41d2610143
29 --- /dev/null
30 +++ b/dev-cpp/cpp-taskflow/cpp-taskflow-2.4.0.ebuild
31 @@ -0,0 +1,27 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DESCRIPTION="Modern C++ Parallel Task Programming"
38 +HOMEPAGE="https://cpp-taskflow.github.io"
39 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="MIT"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="doc"
45 +
46 +RDEPEND=""
47 +DEPEND=""
48 +
49 +HTML_DOCS=( docs/. )
50 +
51 +src_install() {
52 + insinto /usr/include
53 + doins -r taskflow
54 +
55 + if $(use doc); then
56 + einstalldocs
57 + fi
58 +}
59
60 diff --git a/dev-cpp/cpp-taskflow/metadata.xml b/dev-cpp/cpp-taskflow/metadata.xml
61 new file mode 100644
62 index 00000000000..8406ef2081f
63 --- /dev/null
64 +++ b/dev-cpp/cpp-taskflow/metadata.xml
65 @@ -0,0 +1,20 @@
66 +<?xml version="1.0" encoding="UTF-8"?>
67 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
68 +<pkgmetadata>
69 + <maintainer type="person">
70 + <email>tamiko@g.o</email>
71 + <name>Matthias Maier</name>
72 + </maintainer>
73 + <maintainer type="project">
74 + <email>sci@g.o</email>
75 + <name>Gentoo Science Project</name>
76 + </maintainer>
77 + <longdescription>
78 + Cpp-Taskflow is faster, more expressive, and easier for drop-in
79 + integration than many of existing task programming frameworks in
80 + handling complex parallel workloads.
81 + </longdescription>
82 + <upstream>
83 + <remote-id type="github">cpp-taskflow/cpp-taskflow</remote-id>
84 + </upstream>
85 +</pkgmetadata>