Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 98e4898516 | |||
|
|
b64415062d | ||
| d1cf1d5a57 | |||
|
|
8e9676e8c6 | ||
| 05bf171e29 | |||
|
|
78cc3298af |
3
apfsprogs-0.2.1.tar.gz
Normal file
3
apfsprogs-0.2.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:92cf4beaf0a34182a2ad02a4babf2235c5ae88c819fda22eeca64dc77bb30a52
|
||||
size 211687
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:472175f1b5804cb14e9d025f1e317aa13509f06ac4b14879141a166bced0f591
|
||||
size 1324132
|
||||
@@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 10 05:50:11 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 0.2.1
|
||||
* apfsck: Implement more checks for fusion drives
|
||||
* refactor: Remove redundant MIN macro in spaceman.c
|
||||
* apfsck: Use DIV_ROUND_UP macro
|
||||
* apfs-label: Get rid of mmap to support 16K pages
|
||||
* apfs-label: Fix memory leak in read_latest_super()
|
||||
* mkapfs: Get rid of mmap to support 16K pages
|
||||
- Explicitly list files matched in %files section
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 10 16:26:11 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 0.2.0
|
||||
* mkapfs: Allow choice of the tier 2 device size
|
||||
* makfs: Update comment about the free_next list
|
||||
* Fix exit code when GIT_COMMIT is not null (#14)
|
||||
* Always mention the -v cli flag on usage()
|
||||
* apfsck: Update boundary checks for free_next array
|
||||
* mkapfs: Actually use the fatal() function
|
||||
* apfsck: Check the block zero magic before all else
|
||||
- Switch upstream source to Github releases
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 4 21:25:23 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 0~git511
|
||||
* apfs-label: Fix build of shared code
|
||||
* apfsck: Add cli option to specify a tier 2 device
|
||||
* apfsck: Add support for empty fusion drives
|
||||
* mkapfs: Add support for fusion drives
|
||||
* mkapfs: Remove obsolete comments about ip bitmaps
|
||||
* mkapfs: Rework bash tests to use an array of sizes
|
||||
* mkapfs: Run tests on fusion drives as well
|
||||
* apfsck: Remove old comment on multiblock objects
|
||||
* apfsck: Verify order of checkpoint mappings
|
||||
* mkapfs: Allocate ephemeral objects on runtime
|
||||
* Avoid sigbus during fusion drive tests
|
||||
* mkapfs: Readjust image sizes for testing
|
||||
* apfsck: Support wrapped ephemeral objects
|
||||
* apfsck: Correct the ip bitmap list checks
|
||||
* apfsck: Fix out-of-bounds write from last patch
|
||||
* apfsck: Fix size checks for disks not used in full
|
||||
* apfsck: Let the free ip bitmap list go backwards
|
||||
* Replace exit(1) with exit(EXIT_FAILURE)
|
||||
to improve code portablility (#15)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 3 20:37:09 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package apfsprogs
|
||||
#
|
||||
# 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
|
||||
@@ -17,12 +17,12 @@
|
||||
|
||||
|
||||
Name: apfsprogs
|
||||
Version: 0~git493
|
||||
Version: 0.2.1
|
||||
Release: 0
|
||||
Summary: Experimental APFS tools for Linux
|
||||
License: GPL-2.0-only
|
||||
URL: https://github.com/linux-apfs/apfsprogs
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
Source0: %{url}/archive/v%{version}.tar.gz#/apfsprogs-%{version}.tar.gz
|
||||
|
||||
%description
|
||||
apfsprogs is a suite of userland software to work with the Apple File System
|
||||
@@ -35,7 +35,7 @@ are included:
|
||||
o apfsck: a filesystem integrity checker, for now only useful for testers
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
||||
%build
|
||||
make %{?_smp_mflags} -C lib
|
||||
@@ -53,7 +53,17 @@ make %{?_smp_mflags} -C mkapfs
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README
|
||||
%{_sbindir}/*
|
||||
%{_mandir}/*
|
||||
%{_mandir}/apfs-label.8
|
||||
%{_mandir}/apfs-snap.8
|
||||
%{_mandir}/apfsck.8
|
||||
%{_mandir}/fsck.apfs.8
|
||||
%{_mandir}/mkapfs.8
|
||||
%{_mandir}/mkfs.apfs.8
|
||||
%{_sbindir}/apfs-label
|
||||
%{_sbindir}/apfs-snap
|
||||
%{_sbindir}/apfsck
|
||||
%{_sbindir}/fsck.apfs
|
||||
%{_sbindir}/mkapfs
|
||||
%{_sbindir}/mkfs.apfs
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user