public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/hoomd-blue/, profiles/
Date: Sat, 28 Jul 2018 12:06:23 +0000 (UTC)	[thread overview]
Message-ID: <1532779435.87a357c987080a67443e567140482094dd11fef3.mgorny@gentoo> (raw)

commit:     87a357c987080a67443e567140482094dd11fef3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 28 12:03:55 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 28 12:03:55 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87a357c9

sci-physics/hoomd-blue: Remove last-rited pkg

Closes: https://bugs.gentoo.org/624688

 profiles/package.mask                          |  4 --
 sci-physics/hoomd-blue/Manifest                |  2 -
 sci-physics/hoomd-blue/hoomd-blue-2.0.2.ebuild | 69 --------------------------
 sci-physics/hoomd-blue/hoomd-blue-9999.ebuild  | 69 --------------------------
 sci-physics/hoomd-blue/metadata.xml            | 18 -------
 5 files changed, 162 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index b7d626a5dae..8a43617455b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -240,10 +240,6 @@ games-arcade/snake3d
 # version bump. Removal in a month.
 dev-python/django-two-factor-auth
 
-# Pacho Ramos <pacho@gentoo.org> (17 Jun 2018)
-# Fails to build (#624688). Removal in a month.
-sci-physics/hoomd-blue
-
 # Pacho Ramos <pacho@gentoo.org> (17 Jun 2018)
 # Dead since 2013, not compatible with latest profiles (#642568). Removal in
 # a month

diff --git a/sci-physics/hoomd-blue/Manifest b/sci-physics/hoomd-blue/Manifest
deleted file mode 100644
index 22a73244f0a..00000000000
--- a/sci-physics/hoomd-blue/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST hoomd-blue-2.0.2.tar.bz2 2942198 BLAKE2B 5a2f964c002fd30d89757720fc9cddf733bbeaf125f7cdbab7b9c1a421e65575936fda903d3912a315433fb530148d7cddcb5830f87d9a81acdc1ba1dbf82ea2 SHA512 6480639bc1b8d0534c220c7512f742a6f9eba76ad25991153735cc7f4ff88345332be4c215abd94de85249e79e85a6970be1a74a96350d4693a2c1291fbbf689
-DIST libgetar-0.5.0.tar.bz2 217067 BLAKE2B 68d7669801d438a509582817c6e7074367a6945ee7c8f8e764dcb97e5a97a6b3394237bed4d07880a3d567b8b23dc1f159597ac51c54d03038beb1592a515952 SHA512 a27de8f7c976e5578142319684de15afca47c24953f590b34cad4ef88c3778aa47aa5eb9a1f83b1473aa49f4394e45dfaa4a8b5107264fa93101dea78ec5fa6b

