summaryrefslogtreecommitdiff
path: root/graphics/exiv2-organize
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2014-06-05 06:43:53 +0000
committeradam <adam@pkgsrc.org>2014-06-05 06:43:53 +0000
commite2a838e2efc1ffa75e3f397da65efd08221cd475 (patch)
treeb5ce827a14cf1390bd50f84afffc2469212265d1 /graphics/exiv2-organize
parent7f836054dbcee8a55fa66bfedecf245f50ee6810 (diff)
downloadpkgsrc-e2a838e2efc1ffa75e3f397da65efd08221cd475.tar.gz
Changes 0.24:
Exiv2 introduces its first support for Video metadata. Many more cameras and accessories are now recognised. Numerous bugs fixes, build and test improvments.
Diffstat (limited to 'graphics/exiv2-organize')
-rw-r--r--graphics/exiv2-organize/Makefile7
-rw-r--r--graphics/exiv2-organize/distinfo9
-rw-r--r--graphics/exiv2-organize/patches/patch-contrib_organize_organize.cpp33
3 files changed, 7 insertions, 42 deletions
diff --git a/graphics/exiv2-organize/Makefile b/graphics/exiv2-organize/Makefile
index f0337889d20..c3e399d15a9 100644
--- a/graphics/exiv2-organize/Makefile
+++ b/graphics/exiv2-organize/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.23 2014/02/21 20:26:03 joerg Exp $
+# $NetBSD: Makefile,v 1.24 2014/06/05 06:43:54 adam Exp $
-DISTNAME= exiv2-0.23
-PKGNAME= exiv2-organize-0.23
-PKGREVISION= 5
+DISTNAME= exiv2-0.24
+PKGNAME= ${DISTNAME:S/exiv2/exiv2-organize/}
CATEGORIES= graphics
MASTER_SITES= http://www.exiv2.org/
diff --git a/graphics/exiv2-organize/distinfo b/graphics/exiv2-organize/distinfo
index 1d73949f638..2a131885aa9 100644
--- a/graphics/exiv2-organize/distinfo
+++ b/graphics/exiv2-organize/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.9 2012/05/11 13:58:57 drochner Exp $
+$NetBSD: distinfo,v 1.10 2014/06/05 06:43:54 adam Exp $
-SHA1 (exiv2-0.23.tar.gz) = 5f342bf642477526f41add11d6ee7787cdcd639f
-RMD160 (exiv2-0.23.tar.gz) = ac58f8b5df70ee56c49d387f0666e5e2578d942e
-Size (exiv2-0.23.tar.gz) = 3524381 bytes
+SHA1 (exiv2-0.24.tar.gz) = 2f19538e54f8c21c180fa96d17677b7cff7dc1bb
+RMD160 (exiv2-0.24.tar.gz) = 453247926e8626bf888578afd5a0dde42c6f6962
+Size (exiv2-0.24.tar.gz) = 4635028 bytes
SHA1 (patch-contrib_organize_Makefile) = de74227211b79e49126178f27391831507c2948f
-SHA1 (patch-contrib_organize_organize.cpp) = ba7803e5ead1ac37003c668b0cc5a15be743a1f9
diff --git a/graphics/exiv2-organize/patches/patch-contrib_organize_organize.cpp b/graphics/exiv2-organize/patches/patch-contrib_organize_organize.cpp
deleted file mode 100644
index 2b5627d1b66..00000000000
--- a/graphics/exiv2-organize/patches/patch-contrib_organize_organize.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-$NetBSD: patch-contrib_organize_organize.cpp,v 1.1 2011/02/28 20:37:56 adam Exp $
-
---- contrib/organize/organize.cpp.orig 2011-02-28 19:45:54.000000000 +0000
-+++ contrib/organize/organize.cpp
-@@ -568,8 +568,8 @@ boost::regex uregex("(.*?)\\(([[:digit:]
-
- fs::path uniquify(const fs::path &dest)
- {
-- std::string ext = dest.extension();
-- std::string fname = dest.stem();
-+ std::string ext = dest.extension().file_string();
-+ std::string fname = dest.stem().file_string();
- fs::path parent = dest.parent_path();
-
- unsigned number = 1;
-@@ -658,7 +658,7 @@ void process_directory(const fs::path &d
- ++params.unsorted_count;
- }
-
-- dest_file /= p_iter->filename();
-+ dest_file /= p_iter->path();
-
- if(fs::exists(dest_file)) {
- if(params.ignore_dups) {
-@@ -682,7 +682,7 @@ void process_directory(const fs::path &d
- else {
- info(std::string("duplicate file: ") + p_iter->path().file_string() +
- " of: " + dest_file.file_string());
-- dest_file = params.dups_dir / dest_subdir / p_iter->filename();
-+ dest_file = params.dups_dir / dest_subdir / p_iter->path();
- // Ugh, more dup possibilities
- if(fs::exists(dest_file)) {
- info(std::string("renaming: ") + p_iter->path().file_string() +