public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/, sci-libs/h5part/, sci-libs/h5part/files/
@ 2024-07-12 11:27 Arthur Zamarin
  0 siblings, 0 replies; only message in thread
From: Arthur Zamarin @ 2024-07-12 11:27 UTC (permalink / raw
  To: gentoo-commits

commit:     fd84429f87be81d79c634bfa77d716abb34a7626
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 12 11:24:50 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 12 11:24:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd84429f

sci-libs/h5part: treeclean

Bug: https://bugs.gentoo.org/933768
Bug: https://bugs.gentoo.org/849923
Bug: https://bugs.gentoo.org/882403
Bug: https://bugs.gentoo.org/837020
Bug: https://bugs.gentoo.org/741444
Bug: https://bugs.gentoo.org/831092
Bug: https://bugs.gentoo.org/862717
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 profiles/package.mask                         |  6 ------
 sci-libs/h5part/Manifest                      |  1 -
 sci-libs/h5part/files/h5part-1.6.6-mpio.patch | 26 -------------------------
 sci-libs/h5part/h5part-1.6.6-r1.ebuild        | 28 ---------------------------
 sci-libs/h5part/metadata.xml                  |  8 --------
 5 files changed, 69 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 1eb9226ed2e2..a2858f147503 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -453,12 +453,6 @@ sci-libs/coinhsl
 # Removal on 2024-07-08.  Bugs #933824, #927783.
 net-p2p/gnut
 
-# Arthur Zamarin <arthurzam@gentoo.org> (2024-06-07)
-# EAPI=6, no reverse dependencies, failing tests, various QA issues.
-# Removal on 2024-07-07.  Bugs #933768, #849923, #882403, #837020,
-# #741444, #831092, #862717.
-sci-libs/h5part
-
 # Arthur Zamarin <arthurzam@gentoo.org> (2024-05-31)
 # EAPI=6, maintainer-needed, incorrect LICENSE, fails to compile with
 # clang.

diff --git a/sci-libs/h5part/Manifest b/sci-libs/h5part/Manifest
deleted file mode 100644
index 70c6be3ebff2..000000000000
--- a/sci-libs/h5part/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST H5Part-1.6.6.tar.gz 441755 BLAKE2B bc0027a91cc5f28009dc1b716fe548c670307ca19782158314d3358e66091608cf81149dece1fddf4f279aa920b06930019a26c5f34e4e3ce58df80d003ff5e6 SHA512 0842017bfe1510746e6f9451daaaaff3d9f6eee5209e241bcc8f2d0ce96450b8929f718c41a3434f53c9457adc2547628ad57ac8a0fb1cbfb7c74862aebf996d

diff --git a/sci-libs/h5part/files/h5part-1.6.6-mpio.patch b/sci-libs/h5part/files/h5part-1.6.6-mpio.patch
deleted file mode 100644
index 152cfec34985..000000000000
--- a/sci-libs/h5part/files/h5part-1.6.6-mpio.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://github.com/quinoacomputing/H5Part/commit/b8b106c368c3400b4df3d38e97ae2943d37d3c7d.patch
-
-From b8b106c368c3400b4df3d38e97ae2943d37d3c7d Mon Sep 17 00:00:00 2001
-From: Jozsef Bakosi <jbakosi@lanl.gov>
-Date: Thu, 28 Jul 2016 08:37:24 -0600
-Subject: [PATCH] Replace H5Pset_fapl_mpiposix with H5Pset_fapl_mpio
-
-Based on the advice at
-http://www.unidata.ucar.edu/mailing_lists/archives/netcdfgroup/2014/msg00188.html.
----
- src/H5Part.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/H5Part.c b/src/H5Part.c
-index 433a574..8a1b893 100644
---- a/src/H5Part.c
-+++ b/src/H5Part.c
-@@ -246,7 +246,7 @@ _H5Part_open_file (
- 		/* select the HDF5 VFD */
- 		if (flags & H5PART_VFD_MPIPOSIX) {
- 			_H5Part_print_info ( "Selecting MPI-POSIX VFD" );
--			if (H5Pset_fapl_mpiposix ( f->access_prop, comm, 0 ) < 0) {
-+			if (H5Pset_fapl_mpio ( f->access_prop, comm, 0 ) < 0) {
- 				HANDLE_H5P_SET_FAPL_ERR;
- 				goto error_cleanup;
- 			}

diff --git a/sci-libs/h5part/h5part-1.6.6-r1.ebuild b/sci-libs/h5part/h5part-1.6.6-r1.ebuild
deleted file mode 100644
index 388a4fe89c55..000000000000
--- a/sci-libs/h5part/h5part-1.6.6-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_P="${P^^[hp]}"
-DESCRIPTION="Portable High Performance Parallel Data Interface to HDF5"
-HOMEPAGE="https://vis.lbl.gov/archive/Research/H5Part/"
-SRC_URI="https://codeforge.lbl.gov/frs/download.php/latestfile/18/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-DEPEND="
-	virtual/mpi
-	sci-libs/hdf5:=[mpi]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-mpio.patch" )
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-	econf --enable-parallel --enable-shared --disable-static CC=mpicc CXX=mpicxx
-}

diff --git a/sci-libs/h5part/metadata.xml b/sci-libs/h5part/metadata.xml
deleted file mode 100644
index c0cd18916a93..000000000000
--- a/sci-libs/h5part/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>sci@gentoo.org</email>
-		<name>Gentoo Science Project</name>
-	</maintainer>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2024-07-12 11:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-12 11:27 [gentoo-commits] repo/gentoo:master commit in: profiles/, sci-libs/h5part/, sci-libs/h5part/files/ Arthur Zamarin

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