forked from pool/perl-Image-ExifTool
Accepting request 135734 from home:gregfreemyer:Tools-for-forensic-boot-cd
Version upgrade to latest production release - tested perl module only upgrades and had to add a conflicts statement to get the app to update as well. OBS-URL: https://build.opensuse.org/request/show/135734 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Image-ExifTool?expand=0&rev=30
This commit is contained in:
parent
ce0a1b1b6b
commit
8b6fb6e9dc
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e18c1d5f4e8bbc75f3cbb8c580b99eabbc52ae1b0cb64468d2935a38aa7f8893
|
||||
size 3193939
|
3
Image-ExifTool-9.01.tar.gz
Normal file
3
Image-ExifTool-9.01.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:61a035548eef7fd26de8e210f7c6a006c6c800a4b378469fbcce05b1cded8f0b
|
||||
size 3505518
|
@ -1,3 +1,45 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 24 19:01:51 UTC 2012 - Greg.Freemyer@gmail.com
|
||||
|
||||
- Ran spec-cleaner
|
||||
- Added conflicts: exiftool < %{version} to perl-Image-ExifTool so that if the module is upgraded, the app will be too
|
||||
- Upgrade to v9.01 (Production Release)
|
||||
- Numerous new metadata fields added
|
||||
- see http://owl.phy.queensu.ca/~phil/exiftool/history.html
|
||||
- Changed -restore_original and -delete_original options to scan directories only for writable file types
|
||||
- Enhanced -srcfile option to allow multiple source files to be specified
|
||||
|
||||
- API Changes:
|
||||
Added GlobalTimeShift option
|
||||
Added NoFlat option to SetNewValues()
|
||||
Changed Struct option to allow copying of both structured and flattened tags at the same time
|
||||
Added XMPAutoConv option
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 6 20:51:22 UTC 2012 - Greg.Freemyer@gmail.com
|
||||
|
||||
- Upgrade to v8.77
|
||||
|
||||
Added *.args and *.fmt convenience files to the %doc section. These files have apparently been
|
||||
in the tarball for a while, but not in the %doc section as they should have been.
|
||||
|
||||
This package has been rapidly seeing small releases. There have been 12 releases since it was last updated
|
||||
for openSUSE12.1 in Sept. 2011. Afew of the key updates are below. See the Changes file in doc directory,
|
||||
or http://cpansearch.perl.org/src/EXIFTOOL/Image-ExifTool-8.77/Changes
|
||||
|
||||
* Highlights of Changes for Versions 8.66 to 8.77
|
||||
|
||||
- IMPORTANT: Fixed bug which could corrupt GIF images when writing a Comment
|
||||
to a GIF image containing XMP metadata
|
||||
|
||||
API Changes:
|
||||
Added Sort2 option and 'Descr' setting for Sort option
|
||||
Added secondary sort option to GetFoundTags() and GetTagList()
|
||||
Changed name of Sort 'Alpha' setting to 'Tag' (but 'Alpha' still works for backward compatibility)
|
||||
- Enhanced SetNewValue() AddValue option to allow this option to be ignored for non-list tags
|
||||
- Added ProtectSaved option to SetNewValue() and return save count from SaveNewValues()
|
||||
- Added CharsetEXIF and CharsetQuickTime options
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 12 16:11:19 UTC 2011 - Greg.Freemyer@gmail.com
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: perl-Image-ExifTool
|
||||
Version: 8.65
|
||||
Version: 9.01
|
||||
Release: 0
|
||||
%define cpan_name Image-ExifTool
|
||||
Summary: Perl module to read and write meta information
|
||||
@ -25,10 +25,11 @@ License: GPL-1.0+ or Artistic-1.0
|
||||
Group: Development/Libraries/Perl
|
||||
Url: http://search.cpan.org/dist/Image-ExifTool/
|
||||
Source: http://www.cpan.org/authors/id/E/EX/EXIFTOOL/%{cpan_name}-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
Conflicts: exiftool < %{version}
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
@ -106,12 +107,13 @@ BuildArch: noarch
|
||||
#Requires: perl(IO::Compress::Bzip2) perl(IO::Compress::Deflate)
|
||||
#Requires: perl(IO::Compress::Gzip) perl(IO::Compress::RawDeflate) perl(IO::Compress::Zip)
|
||||
#Requires: perl(Compress::Zlib)
|
||||
#Requires: perl(Digest::MD5)
|
||||
#Requires: perl(Digest::SHA)
|
||||
#Requires: perl(Digest::MD5)
|
||||
#Requires: perl(Digest::SHA)
|
||||
|
||||
Requires: perl(Archive::Zip)
|
||||
Requires: perl(Image::ExifTool) = %{version}
|
||||
|
||||
# Below provided because the package was renamed from 8.40 => 8.65 upgrade
|
||||
Obsoletes: exiftool < 8.65
|
||||
Provides: exiftool = %{version}
|
||||
|
||||
@ -131,16 +133,15 @@ and Meta Information
|
||||
|
||||
See html/index.html for more details about ExifTool features overall.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
|
||||
%build
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
%{__make} %{?_smp_mflags}
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
%{__make} test
|
||||
make test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
@ -148,12 +149,15 @@ See html/index.html for more details about ExifTool features overall.
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files -n exiftool
|
||||
%defattr(644,root,root,755)
|
||||
%attr(755, root, root) %{_bindir}/exiftool
|
||||
%doc %{_mandir}/man1/exiftool.1.gz
|
||||
%doc gpx.fmt gpx_wpt.fmt kml.fmt
|
||||
%doc exif2iptc.args exif2xmp.args gps2xmp.args iptc2exif.args iptc2xmp.args iptcCore.args
|
||||
%doc pdf2xmp.args xmp2exif.args xmp2gps.args xmp2iptc.args xmp2pdf.args
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(644,root,root,755)
|
||||
|
Loading…
Reference in New Issue
Block a user