Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-blobfile for openSUSE:Factory
checked in at 2026-08-24 15:43:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-blobfile (Old)
and /work/SRC/openSUSE:Factory/.python-blobfile.new.1258 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-blobfile"
Mon Aug 24 15:43:30 2026 rev:1 rq:1372971 version:3.0.0
Changes:
--------
New Changes file:
--- /dev/null 2026-08-14 00:55:04.466000000 +0200
+++
/work/SRC/openSUSE:Factory/.python-blobfile.new.1258/python-blobfile.changes
2026-08-24 15:43:33.645585764 +0200
@@ -0,0 +1,6 @@
+-------------------------------------------------------------------
+Fri Aug 21 18:32:52 UTC 2026 - Martin Pluskal <[email protected]>
+
+- Initial package of blobfile 3.0.0: read GCS, Azure Blob Storage
+ and local paths with a tensorflow.io.gfile-like interface
+
New:
----
blobfile-3.0.0.tar.gz
python-blobfile.changes
python-blobfile.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-blobfile.spec ++++++
#
# spec file for package python-blobfile
#
# Copyright (c) 2026 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-blobfile
Version: 3.0.0
Release: 0
Summary: Read GCS, ABS and local paths with the same interface
License: Unlicense
URL: https://github.com/blobfile/blobfile
Source:
https://files.pythonhosted.org/packages/source/b/blobfile/blobfile-%{version}.tar.gz
BuildRequires: %{python_module filelock >= 3.0}
BuildRequires: %{python_module lxml >= 4.9}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pycryptodomex >= 3.8}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools >= 64.0}
BuildRequires: %{python_module urllib3 >= 1.25.3}
BuildRequires: %{python_module wheel}
BuildRequires: %{python_module xmltodict}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-filelock >= 3.0
Requires: python-lxml >= 4.9
Requires: python-pycryptodomex >= 3.8
Requires: python-urllib3 >= 1.25.3
BuildArch: noarch
%python_subpackages
%description
A Python library that provides an open()-like interface for reading
local and remote files (Google Cloud Storage and Azure Blob Storage),
plus os.path- and shutil-like helpers that also accept GCS (gs://)
and Azure (az://) paths. Inspired by TensorFlow's gfile, but not an
exact clone of that API.
%prep
%autosetup -p1 -n blobfile-%{version}
# Tests live inside the importable blobfile package; keep the self-contained
# XML parser tests for %%check and drop the cloud-integration suite so it is
# not shipped.
mkdir tests
mv blobfile/_xml_test.py tests/
rm -f blobfile/_ops_test.py
# Upstream README/LICENSE are CRLF (rpmlint wrong-file-end-of-line-encoding)
sed -i 's/\r$//' README.md LICENSE
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# The main suite (_ops_test.py) talks to GCS and Azure and needs provider
# accounts (and typically docker); it cannot run in the offline OBS build.
# The XML parser tests are self-contained.
%pytest tests/_xml_test.py
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python -B -c "import
blobfile"
%files %{python_files}
%license LICENSE
%doc README.md
%{python_sitelib}/blobfile
%{python_sitelib}/blobfile-%{version}.dist-info
%changelog