Compare commits
31 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
0565558d66 | ||
|
0cf88755d9 | ||
|
59da6cf937 | ||
|
9096628929 | ||
|
d50318ad67 | ||
|
97ea781ea0 | ||
|
36b545eb4c | ||
|
e99ee39acd | ||
|
6880ad80be | ||
|
9211be9ad7 | ||
|
14268b7686 | ||
|
db688a2327 | ||
|
3dadd2247d | ||
|
caf7ff1e39 | ||
|
be0ab80539 | ||
|
b432b77964 | ||
|
24c979e168 | ||
|
def9dd3647 | ||
|
916ec0ef8c | ||
|
d4a2bfeeba | ||
|
b5dc30eb06 | ||
|
c573ed31ba | ||
|
5e4be7b75f | ||
|
7e61a1da42 | ||
|
3a864c9098 | ||
|
973fa956c7 | ||
|
e8ed4adc03 | ||
|
03df98fe3e | ||
|
e825d24703 | ||
|
3fc79566ad | ||
|
ce959ae63d |
7
.gitignore
vendored
7
.gitignore
vendored
@ -1 +1,8 @@
|
||||
/isomd5sum-1.0.11.tar.bz2
|
||||
/isomd5sum-1.0.12.tar.bz2
|
||||
/1.0.12.tar.gz
|
||||
/1.1.0.tar.gz
|
||||
/1.2.0.tar.gz
|
||||
/1.2.1.tar.gz
|
||||
/1.2.2.tar.gz
|
||||
/1.2.3.tar.gz
|
||||
|
166
isomd5sum.spec
166
isomd5sum.spec
@ -1,14 +1,16 @@
|
||||
Summary: Utilities for working with md5sum implanted in ISO images
|
||||
Name: isomd5sum
|
||||
Version: 1.0.11
|
||||
Release: 2%{?dist}
|
||||
Name: isomd5sum
|
||||
Version: 1.2.3
|
||||
Release: 9%{?dist}
|
||||
Epoch: 1
|
||||
License: GPLv2+
|
||||
Group: Applications/System
|
||||
URL: http://git.fedorahosted.org/git/?p=isomd5sum.git;a=summary
|
||||
Source0: http://fedorahosted.org/releases/i/s/isomd5sum/%{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||||
|
||||
Url: https://github.com/rhinstaller/isomd5sum
|
||||
Source0: https://github.com/rhinstaller/%{name}/archive/%{version}.tar.gz
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: popt-devel
|
||||
BuildRequires: python3-devel
|
||||
|
||||
%description
|
||||
The isomd5sum package contains utilities for implanting and verifying
|
||||
@ -16,7 +18,6 @@ an md5sum implanted into an ISO9660 image.
|
||||
|
||||
%package devel
|
||||
Summary: Development headers and library for using isomd5sum
|
||||
Group: Development/System
|
||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||
Provides: %{name}-static = %{epoch}:%{version}-%{release}
|
||||
|
||||
@ -24,45 +25,156 @@ Provides: %{name}-static = %{epoch}:%{version}-%{release}
|
||||
This contains header files and a library for working with the isomd5sum
|
||||
implanting and checking.
|
||||
|
||||
%package -n python-isomd5sum
|
||||
%package -n python3-isomd5sum
|
||||
Summary: Python bindings for isomd5sum
|
||||
BuildRequires: python-devel
|
||||
|
||||
%description -n python-isomd5sum
|
||||
Python bindings for isomd5sum
|
||||
%description -n python3-isomd5sum
|
||||
The isomd5sum package contains utilities for implanting and verifying
|
||||
an md5sum implanted into an ISO9660 image.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%autosetup
|
||||
|
||||
|
||||
%build
|
||||
CFLAGS="$RPM_OPT_FLAGS -Wno-strict-aliasing"; export CFLAGS
|
||||
make checkisomd5 implantisomd5 pyisomd5sum.so
|
||||
LDFLAGS="$RPM_LD_FLAGS"; export LDFLAGS
|
||||
|
||||
PYTHON=%{__python3} make checkisomd5 implantisomd5 pyisomd5sum.so
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make DESTDIR=$RPM_BUILD_ROOT install-bin install-devel install-python
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
PYTHON=%{__python3} make DESTDIR=$RPM_BUILD_ROOT install-bin install-devel install-python
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc COPYING
|
||||
/usr/bin/implantisomd5
|
||||
/usr/bin/checkisomd5
|
||||
%license COPYING
|
||||
%{_bindir}/implantisomd5
|
||||
%{_bindir}/checkisomd5
|
||||
%{_mandir}/man*/*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_includedir}/*.h
|
||||
%{_libdir}/*.a
|
||||
/usr/share/pkgconfig/isomd5sum.pc
|
||||
|
||||
%files -n python-isomd5sum
|
||||
%defattr(-,root,root,-)
|
||||
%{python_sitearch}/pyisomd5sum.so
|
||||
%files -n python3-isomd5sum
|
||||
%{python3_sitearch}/pyisomd5sum.so
|
||||
|
||||
%changelog
|
||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1:1.2.3-9
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.3-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1:1.2.3-7
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.3-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.3-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Jan 14 2019 Miro Hrončok <mhroncok@redhat.com> - 1:1.2.3-4
|
||||
- Subpackage python2-isomd5sum has been removed
|
||||
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1:1.2.3-2
|
||||
- Rebuilt for Python 3.7
|
||||
|
||||
* Tue Apr 10 2018 Brian C. Lane <bcl@redhat.com> - 1:1.2.3-1
|
||||
- New Version 1.2.3 (bcl)
|
||||
- Fix 32bit bug on large files (squimrel)
|
||||
- Don't put DESTDIR in the isomd5sum.pc file (bcl)
|
||||
|
||||
* Fri Feb 23 2018 Florian Weimer <fweimer@redhat.com> - 1:1.2.2-4
|
||||
- Use LDFLAGS from redhat-rpm-config
|
||||
|
||||
* Mon Feb 19 2018 Brian C. Lane <bcl@redhat.com> - 1.2.2-3
|
||||
- Add gcc BuildRequires for future minimal buildroot support
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Tue Oct 03 2017 Brian C. Lane <bcl@redhat.com> - 1:1.2.2-1
|
||||
- Don't put DESTDIR in the isomd5sum.pc file
|
||||
- New Version 1.2.2 (bcl)
|
||||
- Fix aligned alloc parameters and overflow on 32bit size_t (#1497458) (squimrel)
|
||||
- Fix memory leak (squimrel)
|
||||
- Add pkgconfig file (squimrel)
|
||||
- Remove line-breaks from error messages (squimrel)
|
||||
- Make library C++ compatible (squimrel)
|
||||
- Constify function signatures (squimrel)
|
||||
- Revert checkCallback function signature (squimrel)
|
||||
|
||||
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1:1.2.1-4
|
||||
- Python 2 binary package renamed to python2-isomd5sum
|
||||
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Jun 09 2017 Brian C. Lane <bcl@redhat.com> - 1:1.2.1-1
|
||||
- New Version 1.2.1 (bcl)
|
||||
- Let the user pass their own file descriptor (squimrel)
|
||||
- Correct format specifiers (squimrel)
|
||||
|
||||
* Thu Jun 08 2017 Brian C. Lane <bcl@redhat.com> - 1:1.2.0-1
|
||||
- New Version 1.2.0 (bcl)
|
||||
- Improve the python test and add a test target to the Makefile (bcl)
|
||||
- Improve error handling of libimplantisomd5 (squimrel)
|
||||
- Fix popt memory leak and avoid exit in main (squimrel)
|
||||
- Add derived clang format and editorconfig (squimrel)
|
||||
- Format, constify, castify, decl-at-use code (squimrel)
|
||||
- Make libimplantisomd5 use the utilities (squimrel)
|
||||
- Implement shared utilities (squimrel)
|
||||
- Refactor libcheckisomd5 (squimrel)
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.1.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1:1.1.0-4
|
||||
- Rebuild for Python 3.6
|
||||
|
||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.1.0-3
|
||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Dec 04 2015 Brian C. Lane <bcl@redhat.com> 1.1.0-1
|
||||
- New upstream with Python3 support
|
||||
|
||||
* Mon Jul 20 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1:1.0.12-6
|
||||
- Use github source so it will build
|
||||
- Cleanup spec
|
||||
- Use %%license
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.0.12-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1:1.0.12-4
|
||||
- Rebuilt for Fedora 23 Change
|
||||
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
||||
|
||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.0.12-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.0.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri Jan 10 2014 Brian C. Lane <bcl@redhat.com> 1.0.12-1
|
||||
- Display supported iso status (#1026336) (bcl)
|
||||
- Add ppc64le (bcl)
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.0.11-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user