Compare commits

...
Sign in to create a new pull request.

17 commits

Author SHA1 Message Date
Python Maint
ec936fdcf9 Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 13:50:14 +02:00
Python Maint
81ba8fa429 Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 14:14:13 +02:00
Fedora Release Engineering
2af42a40df Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 09:04:04 +00:00
Python Maint
285c473c57 Rebuilt for Python 3.14 2025-06-03 21:15:55 +02:00
Tim Landscheidt
8710162d43 Fix package description for python3-nixio 2025-03-26 10:09:03 +00:00
Benjamin A. Beasley
0de39b50f4 Remove deprecated pytest-runner dependency
- Since the patch offered upstream introduces a "test" extra, use it
- Assert that .dist-info contains a license file
2025-02-20 11:33:33 -05:00
Fedora Release Engineering
7a19d76dc2 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-18 16:35:22 +00:00
Benjamin A. Beasley
6c4f00285c Update to 1.5.4 (close RHBZ#2324542) 2024-12-06 10:19:13 -05:00
Benjamin A. Beasley
7477ef8e86 Remove bogus BuildRequires: gcc 2024-12-06 10:18:24 -05:00
Benjamin A. Beasley
afba59758e Correctly update License to SPDX 2024-12-06 10:15:23 -05:00
Benjamin A. Beasley
d1a96adae4 Omit lenna.png from the source archive
- https://pagure.io/neuro-sig/NeuroFedora/issue/576
- https://github.com/G-Node/nixpy/issues/545
2024-12-06 10:14:50 -05:00
Benjamin A. Beasley
de4e9df2dc Drop default -r argument from %pyproject_buildrequires
[skip changelog]
2024-12-06 10:14:50 -05:00
Miroslav Suchý
09ba63a0f2 convert license to SPDX
This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4
2024-09-04 20:20:14 +02:00
Fedora Release Engineering
a0b5ab00dd Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-19 13:29:06 +00:00
Python Maint
0e1270d679 Rebuilt for Python 3.13 2024-06-08 20:58:42 +02:00
Fedora Release Engineering
fee9c6ba7b Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-26 07:18:31 +00:00
Fedora Release Engineering
3d3dcb71e5 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-22 03:55:30 +00:00
5 changed files with 130 additions and 27 deletions

2
.gitignore vendored
View file

@ -5,3 +5,5 @@
/nixpy-1.5.1.tar.gz
/nixpy-1.5.2.tar.gz
/nixpy-1.5.3.tar.gz
/nixpy-1.5.3-filtered.tar.gz
/nixpy-1.5.4-filtered.tar.gz

View file

@ -0,0 +1,34 @@
From b550f88e64c01194029a50b92d94955c39bf169f Mon Sep 17 00:00:00 2001
From: Sandro <devel@penguinpee.nl>
Date: Tue, 24 Dec 2024 09:08:28 +0100
Subject: [PATCH] Remove deprecated pytest-runner dependency
The `pytest-runner` project has been deprecated since 2019 and has been
archived on git hub in December 2024.
This removes the dependency on the deprecated package and also removes
deprecated keywords from `setup.py` related to it.
---
setup.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/setup.py b/setup.py
index 16379a5..be594d5 100644
--- a/setup.py
+++ b/setup.py
@@ -75,9 +75,9 @@ setup(
packages=packages,
scripts=[],
python_requires=">=3.6",
- tests_require=['pytest', 'scipy', 'pillow', 'matplotlib'],
- test_suite='pytest',
- setup_requires=['pytest-runner'],
+ extras_require={
+ "test": ['pytest', 'scipy', 'pillow', 'matplotlib'],
+ },
install_requires=['numpy', 'h5py', 'six', 'enum34;python_version<"3.4"'],
package_data={'nixio': [license_text, description_text]},
include_package_data=True,
--
2.48.1

50
get_source Executable file
View file

@ -0,0 +1,50 @@
#!/bin/sh
set -o errexit
set -o nounset
if [ "$#" != '1' ]
then
cat 1>&2 <<EOF
Usage: $0 VERSION
Downloads the requested version and creates a filtered source tarball.
EOF
exit 1
fi
VERSION="${1}"
OUTDIR="${PWD}"
TMPDIR="$(mktemp -d)"
trap "rm -rf '${TMPDIR}'" INT TERM EXIT
cd "${TMPDIR}"
REPO="https://github.com/G-node/nixpy"
URL="${REPO}/archive/${VERSION}/nixpy-${VERSION}.tar.gz"
echo "--> Downloading: ${URL}" 1>&2
curl -L -O "${URL}"
ARCHIVE="$(find . -mindepth 1 -maxdepth 1 -type f -name '*.tar.gz' -print -quit)"
echo "--> Extracting: $(basename "${ARCHIVE}")" 1>&2
tar -xzf "${ARCHIVE}"
echo '--> Removing Lenna/Lena image due to licensing and other issues' 1>&2
TARDIR="$(basename "${ARCHIVE}" '.tar.gz')"
MTIME="$(stat -c '%Y' "${TARDIR}")"
# https://github.com/G-Node/nixpy/issues/545
find "${TARDIR}" -type f -name lenna.png -print -delete
# Make sure the original mtime is preserved even if we modified the base
# directory by removing something at the top level. (So far, we didnt.)
touch -d @"${MTIME}" "${TARDIR}"
FILTERED="$(basename "${ARCHIVE}" .tar.gz)-filtered.tar.gz"
echo "--> Re-archiving: ${FILTERED}" 1>&2
# https://www.gnu.org/software/tar/manual/html_section/Reproducibility.html
TZ=UTC LC_ALL=C tar \
--create \
--sort=name \
--format=posix \
--numeric-owner --owner=0 --group=0 \
--mode=go+u,go-w \
--pax-option='delete=atime,delete=ctime' \
"${TARDIR}/" |
gzip -9 > "${FILTERED}"
mv -v "${FILTERED}" "${OUTDIR}"
echo 'Done.' 1>&2

View file

@ -1,53 +1,64 @@
%global forgeurl https://github.com/G-node/nixpy
%global desc \
The NIX project started as an initiative within the Electrophysiology Task \
Force a part of the INCF Data sharing Program. The NIX data model allows to \
store fully annotated scientific data-set, i.e. the data together with its \
metadata within the same container. Our aim is to achieve standardization by \
providing a common/generic data structure for a multitude of data types. See \
the wiki for more information \
\
The current implementations store the actual data using the HDF5 file format as \
a storage backend.
Name: python-nixio
Version: 1.5.3
Version: 1.5.4
Release: %autorelease
Summary: Python bindings for NIX
%global tag %version
%forgemeta
License: BSD
License: BSD-3-Clause
URL: %forgeurl
Source0: %forgesource
# We need to upload a filtered version of the source archive because
# docs/source/examples/lenna.png has several issues, including the lack of a
# license. We have asked upstream to deal with this in
# Please consider replacing lenna.png
# https://github.com/G-Node/nixpy/issues/545
# but for now, we must obtain the filtered archive by running the script in
# Source2:
# ./get_source ${VERSION}
%dnl Source0: %forgesource
Source0: nixpy-%{version}-filtered.tar.gz
# The tagged snapshot on GitHub still says "dev" but the manually uploaded
# release does not, so use the info.json from there
# https://github.com/G-Node/nixpy/issues/528
Source1: info.json
# * Script used to obtain Source0: ./get_source %%{version}
Source2: get_source
# Remove deprecated pytest-runner dependency
# https://github.com/G-Node/nixpy/pull/547
# Rebased on 1.5.4, without changes to GitHub CI configuration
# https://fedoraproject.org/wiki/Changes/DeprecatePythonPytestRunner
Patch: 0001-Remove-deprecated-pytest-runner-dependency.patch
BuildArch: noarch
# No need for nix, they're uncoupling it from the C++
# https://github.com/G-Node/nixpy/pull/276
%description
The NIX project started as an initiative within the Electrophysiology Task
Force a part of the INCF Data sharing Program. The NIX data model allows to
store fully annotated scientific data-set, i.e. the data together with its
metadata within the same container. Our aim is to achieve standardization by
providing a common/generic data structure for a multitude of data types. See
the wiki for more information
BuildRequires: python3-devel
The current implementations store the actual data using the HDF5 file format as
a storage backend.
%description %{desc}
%package -n python3-nixio
Summary: %{summary}
BuildRequires: python3-devel
BuildRequires: gcc
# use tests_require which is deprecated
BuildRequires: %{py3_dist pytest}
BuildRequires: %{py3_dist pytest-runner}
BuildRequires: %{py3_dist scipy}
BuildRequires: %{py3_dist pillow}
BuildRequires: %{py3_dist matplotlib}
%description -n python3-nixio
%{description}
%description -n python3-nixio %{desc}
%prep
%forgesetup
%autosetup -n nixpy-%{version} -p1
# it sets examples_path based on the name of the cwd
sed -i "s/nixpy/nixpy-%{version}/" nixio/test/test_doc_examples.py
@ -55,17 +66,23 @@ sed -i "s/nixpy/nixpy-%{version}/" nixio/test/test_doc_examples.py
cp %{SOURCE1} nixio/info.json -v -p
%generate_buildrequires
%pyproject_buildrequires -r
%pyproject_buildrequires -x test
%build
%pyproject_wheel
%install
%pyproject_install
%pyproject_save_files nixio
%pyproject_save_files -l nixio
%check
%{pytest}
# These require the removed lenna.png sample file:
k="${k-}${k+ and }not (TestDocumentationExamples and test_image_data)"
k="${k-}${k+ and }not (TestDocumentationExamples and test_image_with_metadata)"
k="${k-}${k+ and }not (TestDocumentationExamples and test_multiple_rois)"
k="${k-}${k+ and }not (TestDocumentationExamples and test_single_roi)"
%pytest -k "${k-}"
%files -n python3-nixio -f %{pyproject_files}
%{_bindir}/nixio

View file

@ -1 +1 @@
SHA512 (nixpy-1.5.3.tar.gz) = 1b3fd6bb638797a90a2e899d9ae3663a6a0ee3dfc5fe8c6c0806ed5ac2a34ef54771cdb1a715bf400020c6f5df7f3f348ee7129ed1e055381fa11aa5a8b6b218
SHA512 (nixpy-1.5.4-filtered.tar.gz) = 7842e1643df0b234b8de7f8c1c30875ad70ed2681561ecf570ffff2849f60ea9510e7dba3b6544e8f507eed2583925d52d29c348cc49b2d5da0a22c686e3173d