forked from pool/fuse-oscfs
Compare commits
3 Commits
Author | SHA256 | Date | |
---|---|---|---|
03dcc7c96e | |||
430b2b9a75 | |||
7b94ab91c0 |
6
_service
6
_service
@@ -1,12 +1,12 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="manual">
|
||||||
<param name="url">https://github.com/mgerstner/oscfs.git</param>
|
<param name="url">https://github.com/mgerstner/oscfs.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="revision">0.9.0</param>
|
<param name="revision">0.9.1</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="manual">
|
||||||
<param name="file">*.tar</param>
|
<param name="file">*.tar</param>
|
||||||
<param name="compression">xz</param>
|
<param name="compression">xz</param>
|
||||||
</service>
|
</service>
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/mgerstner/oscfs.git</param>
|
<param name="url">https://github.com/mgerstner/oscfs.git</param>
|
||||||
<param name="changesrevision">efa4a91b6fbe54a33eb51c04728706555e5106c6</param></service></servicedata>
|
<param name="changesrevision">335fa46cf09be14edbddf0ee186eea18a9fc0298</param></service></servicedata>
|
@@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 7 12:13:24 UTC 2025 - Matthias Gerstner <matthias.gerstner@suse.com>
|
||||||
|
|
||||||
|
- require python3-fusepy to fix install time dependency error.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jun 13 10:53:30 UTC 2025 - Nico Krapp <nico.krapp@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.9.1:
|
||||||
|
* prepare new minor release
|
||||||
|
* gitignore: ignore Python packaging artifacts
|
||||||
|
* obs: no longer quote URLs passed to OSC on versions newer 1.6.1
|
||||||
|
- convert to pip based build
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 20 09:27:57 UTC 2023 - matthias.gerstner@suse.com
|
Fri Oct 20 09:27:57 UTC 2023 - matthias.gerstner@suse.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package fuse-oscfs
|
# spec file for package fuse-oscfs
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,20 +16,23 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define pythons python3
|
||||||
Name: fuse-oscfs
|
Name: fuse-oscfs
|
||||||
Version: 0.9.0
|
Version: 0.9.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A FUSE file system for accessing Open Build Service instances
|
Summary: A FUSE file system for accessing Open Build Service instances
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: System/Filesystems
|
Group: System/Filesystems
|
||||||
URL: https://github.com/mgerstner/oscfs
|
URL: https://github.com/mgerstner/oscfs
|
||||||
Source: oscfs-%{version}.tar.xz
|
Source: oscfs-%{version}.tar.xz
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildRequires: python3-setuptools
|
|
||||||
Requires: osc
|
Requires: osc
|
||||||
Requires: python3-fusepy
|
Requires: python3-fusepy
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
Provides: python2-oscfs = %version-%release
|
Provides: python2-oscfs = %version-%release
|
||||||
Obsoletes: python2-oscfs < %version-%release
|
Obsoletes: python2-oscfs < %version-%release
|
||||||
|
|
||||||
@@ -40,19 +43,21 @@ Python package for interfacing with OBS. At the moment, it provides read-only
|
|||||||
access for inspecting packages and their metadata.
|
access for inspecting packages and their metadata.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n oscfs-%{version}
|
%autosetup -p1 -n oscfs-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
python3 setup.py build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
%pyproject_install
|
||||||
|
%fdupes -s %{buildroot}%{python3_sitelib}/oscfs
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc README.md NEWS.rst
|
%doc README.md NEWS.rst
|
||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
%{python3_sitelib}/*
|
%{python3_sitelib}/oscfs
|
||||||
|
%{python3_sitelib}/oscfs-%{version}.dist-info
|
||||||
%{_bindir}/oscfs
|
%{_bindir}/oscfs
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9263d666cef918d60672b393c6e7c59ab29e7463262f43901298648106da883c
|
|
||||||
size 32120
|
|
3
oscfs-0.9.1.tar.xz
Normal file
3
oscfs-0.9.1.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:af01365a5ba78a8221684a8f553e0e3ed2da6ca01d720ca2e56b86790af52c1f
|
||||||
|
size 32376
|
Reference in New Issue
Block a user