exiv2-0.27.4

This commit is contained in:
Rmys
2021-08-16 15:00:57 +03:00
committed by GitHub
parent f70d4741c3
commit 78a708c3f0
2 changed files with 39 additions and 2 deletions
@@ -0,0 +1,30 @@
From f01805f68eb19f56b0415a50a1128cbbdd82bff4 Mon Sep 17 00:00:00 2001
From: Antonio Rojas <arojas@archlinux.org>
Date: Fri, 18 Jun 2021 18:53:46 +0200
Subject: [PATCH] Fix build with gtest 1.11
INSTANTIATE_TYPED_TEST_CASE_P requires a non-empty prefix now
---
unitTests/test_slice.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/unitTests/test_slice.cpp b/unitTests/test_slice.cpp
index ccf80d98db..59171cfcfd 100644
--- a/unitTests/test_slice.cpp
+++ b/unitTests/test_slice.cpp
@@ -440,12 +440,12 @@ REGISTER_TYPED_TEST_CASE_P(slice, atAccess, iteratorAccess, constructionFailsFro
constMethodsPreserveConst);
typedef ::testing::Types<const std::vector<int>, std::vector<int>, int*, const int*> test_types_t;
-INSTANTIATE_TYPED_TEST_CASE_P(, slice, test_types_t);
+INSTANTIATE_TYPED_TEST_CASE_P(slice, slice, test_types_t);
REGISTER_TYPED_TEST_CASE_P(mutableSlice, iterators, at);
typedef ::testing::Types<std::vector<int>, int*> mut_test_types_t;
-INSTANTIATE_TYPED_TEST_CASE_P(, mutableSlice, mut_test_types_t);
+INSTANTIATE_TYPED_TEST_CASE_P(slice, mutableSlice, mut_test_types_t);
REGISTER_TYPED_TEST_CASE_P(dataBufSlice, successfulConstruction, failedConstruction);
typedef ::testing::Types<DataBuf&, const DataBuf&> data_buf_types_t;
-INSTANTIATE_TYPED_TEST_CASE_P(, dataBufSlice, data_buf_types_t);
+INSTANTIATE_TYPED_TEST_CASE_P(slice, dataBufSlice, data_buf_types_t);
+9 -2
View File
@@ -13,7 +13,7 @@
<IsA>app:console</IsA>
<Summary>Another library for parsing, editing, and saving EXIF data</Summary>
<Description>exiv2 is a C++ library and a command line utility to access image metadata. Exiv2 is available as free software and with a commercial license, and is used in a growing number of projects.</Description>
<Archive sha1sum="f31a74793ce2cd0161915ed1fbec8e79c31cd54d" type="targz">http://www.exiv2.org/builds/exiv2-0.27.3-Source.tar.gz</Archive>
<Archive sha1sum="ed620c568463179aca7847bee5fda40c11c08318" type="targz">http://www.exiv2.org/builds/exiv2-0.27.4-Source.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>curl-devel</Dependency>
@@ -21,7 +21,7 @@
<Dependency>expat-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level="1">CVE-2019-17402.patch</Patch> -->
<Patch level="1">f01805f6.patch</Patch>
</Patches>
</Source>
@@ -66,6 +66,13 @@
</Package>
<History>
<Update release="8">
<Date>2021-08-16</Date>
<Version>0.27.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="7">
<Date>2021-05-25</Date>
<Version>0.27.3</Version>