Accepting request 876303 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/876303 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jigit?expand=0&rev=2
This commit is contained in:
commit
46dad10613
BIN
jigit-1.22.tar.xz
(Stored with Git LFS)
Normal file
BIN
jigit-1.22.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 2 21:48:29 UTC 2021 - Asterios Dramis <asterios.dramis@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 1.22:
|
||||||
|
* Add support for SHA256 checksums, using jigdo format v2
|
||||||
|
+ Changes to libjte to generate the new format as an option -
|
||||||
|
still defaults to v1 for cmpatibility for now
|
||||||
|
+ libjte updated to major version 2
|
||||||
|
+ Add support for v2 in jigdump, jigit-mkimage etc. too
|
||||||
|
+ Add new jigsum-sha256 program, for the base64-like output
|
||||||
|
with sha256 checksums
|
||||||
|
* jigdump now also understands jigdo .iso.tmp files
|
||||||
|
* Misc small cleanups
|
||||||
|
From version 1.21:
|
||||||
|
* parallel-sums:
|
||||||
|
+ New utility for calculating checksums in parallel
|
||||||
|
* Misc code cleanups
|
||||||
|
* Misc man page cleanups
|
||||||
|
* jigit-mkimage:
|
||||||
|
+ Print missing file names correctly
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Feb 4 01:54:08 UTC 2017 - jengelh@inai.de
|
Sat Feb 4 01:54:08 UTC 2017 - jengelh@inai.de
|
||||||
|
|
||||||
|
54
jigit.spec
54
jigit.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package jigit
|
# spec file for package jigit
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -12,23 +12,21 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define so_ver 1
|
%define so_ver 2
|
||||||
|
|
||||||
Name: jigit
|
Name: jigit
|
||||||
Version: 1.20
|
Version: 1.22
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tools for Working With jigdo Files
|
Summary: Tools for Working With jigdo Files
|
||||||
License: GPL-2.0
|
License: GPL-2.0-only
|
||||||
Group: Productivity/File utilities
|
Group: Productivity/File utilities
|
||||||
Url: http://www.einval.com/~steve/software/JTE/
|
URL: https://www.einval.com/~steve/software/JTE/
|
||||||
Source0: http://www.einval.com/~steve/software/JTE/download/%{name}_%{version}.orig.tar.gz
|
Source0: http://www.einval.com/~steve/software/JTE/download/%{name}-%{version}.tar.xz
|
||||||
BuildRequires: libbz2-devel
|
BuildRequires: libbz2-devel
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Jigit is an interactive wrapper around mkimage to ease the download or upgrade
|
Jigit is an interactive wrapper around mkimage to ease the download or upgrade
|
||||||
@ -36,7 +34,7 @@ of existing CDs and CD images.
|
|||||||
|
|
||||||
%package -n libjte%{so_ver}
|
%package -n libjte%{so_ver}
|
||||||
Summary: Jigdo Template Export Library
|
Summary: Jigdo Template Export Library
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1-or-later
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n libjte%{so_ver}
|
%description -n libjte%{so_ver}
|
||||||
@ -45,7 +43,7 @@ ISO image creation tools.
|
|||||||
|
|
||||||
%package -n libjte-devel
|
%package -n libjte-devel
|
||||||
Summary: Development Files for libjte
|
Summary: Development Files for libjte
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1-or-later
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: libjte%{so_ver} = %{version}
|
Requires: libjte%{so_ver} = %{version}
|
||||||
|
|
||||||
@ -57,57 +55,61 @@ This package includes development files for libjte.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags}"
|
export CFLAGS="%{optflags}"
|
||||||
make %{?_smp_mflags} jigit-mkimage extract-data jigsum rsyncsum jigdump
|
%make_build all
|
||||||
cd libjte
|
cd libjte
|
||||||
%configure \
|
%configure \
|
||||||
--disable-static
|
--disable-static
|
||||||
make %{?_smp_mflags}
|
%make_build
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
%install
|
%install
|
||||||
install -dm 0755 %{buildroot}%{_bindir}
|
install -dm 0755 %{buildroot}%{_bindir}
|
||||||
install -pm 0755 jigit-mkimage jigsum jigdump %{buildroot}%{_bindir}
|
install -pm 0755 jigit-mkimage jigsum jigsum-sha256 jigdump %{buildroot}%{_bindir}
|
||||||
install -pm 0755 extract-data %{buildroot}%{_bindir}/jigit-extract-data
|
install -pm 0755 extract-data %{buildroot}%{_bindir}/jigit-extract-data
|
||||||
install -pm 0755 rsyncsum %{buildroot}%{_bindir}/jigit-rsyncsum
|
install -pm 0755 rsyncsum %{buildroot}%{_bindir}/jigit-rsyncsum
|
||||||
|
install -pm 0755 parallel-sums %{buildroot}%{_bindir}/jigit-parallel-sums
|
||||||
install -pm 0755 jigit mkjigsnap %{buildroot}%{_bindir}
|
install -pm 0755 jigit mkjigsnap %{buildroot}%{_bindir}
|
||||||
install -dm 0755 %{buildroot}%{_mandir}/man1
|
install -dm 0755 %{buildroot}%{_mandir}/man1
|
||||||
install -pm 0644 jigdump.1 jigit-mkimage.1 jigit.1 jigsum.1 %{buildroot}%{_mandir}/man1/
|
install -pm 0644 jigdump.1 jigit-mkimage.1 jigit.1 jigsum.1 jigsum-sha256.1 parallel-sums.1 %{buildroot}%{_mandir}/man1/
|
||||||
install -dm 0755 %{buildroot}%{_mandir}/man8
|
install -dm 0755 %{buildroot}%{_mandir}/man8
|
||||||
install -pm 0644 mkjigsnap.8 %{buildroot}%{_mandir}/man8/
|
install -pm 0644 mkjigsnap.8 %{buildroot}%{_mandir}/man8/
|
||||||
cd libjte
|
cd libjte
|
||||||
%make_install
|
%make_install
|
||||||
install -pm 0755 bin/jigdo-gen-md5-list %{buildroot}%{_bindir}
|
install -pm 0755 bin/jigdo-gen-checksum-list %{buildroot}%{_bindir}
|
||||||
install -pm 0644 doc/jigdo-gen-md5-list.1 %{buildroot}%{_mandir}/man1/
|
#install -pm 0644 doc/jigdo-gen-checksum-list.1 %%{buildroot}%%{_mandir}/man1/
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# Remove libtool config files
|
# Remove libtool config files
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%post -n libjte%{so_ver} -p /sbin/ldconfig
|
# Remove static libraries
|
||||||
|
find %{buildroot} -type f -name "*.a" -delete -print
|
||||||
|
|
||||||
|
%post -n libjte%{so_ver} -p /sbin/ldconfig
|
||||||
%postun -n libjte%{so_ver} -p /sbin/ldconfig
|
%postun -n libjte%{so_ver} -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%license COPYING
|
||||||
%doc COPYING ChangeLog README iso-image.pl
|
%doc ChangeLog README iso-image.pl
|
||||||
%{_bindir}/jigit-mkimage
|
%{_bindir}/jigit-mkimage
|
||||||
%{_bindir}/jigsum
|
%{_bindir}/jigsum
|
||||||
|
%{_bindir}/jigsum-sha256
|
||||||
%{_bindir}/jigdump
|
%{_bindir}/jigdump
|
||||||
%{_bindir}/jigit-extract-data
|
%{_bindir}/jigit-extract-data
|
||||||
%{_bindir}/jigit-rsyncsum
|
%{_bindir}/jigit-rsyncsum
|
||||||
|
%{_bindir}/jigit-parallel-sums
|
||||||
%{_bindir}/jigit
|
%{_bindir}/jigit
|
||||||
%{_bindir}/mkjigsnap
|
%{_bindir}/mkjigsnap
|
||||||
%{_bindir}/jigdo-gen-md5-list
|
%{_bindir}/jigdo-gen-checksum-list
|
||||||
%{_mandir}/man1/*.1%{ext_man}
|
%{_mandir}/man1/*.1%{?ext_man}
|
||||||
%{_mandir}/man8/*.8%{ext_man}
|
%{_mandir}/man8/*.8%{?ext_man}
|
||||||
|
|
||||||
%files -n libjte%{so_ver}
|
%files -n libjte%{so_ver}
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_libdir}/libjte.so.%{so_ver}*
|
%{_libdir}/libjte.so.%{so_ver}*
|
||||||
|
|
||||||
%files -n libjte-devel
|
%files -n libjte-devel
|
||||||
%defattr(-,root,root,-)
|
%license libjte/{COPYING,COPYRIGHT}
|
||||||
%doc libjte/{COPYING,COPYRIGHT,ChangeLog}
|
%doc libjte/ChangeLog
|
||||||
%doc libjte/doc/{API,NOTES,TODO}
|
%doc libjte/doc/{API,NOTES,TODO}
|
||||||
%{_includedir}/libjte/
|
%{_includedir}/libjte/
|
||||||
%{_libdir}/pkgconfig/*
|
%{_libdir}/pkgconfig/*
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:459285bd743645381912301578316f2bfafb99ce1c10140a01af2b6cb011f193
|
|
||||||
size 430196
|
|
Loading…
Reference in New Issue
Block a user