From 0718f2446050ec75849670c89e6e2746be429695d7cfd43586aa557c651512ec Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Tue, 25 Mar 2025 08:39:58 +0000 Subject: [PATCH 1/2] - Lowercase metadata directory name. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy1?expand=0&rev=20 --- python-SQLAlchemy1.changes | 5 +++++ python-SQLAlchemy1.spec | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/python-SQLAlchemy1.changes b/python-SQLAlchemy1.changes index a31e0da..8b71a5a 100644 --- a/python-SQLAlchemy1.changes +++ b/python-SQLAlchemy1.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Mar 25 08:39:39 UTC 2025 - Steve Kowalik + +- Lowercase metadata directory name. + ------------------------------------------------------------------- Thu Sep 19 07:17:48 UTC 2024 - Steve Kowalik diff --git a/python-SQLAlchemy1.spec b/python-SQLAlchemy1.spec index 53b738e..88dd165 100644 --- a/python-SQLAlchemy1.spec +++ b/python-SQLAlchemy1.spec @@ -1,7 +1,7 @@ # # spec file for package python-SQLAlchemy1 # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -91,7 +91,7 @@ export CFLAGS="%{optflags} -fno-strict-aliasing" %license LICENSE %doc CHANGES README.rst README.dialects.rst README.unittests.rst %{python_sitearch}/sqlalchemy/ -%{python_sitearch}/SQLAlchemy-%{version}.dist-info +%{python_sitearch}/sqlalchemy-%{version}.dist-info %files -n %{name}-doc %doc doc/ From 3d213c943ec68d668ab38d5c8eccf3c9221c508238fb0a666d8f11e6517d9cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Tue, 1 Apr 2025 12:57:06 +0000 Subject: [PATCH 2/2] - Wrap the metadata directory name in a distro-based conditional OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy1?expand=0&rev=21 --- python-SQLAlchemy1.changes | 5 +++++ python-SQLAlchemy1.spec | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/python-SQLAlchemy1.changes b/python-SQLAlchemy1.changes index 8b71a5a..7ead67c 100644 --- a/python-SQLAlchemy1.changes +++ b/python-SQLAlchemy1.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Apr 1 12:56:45 UTC 2025 - Markéta Machová + +- Wrap the metadata directory name in a distro-based conditional + ------------------------------------------------------------------- Tue Mar 25 08:39:39 UTC 2025 - Steve Kowalik diff --git a/python-SQLAlchemy1.spec b/python-SQLAlchemy1.spec index 88dd165..bbc8792 100644 --- a/python-SQLAlchemy1.spec +++ b/python-SQLAlchemy1.spec @@ -91,7 +91,11 @@ export CFLAGS="%{optflags} -fno-strict-aliasing" %license LICENSE %doc CHANGES README.rst README.dialects.rst README.unittests.rst %{python_sitearch}/sqlalchemy/ +%if 0%{?suse_version} > 1600 %{python_sitearch}/sqlalchemy-%{version}.dist-info +%else +%{python_sitearch}/SQLAlchemy-%{version}.dist-info +%endif %files -n %{name}-doc %doc doc/