Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| d8a3cace92 | |||
| e8d5076e52 | |||
| 22d9d1849c | |||
| becbff3bc4 | |||
| 8f21576cb8 | |||
| fe9b98c3f5 | |||
| 206a2d56f4 | |||
| fcb1aa1672 |
2
_service
2
_service
@@ -3,7 +3,7 @@
|
||||
<param name="url">https://github.com/SUPERCILEX/fuc.git</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">2.2.0</param>
|
||||
<param name="revision">3.1.1</param>
|
||||
<param name="match-tag">*</param>
|
||||
<param name="versionrewrite-pattern">(\d+\.\d+\.\d+)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/SUPERCILEX/fuc.git</param>
|
||||
<param name="changesrevision">9202713689d5f148445e88c593708fd6831396f4</param>
|
||||
<param name="changesrevision">61dddc2c9c1600db5928bcc743058e2234b5d7dd</param>
|
||||
</service>
|
||||
</servicedata>
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1bc649a5a624f0da4b83b4238c7a73d6edb77f895677baed73fde00c83270650
|
||||
size 253963
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d5d4a03169331f42a6585ba03b7d0c7bcb23d634eff9f690a8ca216e53068207
|
||||
size 46730
|
||||
3
fuc-3.1.1.tar.zst
Normal file
3
fuc-3.1.1.tar.zst
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e360f24363807372dafc0d0266f28e19782bbc34246a5604fc2628070955fe9
|
||||
size 49479
|
||||
36
fuc.changes
36
fuc.changes
@@ -1,3 +1,39 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 24 19:25:47 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
- Update to version 3.1.1:
|
||||
* fix recursive copy detection for multiple directories
|
||||
* Upgrade deps
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 22 13:06:58 UTC 2025 - Andrea Manzini <andrea.manzini@suse.com>
|
||||
|
||||
- Update to version 3.1.0:
|
||||
* Support hard linking files in cpz!
|
||||
* Fixed bugs with --force and symlinks.
|
||||
* Upgrade deps
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 12 20:19:51 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
- Update to version 3.0.1:
|
||||
* dependency bumps, including Rustix1.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 03 16:39:27 UTC 2025 - andrea.manzini@suse.com
|
||||
|
||||
- Update to version 3.0.0:
|
||||
* Upgrade deps
|
||||
* Fix bug when trying to copy "." into a directory
|
||||
* Eliminate pointless statx when removing files with unknown d_type
|
||||
* requires Rust 2024 edition
|
||||
* Remove extra mkdir (push that responsibility outside the library so we
|
||||
don't have a ton of redundant mkdirs)
|
||||
* Avoid pointless copy_file_range calls that we know won't copy anything
|
||||
* Remember cross-device copy failures per directory
|
||||
* Swap binary name and arch for better sorting
|
||||
* Add docs on progress indicator
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 25 08:09:15 UTC 2024 - andrea.manzini@suse.com
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
name: fuc
|
||||
version: 2.2.0
|
||||
mtime: 1719804792
|
||||
commit: 9202713689d5f148445e88c593708fd6831396f4
|
||||
version: 3.1.1
|
||||
mtime: 1753319548
|
||||
commit: 61dddc2c9c1600db5928bcc743058e2234b5d7dd
|
||||
|
||||
8
fuc.spec
8
fuc.spec
@@ -1,8 +1,8 @@
|
||||
#
|
||||
# spec file for package fuc
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
Name: fuc
|
||||
Version: 2.2.0
|
||||
Version: 3.1.1
|
||||
Release: 0
|
||||
Summary: Modern unix commands focused on performance
|
||||
License: Apache-2.0
|
||||
@@ -27,7 +27,7 @@ Source0: %{name}-%{version}.tar.zst
|
||||
Source1: vendor.tar.zst
|
||||
# for cargo_install -p
|
||||
BuildRequires: cargo-packaging >= 1.2.0
|
||||
BuildRequires: rust >= 1.79
|
||||
BuildRequires: rust >= 1.85
|
||||
ExclusiveArch: %{rust_tier1_arches}
|
||||
|
||||
%description
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:62e8e19cf9bbe7520e11c7aa4aa5fa11759ab23d8cc2d27f918a874005a970b1
|
||||
size 30372415
|
||||
oid sha256:cbdc89a52d37153001c2ed71d7446ac79ce4b0b96bf1247b097d453e88c7a780
|
||||
size 33127376
|
||||
|
||||
Reference in New Issue
Block a user