SHA256
1
0
forked from pool/fuse-oscfs

8 Commits

Author SHA256 Message Date
03dcc7c96e Accepting request 1291036 from filesystems
- require python3-fusepy to fix install time dependency error.

- 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

OBS-URL: https://build.opensuse.org/request/show/1291036
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fuse-oscfs?expand=0&rev=7
2025-07-07 15:07:52 +00:00
430b2b9a75 - require python3-fusepy to fix install time dependency error.
OBS-URL: https://build.opensuse.org/package/show/filesystems/fuse-oscfs?expand=0&rev=14
2025-07-07 12:13:51 +00:00
7b94ab91c0 Accepting request 1285451 from home:nkrapp:branches:filesystems
- 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

OBS-URL: https://build.opensuse.org/request/show/1285451
OBS-URL: https://build.opensuse.org/package/show/filesystems/fuse-oscfs?expand=0&rev=13
2025-06-13 12:21:15 +00:00
b9df60512b Accepting request 1119201 from filesystems
- Update to version 0.9.0:
  * NEWS: changes for next release
  * regtest: compatibility with newer OSC module versions
  * obs: implement transparent retry to prevent HTTP 503 woes
  * obs: remove extraneous newlines from project and package meta output
  * error handling: support full exception backtrace report
  * debugging: support writing stdout and stderr to a logfile for analysis
  * regtest: fix unmount in early auth error failure case
  * regtest: make sure also to remove cookiejar for early auth error test
  * Revert "regtest: add some extra robustness against potential umount races"
  * regtest: add some extra robustness against potential umount races
  * fix regressions introduced by commit cd692a1d2f9fabe4ac5451832c3b7df109302c07
  * urlopenwrapper: fix sshkey check
  * Package: fix symlink path to update package
  * urlopen wrapper: support disabling the wrapper on the command line
  * obs.getBinaries(): fix strange osc behaviour if zero length files appear
  * add command line option to disable build artifacts caching
  * module_helper: insert local modules directory at the front of the path
  * oscfs wrapper script: use explicitly python3 by default
  * bugfix: fix early auth check on non-OBS instance

OBS-URL: https://build.opensuse.org/request/show/1119201
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fuse-oscfs?expand=0&rev=6
2023-10-20 21:18:46 +00:00
265d1c2681 Accepting request 957001 from filesystems
- Update to version v0.8.1:
  * urlopenwrapper: make data an optional argument, fixing a start error on
    some Python versions.

OBS-URL: https://build.opensuse.org/request/show/957001
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fuse-oscfs?expand=0&rev=5
2022-02-23 15:26:10 +00:00
b3ca3f759e Accepting request 956655 from filesystems
- Update to version v0.8.0:
  - fix error if a package filename contained the '#' character.
  - fix authentication error detection during startup.
  - enable urlopenwrapper hack again which speeds up consecutive requests
    drastically.
  - source code ported to Python3 only, removed all Python2 compatibility.
    Source code is now conforming largely to PIP and flake8 standards.

OBS-URL: https://build.opensuse.org/request/show/956655
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fuse-oscfs?expand=0&rev=4
2022-02-22 20:18:16 +00:00
Richard Brown
9183dc9304 Accepting request 876542 from filesystems
- Update to version v0.7.2:
  * obs getBuildlog(): return plain binary data instead of utf8 decoded string
  * types: avoid encoding content during read() which can change the content size
  * types: actually import sys to avoid error during error handling
  * unicode handling: only use `unicode` on Python2

OBS-URL: https://build.opensuse.org/request/show/876542
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fuse-oscfs?expand=0&rev=3
2021-03-03 17:35:48 +00:00
83a25fe826 Accepting request 777996 from filesystems
- Update to version 0.7.1:
  - fix read() with offset especially with large files. This fixes use of
    various tools when applied on oscfs files e.g. `rpm2cpio` or
    `tail *.spec` previously failed or behaved strangely.
  - be robust against non-ASCII characters in OBS buildlogs.
  - apply caching also to actual file content to be more efficient when e.g.
    operating on larger files.

OBS-URL: https://build.opensuse.org/request/show/777996
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fuse-oscfs?expand=0&rev=2
2020-02-21 15:43:28 +00:00
6 changed files with 34 additions and 15 deletions

View File

@@ -1,12 +1,12 @@
<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="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="changesgenerate">enable</param>
</service>
<service name="recompress" mode="disabled">
<service name="recompress" mode="manual">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>

View File

@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/mgerstner/oscfs.git</param>
<param name="changesrevision">efa4a91b6fbe54a33eb51c04728706555e5106c6</param></service></servicedata>
<param name="changesrevision">335fa46cf09be14edbddf0ee186eea18a9fc0298</param></service></servicedata>

View File

@@ -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

View File

@@ -1,7 +1,7 @@
#
# 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
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,20 +16,23 @@
#
%define pythons python3
Name: fuse-oscfs
Version: 0.9.0
Version: 0.9.1
Release: 0
Summary: A FUSE file system for accessing Open Build Service instances
License: GPL-2.0-or-later
Group: System/Filesystems
URL: https://github.com/mgerstner/oscfs
Source: oscfs-%{version}.tar.xz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: python3-setuptools
Requires: osc
Requires: python3-fusepy
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Provides: 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.
%prep
%setup -q -n oscfs-%{version}
%autosetup -p1 -n oscfs-%{version}
%build
python3 setup.py build
%pyproject_wheel
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
%pyproject_install
%fdupes -s %{buildroot}%{python3_sitelib}/oscfs
%files
%defattr(-,root,root)
%doc README.md NEWS.rst
%license LICENSE.txt
%{python3_sitelib}/*
%{python3_sitelib}/oscfs
%{python3_sitelib}/oscfs-%{version}.dist-info
%{_bindir}/oscfs
%changelog

View File

@@ -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
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:af01365a5ba78a8221684a8f553e0e3ed2da6ca01d720ca2e56b86790af52c1f
size 32376