* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2013-02-10 14:39 Alexey Shvetsov
0 siblings, 0 replies; 16+ messages in thread
From: Alexey Shvetsov @ 2013-02-10 14:39 UTC (permalink / raw
To: gentoo-commits
commit: f0c0be7d5564bc7d54630cf7f0c375a3815f96c9
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Fri Feb 8 11:42:33 2013 +0000
Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Feb 8 11:42:33 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f0c0be7d
updated EAPI, dropped versionator eclass, added shortcut for package name
---
sys-cluster/hpx/hpx-0.9.5.ebuild | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/sys-cluster/hpx/hpx-0.9.5.ebuild b/sys-cluster/hpx/hpx-0.9.5.ebuild
index 07792d7..a34bc08 100644
--- a/sys-cluster/hpx/hpx-0.9.5.ebuild
+++ b/sys-cluster/hpx/hpx-0.9.5.ebuild
@@ -2,16 +2,15 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=4
+EAPI=5
inherit cmake-utils
-inherit versionator
-S="${WORKDIR}/${PN}_${PV}"
+MY_P="${PN}_${PV}"
-DESCRIPTION="A general C++ runtime system for parallel and distributed applications of any scale."
+DESCRIPTION="A general C++ runtime system for parallel and distributed applications of any scale"
HOMEPAGE="http://stellar.cct.lsu.edu/tag/hpx/"
-SRC_URI="http://stellar.cct.lsu.edu/files/hpx_${PV}.tar.gz"
+SRC_URI="http://stellar.cct.lsu.edu/files/${MY_P}.tar.gz"
LICENSE="Boost-1.0"
SLOT="0"
@@ -21,6 +20,8 @@ IUSE=""
DEPEND=">=dev-libs/boost-1.48"
RDEPEND="${DEPEND}"
+S="${WORKDIR}/${MY_P}"
+
src_configure() {
export CMAKE_BUILD_TYPE=Release
cmake-utils_src_configure
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2013-08-06 15:49 Sebastien Fabbro
0 siblings, 0 replies; 16+ messages in thread
From: Sebastien Fabbro @ 2013-08-06 15:49 UTC (permalink / raw
To: gentoo-commits
commit: 2fa2529e97fdf97cbe53d58479ab2d82efe34379
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Fri Aug 2 20:08:17 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Fri Aug 2 20:08:17 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2fa2529e
updated HPX ebuild to cope with new cmake-utils eclass
---
sys-cluster/hpx/hpx-0.9.5.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys-cluster/hpx/hpx-0.9.5.ebuild b/sys-cluster/hpx/hpx-0.9.5.ebuild
index 25c6785..49bfea4 100644
--- a/sys-cluster/hpx/hpx-0.9.5.ebuild
+++ b/sys-cluster/hpx/hpx-0.9.5.ebuild
@@ -21,6 +21,7 @@ DEPEND=">=dev-libs/boost-1.48"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
+PATCHES=( "${FILESDIR}/hpx-0.9.5-install-path.patch" )
src_configure() {
CMAKE_BUILD_TYPE=Release
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2013-08-12 21:28 Sebastien Fabbro
0 siblings, 0 replies; 16+ messages in thread
From: Sebastien Fabbro @ 2013-08-12 21:28 UTC (permalink / raw
To: gentoo-commits
commit: fe993e8dcd55e7a8955004a677ff783468d0767d
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Mon Aug 12 14:54:49 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 14:54:49 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=fe993e8d
added updated HPX ebuild
---
sys-cluster/hpx/hpx-0.9.6.ebuild | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/sys-cluster/hpx/hpx-0.9.6.ebuild b/sys-cluster/hpx/hpx-0.9.6.ebuild
new file mode 100644
index 0000000..49bfea4
--- /dev/null
+++ b/sys-cluster/hpx/hpx-0.9.6.ebuild
@@ -0,0 +1,29 @@
+# Copyright 2013-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-utils
+
+MY_P="${PN}_${PV}"
+
+DESCRIPTION="A general C++ runtime system for parallel and distributed applications of any scale"
+HOMEPAGE="http://stellar.cct.lsu.edu/tag/hpx/"
+SRC_URI="http://stellar.cct.lsu.edu/files/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="Boost-1.0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=">=dev-libs/boost-1.48"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+PATCHES=( "${FILESDIR}/hpx-0.9.5-install-path.patch" )
+
+src_configure() {
+ CMAKE_BUILD_TYPE=Release
+ cmake-utils_src_configure
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-01-29 9:17 Justin Lecher
0 siblings, 0 replies; 16+ messages in thread
From: Justin Lecher @ 2014-01-29 9:17 UTC (permalink / raw
To: gentoo-commits
commit: b703b6c5fa241da104c511f0dced46893b84c6d2
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Tue Jan 28 07:55:19 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jan 28 07:55:19 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b703b6c5
added ebuilds for HPX 0.9.7 and upstream
---
sys-cluster/hpx/hpx-0.9.7.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
sys-cluster/hpx/hpx-9999.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/sys-cluster/hpx/hpx-0.9.7.ebuild b/sys-cluster/hpx/hpx-0.9.7.ebuild
new file mode 100644
index 0000000..0c2f2b9
--- /dev/null
+++ b/sys-cluster/hpx/hpx-0.9.7.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2014-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+if [ ${PV} == "9999" ] ; then
+ inherit git-2
+ EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
+ SRC_URI=""
+ KEYWORDS=""
+ S="${WORKDIR}/${PN}"
+ CMAKE_USE_DIR="${S}"
+else
+ SRC_URI="http://stellar.cct.lsu.edu/files/${PN}_${PV}.7z"
+ KEYWORDS="~amd64 ~ppc ~x86"
+ S="${WORKDIR}/${PN}_${PV}"
+fi
+
+inherit cmake-utils
+
+DESCRIPTION="A general C++ runtime system for parallel and distributed applications of any scale"
+HOMEPAGE="http://stellar.cct.lsu.edu/tag/hpx/"
+
+SLOT="0"
+LICENSE="Boost-1.0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=">=dev-libs/boost-1.48"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/hpx-0.9.5-install-path.patch" )
+
+src_configure() {
+ CMAKE_BUILD_TYPE=Release
+ cmake-utils_src_configure
+}
diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild
new file mode 100644
index 0000000..0c2f2b9
--- /dev/null
+++ b/sys-cluster/hpx/hpx-9999.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2014-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+if [ ${PV} == "9999" ] ; then
+ inherit git-2
+ EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
+ SRC_URI=""
+ KEYWORDS=""
+ S="${WORKDIR}/${PN}"
+ CMAKE_USE_DIR="${S}"
+else
+ SRC_URI="http://stellar.cct.lsu.edu/files/${PN}_${PV}.7z"
+ KEYWORDS="~amd64 ~ppc ~x86"
+ S="${WORKDIR}/${PN}_${PV}"
+fi
+
+inherit cmake-utils
+
+DESCRIPTION="A general C++ runtime system for parallel and distributed applications of any scale"
+HOMEPAGE="http://stellar.cct.lsu.edu/tag/hpx/"
+
+SLOT="0"
+LICENSE="Boost-1.0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=">=dev-libs/boost-1.48"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/hpx-0.9.5-install-path.patch" )
+
+src_configure() {
+ CMAKE_BUILD_TYPE=Release
+ cmake-utils_src_configure
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-01-29 9:17 Justin Lecher
0 siblings, 0 replies; 16+ messages in thread
From: Justin Lecher @ 2014-01-29 9:17 UTC (permalink / raw
To: gentoo-commits
commit: 754e263a247ff11ccf64523e38f8bcdf095c0a9c
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Tue Jan 28 15:30:58 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jan 28 15:30:58 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=754e263a
updated to git-r3 eclass
---
sys-cluster/hpx/hpx-0.9.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-cluster/hpx/hpx-0.9.7.ebuild b/sys-cluster/hpx/hpx-0.9.7.ebuild
index 0c2f2b9..2ab930b 100644
--- a/sys-cluster/hpx/hpx-0.9.7.ebuild
+++ b/sys-cluster/hpx/hpx-0.9.7.ebuild
@@ -5,7 +5,7 @@
EAPI=5
if [ ${PV} == "9999" ] ; then
- inherit git-2
+ inherit git-3
EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
SRC_URI=""
KEYWORDS=""
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-01-29 9:17 Justin Lecher
0 siblings, 0 replies; 16+ messages in thread
From: Justin Lecher @ 2014-01-29 9:17 UTC (permalink / raw
To: gentoo-commits
commit: 72093059e7670bf8fdd4109d07da13c86b84e1f4
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Tue Jan 28 15:36:23 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jan 28 15:36:23 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=72093059
removed bogus keyword selection
---
sys-cluster/hpx/hpx-0.9.7.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/sys-cluster/hpx/hpx-0.9.7.ebuild b/sys-cluster/hpx/hpx-0.9.7.ebuild
index 2ab930b..a7da46b 100644
--- a/sys-cluster/hpx/hpx-0.9.7.ebuild
+++ b/sys-cluster/hpx/hpx-0.9.7.ebuild
@@ -24,7 +24,6 @@ HOMEPAGE="http://stellar.cct.lsu.edu/tag/hpx/"
SLOT="0"
LICENSE="Boost-1.0"
-KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-libs/boost-1.48"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-02-17 17:28 Sebastien Fabbro
0 siblings, 0 replies; 16+ messages in thread
From: Sebastien Fabbro @ 2014-02-17 17:28 UTC (permalink / raw
To: gentoo-commits
commit: 30a7d9207a71e7d5455feddfca761af039295010
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 17 05:04:24 2014 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Feb 17 05:04:24 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=30a7d920
removed warning flags
---
sys-cluster/hpx/hpx-0.9.7.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/sys-cluster/hpx/hpx-0.9.7.ebuild b/sys-cluster/hpx/hpx-0.9.7.ebuild
index d8e6c22..d2938e0 100644
--- a/sys-cluster/hpx/hpx-0.9.7.ebuild
+++ b/sys-cluster/hpx/hpx-0.9.7.ebuild
@@ -60,7 +60,6 @@ pkg_setup() {
src_configure() {
CMAKE_BUILD_TYPE=Release
local mycmakeargs=(
- -Wno-dev
-DHPX_BUILD_EXAMPLES=OFF
$(cmake-utils_use doc HPX_BUILD_DOCUMENTATION)
$(cmake-utils_use jemalloc HPX_JEMALLOC)
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-02-17 17:28 Sebastien Fabbro
0 siblings, 0 replies; 16+ messages in thread
From: Sebastien Fabbro @ 2014-02-17 17:28 UTC (permalink / raw
To: gentoo-commits
commit: 544bae44b6f14443addb5e5ac4002c1566e23e4d
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 16 07:53:03 2014 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sun Feb 16 07:53:03 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=544bae44
sys-cluster/hpx: Version bump
Package-Manager: portage-2.2.8-prefix
---
sys-cluster/hpx/ChangeLog | 7 +++++++
sys-cluster/hpx/hpx-0.9.7.ebuild | 3 ++-
sys-cluster/hpx/hpx-9999.ebuild | 4 ++--
sys-cluster/hpx/metadata.xml | 8 ++++++++
4 files changed, 19 insertions(+), 3 deletions(-)
diff --git a/sys-cluster/hpx/ChangeLog b/sys-cluster/hpx/ChangeLog
new file mode 100644
index 0000000..3bef4c6
--- /dev/null
+++ b/sys-cluster/hpx/ChangeLog
@@ -0,0 +1,7 @@
+# ChangeLog for sys-cluster/hpx
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+ 16 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org> hpx-0.9.7.ebuild,
+ hpx-9999.ebuild, metadata.xml:
+ sys-cluster/hpx: Version bump
diff --git a/sys-cluster/hpx/hpx-0.9.7.ebuild b/sys-cluster/hpx/hpx-0.9.7.ebuild
index 7d0ddd0..d8e6c22 100644
--- a/sys-cluster/hpx/hpx-0.9.7.ebuild
+++ b/sys-cluster/hpx/hpx-0.9.7.ebuild
@@ -15,7 +15,7 @@ if [ ${PV} == "9999" ] ; then
CMAKE_USE_DIR="${S}"
else
SRC_URI="http://stellar.cct.lsu.edu/files/${PN}_${PV}.7z"
- KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
S="${WORKDIR}/${PN}_${PV}"
fi
@@ -37,6 +37,7 @@ RDEPEND="
>=sys-apps/hwloc-1.8
>=sys-libs/libunwind-1
sys-libs/zlib
+ jemalloc? ( dev-libs/jemalloc )
papi? ( dev-libs/papi )
perftools? ( >=dev-util/google-perftools-1.7.1 )
tbb? ( dev-cpp/tbb )
diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild
index e653868..8965b13 100644
--- a/sys-cluster/hpx/hpx-9999.ebuild
+++ b/sys-cluster/hpx/hpx-9999.ebuild
@@ -7,7 +7,7 @@ EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
if [ ${PV} == "9999" ] ; then
- inherit git-3
+ inherit git-r3
EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
SRC_URI=""
KEYWORDS=""
@@ -15,7 +15,7 @@ if [ ${PV} == "9999" ] ; then
CMAKE_USE_DIR="${S}"
else
SRC_URI="http://stellar.cct.lsu.edu/files/${PN}_${PV}.7z"
- KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
S="${WORKDIR}/${PN}_${PV}"
fi
diff --git a/sys-cluster/hpx/metadata.xml b/sys-cluster/hpx/metadata.xml
index d32e59b..ea01f2f 100644
--- a/sys-cluster/hpx/metadata.xml
+++ b/sys-cluster/hpx/metadata.xml
@@ -14,4 +14,12 @@
<maintainer>
<email>gentryx@gmx.de</email>
</maintainer>
+<use>
+ <flag name="jemalloc">Use <pkg>dev-libs/jemalloc</pkg> for memory allocation</flag>
+ <flag name="perftools">Use <pkg>dev-util/google-perftools</pkg> for
+ memory allocation</flag>
+ <flag name="tbb">Use <pkg>dev-cpp/tbb</pkg> for memory
+ allocation</flag>
+ <flag name="papi">Use <pkg>dev-libs/papi</pkg> for NaCl</flag>
+</use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-03-31 15:28 Nicolas Bock
0 siblings, 0 replies; 16+ messages in thread
From: Nicolas Bock @ 2014-03-31 15:28 UTC (permalink / raw
To: gentoo-commits
commit: 2d1977aeedb347abcbc040a768a7a9403fe6aae7
Author: ustcscgy <ustcscgy <AT> 163 <DOT> com>
AuthorDate: Fri Mar 28 06:21:30 2014 +0000
Commit: Nicolas Bock <nicolasbock <AT> gmail <DOT> com>
CommitDate: Fri Mar 28 06:21:30 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2d1977ae
sys-cluster/hpx-0.9.7: fix a typo
---
sys-cluster/hpx/hpx-0.9.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-cluster/hpx/hpx-0.9.7.ebuild b/sys-cluster/hpx/hpx-0.9.7.ebuild
index d2938e0..738ed16 100644
--- a/sys-cluster/hpx/hpx-0.9.7.ebuild
+++ b/sys-cluster/hpx/hpx-0.9.7.ebuild
@@ -7,7 +7,7 @@ EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
if [ ${PV} == "9999" ] ; then
- inherit git-3
+ inherit git-r3
EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
SRC_URI=""
KEYWORDS=""
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-07-21 22:47 Christoph Junghans
0 siblings, 0 replies; 16+ messages in thread
From: Christoph Junghans @ 2014-07-21 22:47 UTC (permalink / raw
To: gentoo-commits
commit: 6705becc485f6aec84f615e9eea1878e2cdae765
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Mon Jul 21 14:58:55 2014 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon Jul 21 14:58:55 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6705becc
HPX live ebuild now reflects changes in trunk
---
sys-cluster/hpx/hpx-9999.ebuild | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild
index 8965b13..6218ce4 100644
--- a/sys-cluster/hpx/hpx-9999.ebuild
+++ b/sys-cluster/hpx/hpx-9999.ebuild
@@ -11,7 +11,7 @@ if [ ${PV} == "9999" ] ; then
EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
SRC_URI=""
KEYWORDS=""
- S="${WORKDIR}/${PN}"
+ S="${WORKDIR}/${P}"
CMAKE_USE_DIR="${S}"
else
SRC_URI="http://stellar.cct.lsu.edu/files/${PN}_${PV}.7z"
@@ -47,10 +47,6 @@ DEPEND="${RDEPEND}
"
REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
-PATCHES=(
- "${FILESDIR}"/hpx-0.9.5-install-path.patch
-)
-
pkg_setup() {
use test && python-single-r1_pkg_setup
}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-07-21 22:47 Christoph Junghans
0 siblings, 0 replies; 16+ messages in thread
From: Christoph Junghans @ 2014-07-21 22:47 UTC (permalink / raw
To: gentoo-commits
commit: edbbef964088b867a13c35a33b5f2a2c40fd9383
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Mon Jul 21 15:34:44 2014 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon Jul 21 15:34:44 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=edbbef96
dropped no superfluous setting
---
sys-cluster/hpx/hpx-9999.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild
index 6218ce4..fc80aa2 100644
--- a/sys-cluster/hpx/hpx-9999.ebuild
+++ b/sys-cluster/hpx/hpx-9999.ebuild
@@ -11,7 +11,6 @@ if [ ${PV} == "9999" ] ; then
EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
SRC_URI=""
KEYWORDS=""
- S="${WORKDIR}/${P}"
CMAKE_USE_DIR="${S}"
else
SRC_URI="http://stellar.cct.lsu.edu/files/${PN}_${PV}.7z"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-07-21 22:47 Christoph Junghans
0 siblings, 0 replies; 16+ messages in thread
From: Christoph Junghans @ 2014-07-21 22:47 UTC (permalink / raw
To: gentoo-commits
commit: 0c47baa6e043d3c21aadcd312f5baccd7f28b425
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Mon Jul 21 21:00:02 2014 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon Jul 21 21:00:02 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0c47baa6
more corrections
---
sys-cluster/hpx/hpx-0.9.8.ebuild | 13 +++++--------
sys-cluster/hpx/hpx-9999.ebuild | 2 --
2 files changed, 5 insertions(+), 10 deletions(-)
diff --git a/sys-cluster/hpx/hpx-0.9.8.ebuild b/sys-cluster/hpx/hpx-0.9.8.ebuild
index 182746f..ac3aad7 100644
--- a/sys-cluster/hpx/hpx-0.9.8.ebuild
+++ b/sys-cluster/hpx/hpx-0.9.8.ebuild
@@ -9,14 +9,17 @@ PYTHON_COMPAT=( python{2_6,2_7} )
if [ ${PV} == "9999" ] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
- SRC_URI=""
KEYWORDS=""
S="${WORKDIR}/${PN}"
- CMAKE_USE_DIR="${S}"
else
SRC_URI="http://stellar.cct.lsu.edu/files/${PN}_${PV}.7z"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
S="${WORKDIR}/${PN}_${PV}"
+ PATCHES=(
+ "${FILESDIR}"/${P}-install-path.patch
+ "${FILESDIR}"/${P}-multilib.patch
+ "${FILESDIR}"/${P}-cmake_dir.patch
+ )
fi
inherit cmake-utils fortran-2 multilib python-single-r1
@@ -48,12 +51,6 @@ DEPEND="${RDEPEND}
"
REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
-PATCHES=(
- "${FILESDIR}"/hpx-0.9.8-install-path.patch
- "${FILESDIR}"/hpx-0.9.8-multilib.patch
- "${FILESDIR}"/hpx-0.9.8-cmake_dir.patch
-)
-
pkg_setup() {
use test && python-single-r1_pkg_setup
}
diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild
index 8d76801..5e56db9 100644
--- a/sys-cluster/hpx/hpx-9999.ebuild
+++ b/sys-cluster/hpx/hpx-9999.ebuild
@@ -9,9 +9,7 @@ PYTHON_COMPAT=( python{2_6,2_7} )
if [ ${PV} == "9999" ] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
- SRC_URI=""
KEYWORDS=""
- CMAKE_USE_DIR="${S}"
else
SRC_URI="http://stellar.cct.lsu.edu/files/${PN}_${PV}.7z"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-07-21 22:47 Christoph Junghans
0 siblings, 0 replies; 16+ messages in thread
From: Christoph Junghans @ 2014-07-21 22:47 UTC (permalink / raw
To: gentoo-commits
commit: 53bb5be0621a65213c48a5642416e4848feb588b
Author: Andreas Schäfer <gentryx <AT> gmx <DOT> de>
AuthorDate: Mon Jul 21 20:18:44 2014 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon Jul 21 20:18:44 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=53bb5be0
incorporated fixes from hpx-0.9.8 ebuild
---
sys-cluster/hpx/hpx-9999.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild
index fc80aa2..8d76801 100644
--- a/sys-cluster/hpx/hpx-9999.ebuild
+++ b/sys-cluster/hpx/hpx-9999.ebuild
@@ -18,7 +18,7 @@ else
S="${WORKDIR}/${PN}_${PV}"
fi
-inherit cmake-utils fortran-2 python-single-r1
+inherit cmake-utils fortran-2 multilib python-single-r1
DESCRIPTION="C++ runtime system for parallel and distributed applications"
HOMEPAGE="http://stellar.cct.lsu.edu/tag/hpx/"
@@ -41,6 +41,7 @@ RDEPEND="
tbb? ( dev-cpp/tbb )
"
DEPEND="${RDEPEND}
+ app-arch/p7zip
virtual/pkgconfig
test? ( dev-lang/python )
"
@@ -53,8 +54,9 @@ pkg_setup() {
src_configure() {
CMAKE_BUILD_TYPE=Release
local mycmakeargs=(
- -Wno-dev
-DHPX_BUILD_EXAMPLES=OFF
+ -DLIB=$(get_libdir)
+ -Dcmake_dir=cmake
$(cmake-utils_use doc HPX_BUILD_DOCUMENTATION)
$(cmake-utils_use jemalloc HPX_JEMALLOC)
$(cmake-utils_use test BUILD_TESTING)
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-12-24 18:54 Christoph Junghans
0 siblings, 0 replies; 16+ messages in thread
From: Christoph Junghans @ 2014-12-24 18:54 UTC (permalink / raw
To: gentoo-commits
commit: 6660315b774d07ca582a15d355e2b202f6686a89
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 24 18:53:24 2014 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Wed Dec 24 18:53:24 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6660315b
fixed deps (bug #529066)
Package-Manager: portage-2.2.14
---
sys-cluster/hpx/ChangeLog | 3 +++
sys-cluster/hpx/hpx-9999.ebuild | 1 +
2 files changed, 4 insertions(+)
diff --git a/sys-cluster/hpx/ChangeLog b/sys-cluster/hpx/ChangeLog
index 76ead3d..a13a6be 100644
--- a/sys-cluster/hpx/ChangeLog
+++ b/sys-cluster/hpx/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 24 Dec 2014; Christoph Junghans <ottxor@gentoo.org> hpx-9999.ebuild:
+ fixed deps (bug #529066)
+
*hpx-0.9.8 (20 May 2014)
20 May 2014; Christoph Junghans <ottxor@gentoo.org>
diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild
index 5e56db9..9627b8c 100644
--- a/sys-cluster/hpx/hpx-9999.ebuild
+++ b/sys-cluster/hpx/hpx-9999.ebuild
@@ -42,6 +42,7 @@ DEPEND="${RDEPEND}
app-arch/p7zip
virtual/pkgconfig
test? ( dev-lang/python )
+ doc? ( >=dev-libs/boost-1.56.0-r1[tools] )
"
REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2014-12-24 18:55 Christoph Junghans
0 siblings, 0 replies; 16+ messages in thread
From: Christoph Junghans @ 2014-12-24 18:55 UTC (permalink / raw
To: gentoo-commits
commit: d17596dfb35794436e9a10247efec06eb269de41
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 24 18:55:09 2014 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Wed Dec 24 18:55:09 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d17596df
remove old
Package-Manager: portage-2.2.14
---
sys-cluster/hpx/ChangeLog | 4 ++
sys-cluster/hpx/hpx-0.9.7.ebuild | 93 ----------------------------------------
sys-cluster/hpx/hpx-0.9.8.ebuild | 93 ----------------------------------------
3 files changed, 4 insertions(+), 186 deletions(-)
diff --git a/sys-cluster/hpx/ChangeLog b/sys-cluster/hpx/ChangeLog
index a13a6be..a5e7b9b 100644
--- a/sys-cluster/hpx/ChangeLog
+++ b/sys-cluster/hpx/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 24 Dec 2014; Christoph Junghans <ottxor@gentoo.org> -Manifest,
+ -hpx-0.9.7.ebuild, -hpx-0.9.8.ebuild:
+ remove old
+
24 Dec 2014; Christoph Junghans <ottxor@gentoo.org> hpx-9999.ebuild:
fixed deps (bug #529066)
diff --git a/sys-cluster/hpx/hpx-0.9.7.ebuild b/sys-cluster/hpx/hpx-0.9.7.ebuild
deleted file mode 100644
index 738ed16..0000000
--- a/sys-cluster/hpx/hpx-0.9.7.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_6,2_7} )
-
-if [ ${PV} == "9999" ] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
- SRC_URI=""
- KEYWORDS=""
- S="${WORKDIR}/${PN}"
- CMAKE_USE_DIR="${S}"
-else
- SRC_URI="http://stellar.cct.lsu.edu/files/${PN}_${PV}.7z"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
- S="${WORKDIR}/${PN}_${PV}"
-fi
-
-inherit cmake-utils fortran-2 python-single-r1
-
-DESCRIPTION="C++ runtime system for parallel and distributed applications"
-HOMEPAGE="http://stellar.cct.lsu.edu/tag/hpx/"
-
-SLOT="0"
-LICENSE="Boost-1.0"
-IUSE="doc examples jemalloc papi +perftools tbb test"
-
-# TODO: some of the forced deps are may be optional
-# it would need to work the automagic
-RDEPEND="
- >=dev-libs/boost-1.51
- dev-libs/libxml2
- sci-libs/hdf5
- >=sys-apps/hwloc-1.8
- >=sys-libs/libunwind-1
- sys-libs/zlib
- jemalloc? ( dev-libs/jemalloc )
- papi? ( dev-libs/papi )
- perftools? ( >=dev-util/google-perftools-1.7.1 )
- tbb? ( dev-cpp/tbb )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- test? ( dev-lang/python )
-"
-REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
-
-PATCHES=(
- "${FILESDIR}"/hpx-0.9.5-install-path.patch
- "${FILESDIR}"/hpx-0.9.7-move-boost-include.patch
-)
-
-pkg_setup() {
- use test && python-single-r1_pkg_setup
-}
-
-src_configure() {
- CMAKE_BUILD_TYPE=Release
- local mycmakeargs=(
- -DHPX_BUILD_EXAMPLES=OFF
- $(cmake-utils_use doc HPX_BUILD_DOCUMENTATION)
- $(cmake-utils_use jemalloc HPX_JEMALLOC)
- $(cmake-utils_use test BUILD_TESTING)
- $(cmake-utils_use perftools HPX_GOOGLE_PERFTOOLS)
- $(cmake-utils_use papi HPX_PAPI)
- )
- if use perftools; then
- mycmakeargs+=( -DHPX_MALLOC=tcmalloc )
- elif use jemalloc; then
- mycmakeargs+=( -DHPX_MALLOC=jemalloc )
- elif use tbb; then
- mycmakeargs+=( -DHPX_MALLOC=tbbmalloc )
- else
- mycmakeargs+=( -DHPX_MALLOC=system )
- fi
- cmake-utils_src_configure
-}
-
-src_test() {
- # avoid over-suscribing
- cmake-utils_src_make -j1 tests
-}
-
-src_install() {
- cmake-utils_src_install
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-}
diff --git a/sys-cluster/hpx/hpx-0.9.8.ebuild b/sys-cluster/hpx/hpx-0.9.8.ebuild
deleted file mode 100644
index ac3aad7..0000000
--- a/sys-cluster/hpx/hpx-0.9.8.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_6,2_7} )
-
-if [ ${PV} == "9999" ] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/STEllAR-GROUP/hpx.git"
- KEYWORDS=""
- S="${WORKDIR}/${PN}"
-else
- SRC_URI="http://stellar.cct.lsu.edu/files/${PN}_${PV}.7z"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
- S="${WORKDIR}/${PN}_${PV}"
- PATCHES=(
- "${FILESDIR}"/${P}-install-path.patch
- "${FILESDIR}"/${P}-multilib.patch
- "${FILESDIR}"/${P}-cmake_dir.patch
- )
-fi
-
-inherit cmake-utils fortran-2 multilib python-single-r1
-
-DESCRIPTION="C++ runtime system for parallel and distributed applications"
-HOMEPAGE="http://stellar.cct.lsu.edu/tag/hpx/"
-
-SLOT="0"
-LICENSE="Boost-1.0"
-IUSE="doc examples jemalloc papi +perftools tbb test"
-
-# TODO: some of the forced deps are may be optional
-# it would need to work the automagic
-RDEPEND="
- >=dev-libs/boost-1.51
- dev-libs/libxml2
- sci-libs/hdf5
- >=sys-apps/hwloc-1.8
- >=sys-libs/libunwind-1
- sys-libs/zlib
- papi? ( dev-libs/papi )
- perftools? ( >=dev-util/google-perftools-1.7.1 )
- tbb? ( dev-cpp/tbb )
-"
-DEPEND="${RDEPEND}
- app-arch/p7zip
- virtual/pkgconfig
- test? ( dev-lang/python )
-"
-REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
-
-pkg_setup() {
- use test && python-single-r1_pkg_setup
-}
-
-src_configure() {
- CMAKE_BUILD_TYPE=Release
- local mycmakeargs=(
- -DHPX_BUILD_EXAMPLES=OFF
- -DLIB=$(get_libdir)
- -Dcmake_dir=cmake
- $(cmake-utils_use doc HPX_BUILD_DOCUMENTATION)
- $(cmake-utils_use jemalloc HPX_JEMALLOC)
- $(cmake-utils_use test BUILD_TESTING)
- $(cmake-utils_use perftools HPX_GOOGLE_PERFTOOLS)
- $(cmake-utils_use papi HPX_PAPI)
- )
- if use perftools; then
- mycmakeargs+=( -DHPX_MALLOC=tcmalloc )
- elif use jemalloc; then
- mycmakeargs+=( -DHPX_MALLOC=jemalloc )
- elif use tbb; then
- mycmakeargs+=( -DHPX_MALLOC=tbbmalloc )
- else
- mycmakeargs+=( -DHPX_MALLOC=system )
- fi
- cmake-utils_src_configure
-}
-
-src_test() {
- # avoid over-suscribing
- cmake-utils_src_make -j1 tests
-}
-
-src_install() {
- cmake-utils_src_install
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/
@ 2015-09-23 10:19 Justin Lecher
0 siblings, 0 replies; 16+ messages in thread
From: Justin Lecher @ 2015-09-23 10:19 UTC (permalink / raw
To: gentoo-commits
commit: bad870ed61d0ded9c912668b18a886d234be4866
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 23 10:19:44 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Sep 23 10:19:44 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=bad870ed
sys-cluster/hpx: Properly depend on python
Package-Manager: portage-2.2.21
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
sys-cluster/hpx/hpx-9999.ebuild | 4 ++--
sys-cluster/hpx/metadata.xml | 24 ++++++++++++------------
2 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild
index 5b883f4..cdff1c6 100644
--- a/sys-cluster/hpx/hpx-9999.ebuild
+++ b/sys-cluster/hpx/hpx-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -41,7 +41,7 @@ RDEPEND="
DEPEND="${RDEPEND}
app-arch/p7zip
virtual/pkgconfig
- test? ( dev-lang/python )
+ test? ( ${PYTHON_DEPS} )
doc? ( >=dev-libs/boost-1.56.0-r1[tools] )
"
REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
diff --git a/sys-cluster/hpx/metadata.xml b/sys-cluster/hpx/metadata.xml
index ea01f2f..a066901 100644
--- a/sys-cluster/hpx/metadata.xml
+++ b/sys-cluster/hpx/metadata.xml
@@ -1,8 +1,8 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>cluster</herd>
-<longdescription>
+ <herd>cluster</herd>
+ <longdescription>
HPX (High Performance ParalleX) is a general C++ runtime system
for parallel and distributed applications of any scale. It is the
first freely available, open source, feature-complete, modular,
@@ -11,15 +11,15 @@
currently, Linux based systems, such as SMP nodes and conventional
clusters.
</longdescription>
-<maintainer>
- <email>gentryx@gmx.de</email>
-</maintainer>
-<use>
- <flag name="jemalloc">Use <pkg>dev-libs/jemalloc</pkg> for memory allocation</flag>
- <flag name="perftools">Use <pkg>dev-util/google-perftools</pkg> for
+ <maintainer>
+ <email>gentryx@gmx.de</email>
+ </maintainer>
+ <use>
+ <flag name="jemalloc">Use <pkg>dev-libs/jemalloc</pkg> for memory allocation</flag>
+ <flag name="perftools">Use <pkg>dev-util/google-perftools</pkg> for
memory allocation</flag>
- <flag name="tbb">Use <pkg>dev-cpp/tbb</pkg> for memory
+ <flag name="tbb">Use <pkg>dev-cpp/tbb</pkg> for memory
allocation</flag>
- <flag name="papi">Use <pkg>dev-libs/papi</pkg> for NaCl</flag>
-</use>
+ <flag name="papi">Use <pkg>dev-libs/papi</pkg> for NaCl</flag>
+ </use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 16+ messages in thread
end of thread, other threads:[~2015-09-23 10:20 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-31 15:28 [gentoo-commits] proj/sci:master commit in: sys-cluster/hpx/ Nicolas Bock
-- strict thread matches above, loose matches on Subject: below --
2015-09-23 10:19 Justin Lecher
2014-12-24 18:55 Christoph Junghans
2014-12-24 18:54 Christoph Junghans
2014-07-21 22:47 Christoph Junghans
2014-07-21 22:47 Christoph Junghans
2014-07-21 22:47 Christoph Junghans
2014-07-21 22:47 Christoph Junghans
2014-02-17 17:28 Sebastien Fabbro
2014-02-17 17:28 Sebastien Fabbro
2014-01-29 9:17 Justin Lecher
2014-01-29 9:17 Justin Lecher
2014-01-29 9:17 Justin Lecher
2013-08-12 21:28 Sebastien Fabbro
2013-08-06 15:49 Sebastien Fabbro
2013-02-10 14:39 Alexey Shvetsov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox