2 Commits

Author SHA256 Message Date
d205c1cdb8 Accepting request 1303743 from devel:languages:go
- Update to version 0.9.1:
  * fix: parse modified git tree flag correctly
  * fix: include version number in tarballs
  * docs: update man page
  * fix: allow manually supplying version/commit again
  * feat: migrate rest of goreleaser config
  * fix: 9p path parse error with WSL2 (#300)
  * chore: align happy path to left edge in bar rendering
  * docs: update man page
  * fix: off-by-one error in bar rendering
  * fix: move background colors to theme
  * fix: recompute widths to account for changed bar size
  * feat: don't waste space for chars we never print
  * feat: use unicode chars for bar
  * feat: dynamically resize bars
  * feat: adjust table width to avail space
  * docs: update man page
  * build(deps): bump actions/setup-go from 5.5.0 to 6.0.0
  * docs: update man page
  * feat: read build info from runtime
  * docs: update man page
  * fix: deduplicate list of mounts (#209)
  * build(deps): bump actions/checkout from 3 to 5
  * build(deps): bump goreleaser/goreleaser-action from 4 to 6
  * build(deps): bump golang.org/x/term from 0.7.0 to 0.34.0
  * build(deps): bump golang.org/x/sys from 0.7.0 to 0.35.0
  * build(deps): bump github.com/muesli/termenv from 0.15.1 to 0.16.0
  * chore: require Go 1.23+
  * build(deps): bump actions/setup-go from 4.0.0 to 5.5.0
  * docs: update man page (forwarded request 1303439 from ph03nix)

OBS-URL: https://build.opensuse.org/request/show/1303743
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/duf?expand=0&rev=2
2025-09-11 12:40:01 +00:00
f18b492aef - Update to version 0.9.1:
* fix: parse modified git tree flag correctly
  * fix: include version number in tarballs
  * docs: update man page
  * fix: allow manually supplying version/commit again
  * feat: migrate rest of goreleaser config
  * fix: 9p path parse error with WSL2 (#300)
  * chore: align happy path to left edge in bar rendering
  * docs: update man page
  * fix: off-by-one error in bar rendering
  * fix: move background colors to theme
  * fix: recompute widths to account for changed bar size
  * feat: don't waste space for chars we never print
  * feat: use unicode chars for bar
  * feat: dynamically resize bars
  * feat: adjust table width to avail space
  * docs: update man page
  * build(deps): bump actions/setup-go from 5.5.0 to 6.0.0
  * docs: update man page
  * feat: read build info from runtime
  * docs: update man page
  * fix: deduplicate list of mounts (#209)
  * build(deps): bump actions/checkout from 3 to 5
  * build(deps): bump goreleaser/goreleaser-action from 4 to 6
  * build(deps): bump golang.org/x/term from 0.7.0 to 0.34.0
  * build(deps): bump golang.org/x/sys from 0.7.0 to 0.35.0
  * build(deps): bump github.com/muesli/termenv from 0.15.1 to 0.16.0
  * chore: require Go 1.23+
  * build(deps): bump actions/setup-go from 4.0.0 to 5.5.0
  * docs: update man page

OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/duf?expand=0&rev=10
2025-09-11 03:39:38 +00:00
7 changed files with 57 additions and 9 deletions

View File

@@ -4,8 +4,8 @@
<param name="scm">git</param>
<param name="url">https://github.com/muesli/duf.git</param>
<param name="filename">duf</param>
<param name="revision">master</param>
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@.%h</param>
<param name="revision">v0.9.1</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="changesgenerate">enable</param>
</service>

View File

@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/muesli/duf.git</param>
<param name="changesrevision">24c33693001833bf98224686db2d4595f9ca3e24</param></service></servicedata>
<param name="changesrevision">b2f01a1ecbfd1af63015b83296c50a95260f97b1</param></service></servicedata>

View File

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

3
duf-0.9.1.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,51 @@
-------------------------------------------------------------------
Wed Sep 10 06:20:03 UTC 2025 - Felix Niederwanger <felix.niederwanger@suse.de>
- Update to version 0.9.1:
* fix: parse modified git tree flag correctly
* fix: include version number in tarballs
* docs: update man page
* fix: allow manually supplying version/commit again
* feat: migrate rest of goreleaser config
* fix: 9p path parse error with WSL2 (#300)
* chore: align happy path to left edge in bar rendering
* docs: update man page
* fix: off-by-one error in bar rendering
* fix: move background colors to theme
* fix: recompute widths to account for changed bar size
* feat: don't waste space for chars we never print
* feat: use unicode chars for bar
* feat: dynamically resize bars
* feat: adjust table width to avail space
* docs: update man page
* build(deps): bump actions/setup-go from 5.5.0 to 6.0.0
* docs: update man page
* feat: read build info from runtime
* docs: update man page
* fix: deduplicate list of mounts (#209)
* build(deps): bump actions/checkout from 3 to 5
* build(deps): bump goreleaser/goreleaser-action from 4 to 6
* build(deps): bump golang.org/x/term from 0.7.0 to 0.34.0
* build(deps): bump golang.org/x/sys from 0.7.0 to 0.35.0
* build(deps): bump github.com/muesli/termenv from 0.15.1 to 0.16.0
* chore: require Go 1.23+
* build(deps): bump actions/setup-go from 4.0.0 to 5.5.0
* docs: update man page
* chore: require Go 1.18+
* build(deps): bump github.com/jedib0t/go-pretty/v6 from 6.4.6 to 6.6.8
* ci: deadcode linter is no longer used
* ci: update linter configs
* Add Solus to repo packages installation instructions
* Add Fedora to the installation instructions
* docs: update man page
* build(deps): bump github.com/mattn/go-runewidth from 0.0.14 to 0.0.15
* fix: update golangci-lint actions
* fix: update goreleaser config
* docs: update man page
* Update README.md: Now in Debian Stable, Debian Unstable is no longer required
* docs: update man page
* Correct a typo
-------------------------------------------------------------------
Mon May 22 21:51:10 UTC 2023 - Jeff Kowalczyk <jkowalczyk@suse.com>

View File

@@ -22,7 +22,7 @@
%global debug_package %{nil}
Name: duf
Version: 0.8.1+git64.24c3369
Version: 0.9.1
Release: 0
License: MIT
Summary: Disk Usage/Free Utility

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e98ccffa526aabacc0d6ba992b231c68466c6505a661e2cf9e829f81888a42b0
size 1899483
oid sha256:2f4efe4750dc13515446441ce96a9a43c81a9afc1935dcf0e61211646fbdd0d5
size 2306420