Compare commits
28 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d2dc3b8376 | ||
|
|
00f7f10322 | ||
|
|
44749f939d | ||
|
|
125ef2f375 | ||
|
|
f174b80b8e | ||
|
|
d3e8bb7fc3 | ||
|
|
581bb09a7f | ||
|
|
ddb0d4a613 | ||
|
|
2032be4774 | ||
|
|
589eacb5ab | ||
|
|
e8b07a5e8c | ||
|
|
643356cc81 | ||
|
|
06baadb6fe | ||
|
|
073b01a2e8 | ||
|
|
593b319ba7 | ||
|
|
5f6bc52cf1 | ||
|
|
edb72edcb0 | ||
|
|
310f16bede | ||
|
|
a41c8f32e6 | ||
|
|
45e7891610 | ||
| 3dc9c9838c | |||
|
|
08ec501050 | ||
|
|
0c5d283226 | ||
|
|
2c2e317151 | ||
|
|
5ae8e9de95 | ||
|
|
ed74d43c9f | ||
|
|
52c8ec9282 | ||
|
|
1c2a03202e |
4 changed files with 128 additions and 12 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -1,2 +1,9 @@
|
||||||
/wimlib-1.13.1.tar.gz
|
/wimlib-1.13.1.tar.gz
|
||||||
/wimlib-1.13.2.tar.gz
|
/wimlib-1.13.2.tar.gz
|
||||||
|
/wimlib-1.13.3.tar.gz
|
||||||
|
/wimlib-1.13.4.tar.gz
|
||||||
|
/wimlib-1.13.5.tar.gz
|
||||||
|
/wimlib-1.13.6.tar.gz
|
||||||
|
/wimlib-1.14.3.tar.gz
|
||||||
|
/wimlib-1.14.4.tar.gz
|
||||||
|
/wimlib-1.14.5.tar.gz
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (wimlib-1.13.2.tar.gz) = 8d70a737724bec7591977de5b772b708864ce7548cfe79ebee7508de1013a9915aca356d2b73e6b2959bce671be0a275463546503b616f61833724c5bb75faba
|
SHA512 (wimlib-1.14.5.tar.gz) = 60db80a3a93d3b5094a8277be8a41d06632905e4e1780b5def1bca614e5ef90a5627081f78dab17516192295c796bf9679883df4e0addc2d2e342d61d68f9f0b
|
||||||
|
|
|
||||||
18
wimlib-1.14.3-tests.patch
Normal file
18
wimlib-1.14.3-tests.patch
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
diff -up ./Makefile.am.orig ./Makefile.am
|
||||||
|
--- ./Makefile.am.orig 2023-09-04 20:41:02.000000000 +0200
|
||||||
|
+++ ./Makefile.am 2023-09-25 00:59:26.933092055 +0200
|
||||||
|
@@ -311,14 +311,6 @@ dist_check_SCRIPTS = tests/test-imagex \
|
||||||
|
tests/test-imagex-capture_and_apply \
|
||||||
|
tests/test-imagex-update_and_extract
|
||||||
|
|
||||||
|
-if WITH_FUSE
|
||||||
|
-dist_check_SCRIPTS += tests/test-imagex-mount
|
||||||
|
-endif
|
||||||
|
-
|
||||||
|
-if WITH_NTFS_3G
|
||||||
|
-dist_check_SCRIPTS += tests/test-imagex-ntfs
|
||||||
|
-endif
|
||||||
|
-
|
||||||
|
EXTRA_DIST += \
|
||||||
|
tests/common_tests.sh \
|
||||||
|
tests/exclusionlists \
|
||||||
111
wimlib.spec
111
wimlib.spec
|
|
@ -1,18 +1,26 @@
|
||||||
Name: wimlib
|
Name: wimlib
|
||||||
Version: 1.13.2
|
Version: 1.14.5
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: Open source Windows Imaging (WIM) library
|
Summary: Open source Windows Imaging (WIM) library
|
||||||
|
|
||||||
# Library is dual licensed, utilities are GPLv3+, some internal headers are CC0
|
# wimlib is dual-licensed (GPL-3.0-or-later/LGPL-3.0-or-later) but is linked to
|
||||||
License: (GPLv3+ or LGPLv3+) and GPLv3+ and CC0
|
# libntfs-3g (GPL-3.0-or-later), utilities are GPL-3.0-or-later, some internal
|
||||||
|
# headers are MIT
|
||||||
|
License: GPL-3.0-or-later AND MIT
|
||||||
URL: https://wimlib.net/
|
URL: https://wimlib.net/
|
||||||
Source0: %{url}/downloads/%{name}-%{version}.tar.gz
|
Source0: %{url}/downloads/%{name}-%{version}.tar.gz
|
||||||
|
# Disable tests requiring mount privileges
|
||||||
|
Patch0: %{name}-1.14.3-tests.patch
|
||||||
|
|
||||||
|
%if 0%{?fedora} <= 42
|
||||||
|
BuildRequires: autoconf
|
||||||
|
BuildRequires: libtool
|
||||||
|
%endif
|
||||||
|
BuildRequires: automake
|
||||||
|
BuildRequires: make
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: pkgconfig(fuse)
|
BuildRequires: pkgconfig(fuse3)
|
||||||
BuildRequires: pkgconfig(libcrypto)
|
|
||||||
BuildRequires: pkgconfig(libntfs-3g)
|
BuildRequires: pkgconfig(libntfs-3g)
|
||||||
BuildRequires: pkgconfig(libxml-2.0)
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
wimlib is a C library for creating, modifying, extracting, and mounting files in
|
wimlib is a C library for creating, modifying, extracting, and mounting files in
|
||||||
|
|
@ -40,10 +48,14 @@ files in the Windows Imaging Format (WIM files).
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup
|
%autosetup -p0
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
# Ensure build files match the installed Automake version
|
||||||
|
%if 0%{?fedora} <= 42
|
||||||
|
autoreconf -fiv
|
||||||
|
%endif
|
||||||
%configure \
|
%configure \
|
||||||
--disable-silent-rules \
|
--disable-silent-rules \
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
@ -58,9 +70,13 @@ sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
||||||
find $RPM_BUILD_ROOT -name "*.la" -delete
|
find $RPM_BUILD_ROOT -name "*.la" -delete
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
%make_build check
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc NEWS README
|
%doc NEWS.md README.md
|
||||||
%license COPYING COPYING.CC0 COPYING.GPLv3 COPYING.LGPLv3
|
%license COPYING COPYING.GPLv3
|
||||||
%{_libdir}/*.so.15*
|
%{_libdir}/*.so.15*
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -76,6 +92,81 @@ find $RPM_BUILD_ROOT -name "*.la" -delete
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Aug 27 2026 Tom Callaway <spot@fedoraproject.org> - 1.14.5-3
|
||||||
|
- rebuild for new ntfs-3g
|
||||||
|
|
||||||
|
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Mar 10 2026 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.14.5-1
|
||||||
|
- Update to 1.14.5
|
||||||
|
|
||||||
|
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.4-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 4 2025 Tom Callaway <spot@fedoraproject.org> - 1.14.4-6
|
||||||
|
- rebuild for new fuse3
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.4-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 25 2025 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.14.4-4
|
||||||
|
- Fix FTBFS (RHBZ #2341541)
|
||||||
|
- Drop useless BuildRequires
|
||||||
|
|
||||||
|
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Mar 02 2024 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.14.4-1
|
||||||
|
- Update to 1.14.4
|
||||||
|
|
||||||
|
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Sep 24 2023 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.14.3-1
|
||||||
|
- Update to 1.14.3
|
||||||
|
- Switch license tag to SPDX
|
||||||
|
|
||||||
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.6-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.6-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Oct 03 2022 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.13.6-1
|
||||||
|
- Update to 1.13.6
|
||||||
|
- Update license tag (CC0 replaced by MIT)
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 01 2022 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.13.5-1
|
||||||
|
- Update to 1.13.5
|
||||||
|
|
||||||
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.4-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 1.13.4-4
|
||||||
|
- Rebuilt with OpenSSL 3.0.0
|
||||||
|
|
||||||
|
* Thu Sep 02 2021 Neal Gompa <ngompa@fedoraproject.org> - 1.13.4-3
|
||||||
|
- Rebuild for ntfs-3g soname bump
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 03 2021 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.13.4-1
|
||||||
|
- Update to 1.13.4
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Oct 27 2020 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.13.3-1
|
||||||
|
- Update to 1.13.3
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.2-2
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.2-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue