Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-libs/boost-compute/
Date: Mon, 02 Feb 2015 12:06:29
Message-Id: 1422788199.d31c4c6fff1670477cf208d00b87997b5c6bbe4e.jlec@gentoo
1 commit: d31c4c6fff1670477cf208d00b87997b5c6bbe4e
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Sun Feb 1 10:56:39 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 1 10:56:39 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d31c4c6f
7
8 New package dev-libs/boost-compute
9
10 ---
11 dev-libs/boost-compute/ChangeLog | 10 +++++++++
12 dev-libs/boost-compute/boost-compute-0.4.ebuild | 1 +
13 dev-libs/boost-compute/boost-compute-9999.ebuild | 28 ++++++++++++++++++++++++
14 dev-libs/boost-compute/metadata.xml | 15 +++++++++++++
15 4 files changed, 54 insertions(+)
16
17 diff --git a/dev-libs/boost-compute/ChangeLog b/dev-libs/boost-compute/ChangeLog
18 new file mode 100644
19 index 0000000..eefb055
20 --- /dev/null
21 +++ b/dev-libs/boost-compute/ChangeLog
22 @@ -0,0 +1,10 @@
23 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
24 +# $Header: $
25 +
26 +*boost-compute-9999 (01 Feb 2015)
27 +*boost-compute-0.4 (01 Feb 2015)
28 +
29 + 01 Feb 2015; Marius Brehler <marbre@××××××××××××××.de>
30 + +metadata.xml, +boost-compute-9999.ebuild, +boost-compute-0.4.ebuild:
31 + Add Boost.Compute to overlay
32 +
33 \ No newline at end of file
34
35 diff --git a/dev-libs/boost-compute/boost-compute-0.4.ebuild b/dev-libs/boost-compute/boost-compute-0.4.ebuild
36 new file mode 120000
37 index 0000000..9782d2a
38 --- /dev/null
39 +++ b/dev-libs/boost-compute/boost-compute-0.4.ebuild
40 @@ -0,0 +1 @@
41 +boost-compute-9999.ebuild
42 \ No newline at end of file
43
44 diff --git a/dev-libs/boost-compute/boost-compute-9999.ebuild b/dev-libs/boost-compute/boost-compute-9999.ebuild
45 new file mode 100644
46 index 0000000..320fa9d
47 --- /dev/null
48 +++ b/dev-libs/boost-compute/boost-compute-9999.ebuild
49 @@ -0,0 +1,28 @@
50 +# Copyright 1999-2015 Gentoo Foundation
51 +# Distributed under the terms of the GNU General Public License v2
52 +# $Header: $
53 +
54 +EAPI=5
55 +
56 +inherit eutils cmake-utils
57 +
58 +DESCRIPTION="A header-only C++ Computing Library for OpenCL"
59 +HOMEPAGE="https://github.com/kylelutz/compute"
60 +
61 +LICENSE="Boost-1.0"
62 +SLOT="0"
63 +if [[ ${PV} == "9999" ]] ; then
64 + EGIT_REPO_URI="https://github.com/kylelutz/compute.git git://github.com/kylelutz/compute.git"
65 + inherit git-r3
66 + KEYWORDS=""
67 +else
68 + SRC_URI="https://github.com/kylelutz/compute/archive/v${PV}.tar.gz -> ${P}.tar.gz"
69 + KEYWORDS="~amd64"
70 + S="${WORKDIR}/compute-${PV}"
71 +fi
72 +
73 +RDEPEND="
74 + dev-libs/boost
75 + virtual/opencl
76 +"
77 +DEPEND="${RDEPEND}"
78
79 diff --git a/dev-libs/boost-compute/metadata.xml b/dev-libs/boost-compute/metadata.xml
80 new file mode 100644
81 index 0000000..ae0b300
82 --- /dev/null
83 +++ b/dev-libs/boost-compute/metadata.xml
84 @@ -0,0 +1,15 @@
85 +<?xml version="1.0" encoding="UTF-8"?>
86 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
87 +<pkgmetadata>
88 + <herd>sci</herd>
89 + <maintainer>
90 + <email>marbre@××××××××××××××.de</email>
91 + <name>Marius Brehler</name>
92 + </maintainer>
93 + <longdescription>
94 + Boost.Compute is a GPU/parallel-computing library for C++ based on
95 + OpenCL. The core library is a thin C++ wrapper over the OpenCL API
96 + and provides access to compute devices, contexts, command queues
97 + and memory buffers.
98 + </longdescription>
99 +</pkgmetadata>