diff --git a/sci-physics/hoomd-blue/hoomd-blue-2.0.2.ebuild b/sci-physics/hoomd-blue/hoomd-blue-2.0.2.ebuild
deleted file mode 100644
index 4eeb2d72968..00000000000
--- a/sci-physics/hoomd-blue/hoomd-blue-2.0.2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-CMAKE_MAKEFILE_GENERATOR="ninja"
-
-inherit cmake-utils cuda python-r1
-
-DESCRIPTION="a general-purpose particle simulation toolkit"
-HOMEPAGE="http://codeblue.umich.edu/hoomd-blue/"
-EGIT_REPO_URI="https://bitbucket.org/glotzer/${PN}.git"
-
-if [[ ${PV} = 9999 ]]; then
-	EGIT_REPO_URI="https://bitbucket.org/glotzer/${PN}.git"
-	inherit git-r3
-else
-	inherit vcs-snapshot
-	GETTAR_VER=0.5.0
-	SRC_URI="https://bitbucket.org/glotzer/${PN}/get/v${PV}.tar.bz2 -> ${P}.tar.bz2
-		https://bitbucket.org/glotzer/libgetar/get/v${GETTAR_VER}.tar.bz2 -> libgetar-${GETTAR_VER}.tar.bz2"
-	KEYWORDS="~amd64"
-fi
-
-LICENSE="hoomd-blue"
-SLOT="0"
-IUSE="cuda test mpi"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-	mpi? ( virtual/mpi )
-	cuda? ( dev-util/nvidia-cuda-sdk )
-	dev-libs/boost:=[threads,python,mpi,${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-	[[ ${PV} = 9999 ]] || mv ../libgetar-${GETTAR_VER}/* hoomd/extern/libgetar || die
-	use cuda && cuda_src_prepare
-	cmake-utils_src_prepare
-}
-
-src_configure() {
-	src_configure_internal() {
-		local mycmakeargs=(
-			-DENABLE_MPI=$(usex mpi)
-			-DENABLE_CUDA=$(usex cuda)
-			-DBUILD_TESTING=$(usex test)
-			-DUPDATE_SUBMODULES=OFF
-			-DPYTHON_EXECUTABLE="${PYTHON}"
-			-DCMAKE_INSTALL_PREFIX=$(python_get_sitedir)
-		)
-		cmake-utils_src_configure
-	}
-	python_foreach_impl src_configure_internal
-}
-
-src_compile() {
-	python_foreach_impl cmake-utils_src_make
-}
-
-src_test() {
-	python_foreach_impl cmake-utils_src_test
-}
-
-src_install() {
-	python_foreach_impl cmake-utils_src_install
-}

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 4eeb2d72968..00000000000
--- a/sci-physics/hoomd-blue/hoomd-blue-9999.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-CMAKE_MAKEFILE_GENERATOR="ninja"
-
-inherit cmake-utils cuda python-r1
-
-DESCRIPTION="a general-purpose particle simulation toolkit"
-HOMEPAGE="http://codeblue.umich.edu/hoomd-blue/"
-EGIT_REPO_URI="https://bitbucket.org/glotzer/${PN}.git"
-
-if [[ ${PV} = 9999 ]]; then
-	EGIT_REPO_URI="https://bitbucket.org/glotzer/${PN}.git"
-	inherit git-r3
-else
-	inherit vcs-snapshot
-	GETTAR_VER=0.5.0
-	SRC_URI="https://bitbucket.org/glotzer/${PN}/get/v${PV}.tar.bz2 -> ${P}.tar.bz2
-		https://bitbucket.org/glotzer/libgetar/get/v${GETTAR_VER}.tar.bz2 -> libgetar-${GETTAR_VER}.tar.bz2"
-	KEYWORDS="~amd64"
-fi
-
-LICENSE="hoomd-blue"
-SLOT="0"
-IUSE="cuda test mpi"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-	mpi? ( virtual/mpi )
-	cuda? ( dev-util/nvidia-cuda-sdk )
-	dev-libs/boost:=[threads,python,mpi,${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-	[[ ${PV} = 9999 ]] || mv ../libgetar-${GETTAR_VER}/* hoomd/extern/libgetar || die
-	use cuda && cuda_src_prepare
-	cmake-utils_src_prepare
-}
-
-src_configure() {
-	src_configure_internal() {
-		local mycmakeargs=(
-			-DENABLE_MPI=$(usex mpi)
-			-DENABLE_CUDA=$(usex cuda)
-			-DBUILD_TESTING=$(usex test)
-			-DUPDATE_SUBMODULES=OFF
-			-DPYTHON_EXECUTABLE="${PYTHON}"
-			-DCMAKE_INSTALL_PREFIX=$(python_get_sitedir)
-		)
-		cmake-utils_src_configure
-	}
-	python_foreach_impl src_configure_internal
-}
-
-src_compile() {
-	python_foreach_impl cmake-utils_src_make
-}
-
-src_test() {
-	python_foreach_impl cmake-utils_src_test
-}
-
-src_install() {
-	python_foreach_impl 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 1b92a0a4512..00000000000
--- a/sci-physics/hoomd-blue/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>junghans@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>
-  <upstream>
-    <remote-id type="bitbucket">glotzer/hoomd-blue</remote-id>
-  </upstream>
-</pkgmetadata>


                 reply	other threads:[~2018-07-28 12:06 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1532779435.87a357c987080a67443e567140482094dd11fef3.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox