public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-physics/hoomd-blue/
@ 2015-03-01  6:29 Christoph Junghans
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Junghans @ 2015-03-01  6:29 UTC (permalink / raw
  To: gentoo-commits

commit:     323abc95052d880bc4eade065ec2974630f82baf
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  1 04:59:58 2015 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Sun Mar  1 04:59:58 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=323abc95

fixed package name

Package-Manager: portage-2.2.14

---
 sci-physics/hoomd-blue/ChangeLog              |  9 ++++
 sci-physics/hoomd-blue/hoomd-blue-9999.ebuild | 61 +++++++++++++++++++++++++++
 sci-physics/hoomd-blue/metadata.xml           | 12 ++++++
 3 files changed, 82 insertions(+)

diff --git a/sci-physics/hoomd-blue/ChangeLog b/sci-physics/hoomd-blue/ChangeLog
new file mode 100644
index 0000000..2b90cc2
--- /dev/null
+++ b/sci-physics/hoomd-blue/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-physics/hoomd
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*hoomd-blue-9999 (26 Feb 2015)
+
+  26 Feb 2015; Christoph Junghans <ottxor@gentoo.org> +hoomd-blue-9999.ebuild,
+  +metadata.xml:
+  initial commit

diff --git a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
new file mode 100644
index 0000000..532b4c1
--- /dev/null
+++ b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit cmake-utils cuda python-single-r1
+
+DESCRIPTION="a general-purpose particle simulation toolkit"
+HOMEPAGE="http://codeblue.umich.edu/hoomd-blue/"
+
+if [[ ${PV} = 9999 ]]; then
+	EGIT_REPO_URI="https://bitbucket.org/glotzer/${PN}.git"
+	inherit git-r3
+	KEYWORDS=
+else
+	inherit vcs-snapshot
+	SRC_URI="https://bitbucket.org/glotzer/${PN}/get/v${PV}.tar.bz2 -> ${P}.tar.bz2"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cuda doc test mpi +zlib"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+	mpi? ( virtual/mpi )
+	cuda? ( dev-util/nvidia-cuda-sdk )
+	zlib? ( sys-libs/zlib )
+	dev-libs/boost:=[threads,python,mpi,${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen )"
+
+src_prepare() {
+	use cuda && cuda_src_prepare
+
+	cmake-utils_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		$(cmake-utils_use_enable mpi MPI)
+		$(cmake-utils_use_enable doc DOXYGEN)
+		$(cmake-utils_use_enable cuda CUDA)
+		$(cmake-utils_use_enable zlib ZLIB)
+		$(cmake-utils_use_build test BUILD_TESTING)
+		-DPYTHON_SITEDIR=$(python_get_sitedir)
+	)
+	cmake-utils_src_configure
+}
+
+src_install() {
+	use doc && HTML_DOCS=( "${BUILD_DIR}"/doc/hoomd-*doc* )
+	cmake-utils_src_install
+
+	sed -i "s/^python/${EPYTHON}/" "${ED}"/usr/bin/hoomd || die
+}

diff --git a/sci-physics/hoomd-blue/metadata.xml b/sci-physics/hoomd-blue/metadata.xml
new file mode 100644
index 0000000..8dd7ec6
--- /dev/null
+++ b/sci-physics/hoomd-blue/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>sci-chemistry</herd>
+  <maintainer>
+    <email>ottxor@gentoo.org</email>
+    <name>Christoph Junghans</name>
+  </maintainer>
+  <use>
+    <flag name="cuda">Enable cuda non-bonded kernels</flag>
+  </use>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-physics/hoomd-blue/
@ 2015-03-01  6:29 Christoph Junghans
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Junghans @ 2015-03-01  6:29 UTC (permalink / raw
  To: gentoo-commits

commit:     c00747529a6aa8216b259ddb24d9f59528d70b96
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  1 05:06:26 2015 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Sun Mar  1 05:06:26 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c0074752

fixed license

Package-Manager: portage-2.2.14

---
 sci-physics/hoomd-blue/ChangeLog              | 5 ++++-
 sci-physics/hoomd-blue/hoomd-blue-9999.ebuild | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/sci-physics/hoomd-blue/ChangeLog b/sci-physics/hoomd-blue/ChangeLog
index 2b90cc2..d17349c 100644
--- a/sci-physics/hoomd-blue/ChangeLog
+++ b/sci-physics/hoomd-blue/ChangeLog
@@ -1,7 +1,10 @@
-# ChangeLog for sci-physics/hoomd
+# ChangeLog for sci-physics/hoomd-blue
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  01 Mar 2015; Christoph Junghans <ottxor@gentoo.org> hoomd-blue-9999.ebuild:
+  fixed license
+
 *hoomd-blue-9999 (26 Feb 2015)
 
   26 Feb 2015; Christoph Junghans <ottxor@gentoo.org> +hoomd-blue-9999.ebuild,

diff --git a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
index 532b4c1..fa6c5e7 100644
--- a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
+++ b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
@@ -21,7 +21,7 @@ else
 	KEYWORDS="~amd64"
 fi
 
-LICENSE="GPL-3"
+LICENSE="hoomd-blue"
 SLOT="0"
 IUSE="cuda doc test mpi +zlib"
 


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-physics/hoomd-blue/
@ 2015-03-06 18:51 Christoph Junghans
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Junghans @ 2015-03-06 18:51 UTC (permalink / raw
  To: gentoo-commits

commit:     0b4346720b790ae0392ec0221eb6794c6615a52f
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  6 18:50:49 2015 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Fri Mar  6 18:50:49 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=0b434672

update live ebuild

Package-Manager: portage-2.2.14

 sci-physics/hoomd-blue/ChangeLog              | 3 +++
 sci-physics/hoomd-blue/hoomd-blue-9999.ebuild | 3 +--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/sci-physics/hoomd-blue/ChangeLog b/sci-physics/hoomd-blue/ChangeLog
index d17349c..70755ba 100644
--- a/sci-physics/hoomd-blue/ChangeLog
+++ b/sci-physics/hoomd-blue/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  06 Mar 2015; Christoph Junghans <ottxor@gentoo.org> hoomd-blue-9999.ebuild:
+  update live ebuild
+
   01 Mar 2015; Christoph Junghans <ottxor@gentoo.org> hoomd-blue-9999.ebuild:
   fixed license
 

diff --git a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
index fa6c5e7..51bc69d 100644
--- a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
+++ b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
@@ -48,6 +48,7 @@ src_configure() {
 		$(cmake-utils_use_enable cuda CUDA)
 		$(cmake-utils_use_enable zlib ZLIB)
 		$(cmake-utils_use_build test BUILD_TESTING)
+		-DPYTHON_EXECUTABLE="${PYTHON}"
 		-DPYTHON_SITEDIR=$(python_get_sitedir)
 	)
 	cmake-utils_src_configure
@@ -56,6 +57,4 @@ src_configure() {
 src_install() {
 	use doc && HTML_DOCS=( "${BUILD_DIR}"/doc/hoomd-*doc* )
 	cmake-utils_src_install
-
-	sed -i "s/^python/${EPYTHON}/" "${ED}"/usr/bin/hoomd || die
 }


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-physics/hoomd-blue/
@ 2015-03-09 16:00 Christoph Junghans
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Junghans @ 2015-03-09 16:00 UTC (permalink / raw
  To: gentoo-commits

commit:     7e74871e253726b31d5606d1a5b8b29231c2b9a0
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  9 15:53:24 2015 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon Mar  9 15:54:16 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=7e74871e

switched to ninja

Package-Manager: portage-2.2.14

 sci-physics/hoomd-blue/ChangeLog              | 3 +++
 sci-physics/hoomd-blue/hoomd-blue-9999.ebuild | 1 +
 2 files changed, 4 insertions(+)

diff --git a/sci-physics/hoomd-blue/ChangeLog b/sci-physics/hoomd-blue/ChangeLog
index 70755ba..20102fa 100644
--- a/sci-physics/hoomd-blue/ChangeLog
+++ b/sci-physics/hoomd-blue/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  09 Mar 2015; Christoph Junghans <ottxor@gentoo.org> hoomd-blue-9999.ebuild:
+  switched to ninja
+
   06 Mar 2015; Christoph Junghans <ottxor@gentoo.org> hoomd-blue-9999.ebuild:
   update live ebuild
 

diff --git a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
index 51bc69d..43f51f7 100644
--- a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
+++ b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
@@ -5,6 +5,7 @@
 EAPI=5
 
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+CMAKE_MAKEFILE_GENERATOR="ninja"
 
 inherit cmake-utils cuda python-single-r1
 


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-physics/hoomd-blue/
@ 2016-07-20 17:48 Christoph Junghans
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Junghans @ 2016-07-20 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     69f42b7a22699d92efd06a01221accd79b3006f4
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 17:47:36 2016 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 17:47:36 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=69f42b7a

sci-physics/hoomd-blue: broken, will be moved to gx86

 sci-physics/hoomd-blue/hoomd-blue-9999.ebuild | 61 ---------------------------
 sci-physics/hoomd-blue/metadata.xml           | 15 -------
 2 files changed, 76 deletions(-)

diff --git a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild b/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
deleted file mode 100644
index 45701a5..0000000
--- a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-CMAKE_MAKEFILE_GENERATOR="ninja"
-
-inherit cmake-utils cuda python-single-r1
-
-DESCRIPTION="a general-purpose particle simulation toolkit"
-HOMEPAGE="http://codeblue.umich.edu/hoomd-blue/"
-
-if [[ ${PV} = 9999 ]]; then
-	EGIT_REPO_URI="https://bitbucket.org/glotzer/${PN}.git"
-	inherit git-r3
-	KEYWORDS=
-else
-	inherit vcs-snapshot
-	SRC_URI="https://bitbucket.org/glotzer/${PN}/get/v${PV}.tar.bz2 -> ${P}.tar.bz2"
-	KEYWORDS="~amd64"
-fi
-
-LICENSE="hoomd-blue"
-SLOT="0"
-IUSE="cuda doc test mpi +zlib"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-	mpi? ( virtual/mpi )
-	cuda? ( dev-util/nvidia-cuda-sdk )
-	zlib? ( sys-libs/zlib )
-	dev-libs/boost:=[threads,python,mpi,${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen )"
-
-src_prepare() {
-	use cuda && cuda_src_prepare
-
-	cmake-utils_src_prepare
-}
-
-src_configure() {
-	local mycmakeargs=(
-		$(cmake-utils_use_enable mpi MPI)
-		$(cmake-utils_use_enable doc DOXYGEN)
-		$(cmake-utils_use_enable cuda CUDA)
-		$(cmake-utils_use_enable zlib ZLIB)
-		$(cmake-utils_use_build test BUILD_TESTING)
-		-DPYTHON_EXECUTABLE="${PYTHON}"
-		-DPYTHON_SITEDIR=$(python_get_sitedir)
-	)
-	cmake-utils_src_configure
-}
-
-src_install() {
-	use doc && HTML_DOCS=( "${BUILD_DIR}"/doc/hoomd-*doc* )
-	cmake-utils_src_install
-}

diff --git a/sci-physics/hoomd-blue/metadata.xml b/sci-physics/hoomd-blue/metadata.xml
deleted file mode 100644
index 9a862af..0000000
--- a/sci-physics/hoomd-blue/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>ottxor@gentoo.org</email>
-    <name>Christoph Junghans</name>
-  </maintainer>
-  <maintainer type="project">
-    <email>sci-chemistry@gentoo.org</email>
-    <name>Gentoo Chemistry Project</name>
-  </maintainer>
-  <use>
-    <flag name="cuda">Enable cuda non-bonded kernels</flag>
-  </use>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-07-20 17:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-20 17:48 [gentoo-commits] proj/sci:master commit in: sci-physics/hoomd-blue/ Christoph Junghans
  -- strict thread matches above, loose matches on Subject: below --
2015-03-09 16:00 Christoph Junghans
2015-03-06 18:51 Christoph Junghans
2015-03-01  6:29 Christoph Junghans
2015-03-01  6:29 Christoph Junghans

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox