diff options
author | Leo <thinkabit.ukim@gmail.com> | 2021-05-19 00:23:28 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2021-05-19 10:21:11 +0000 |
commit | 65d234d1afdc5a70320a4e08217a25148d46b56a (patch) | |
tree | 27fcd7e2a55f6942f231fe95f0b28d854e16b556 | |
parent | e6d330480ae647cd241b12c92e8c1efea34d82dd (diff) | |
download | aports-65d234d1afdc5a70320a4e08217a25148d46b56a.tar.gz aports-65d234d1afdc5a70320a4e08217a25148d46b56a.tar.bz2 aports-65d234d1afdc5a70320a4e08217a25148d46b56a.tar.xz |
community/libetonyek: upgrade to 0.1.10
-rw-r--r-- | community/libetonyek/APKBUILD | 12 | ||||
-rw-r--r-- | community/libetonyek/missing-include.patch | 28 |
2 files changed, 6 insertions, 34 deletions
diff --git a/community/libetonyek/APKBUILD b/community/libetonyek/APKBUILD index 6613252b24..86207d8f6b 100644 --- a/community/libetonyek/APKBUILD +++ b/community/libetonyek/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Timo Teräs <timo.teras@iki.fi> # Maintainer: Timo Teräs <timo.teras@iki.fi> pkgname=libetonyek -pkgver=0.1.9 -pkgrel=6 +pkgver=0.1.10 +pkgrel=0 pkgdesc="Import filter and tools for Apple Keynote presentations" url="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek" arch="all" @@ -10,8 +10,7 @@ license="MPL-2.0" depends_dev="glm-dev boost-dev librevenge-dev libxml2-dev zlib-dev liblangtag-dev" makedepends="$depends_dev gperf doxygen mdds-dev" subpackages="$pkgname-dev $pkgname-doc $pkgname-tools" -source="https://dev-www.libreoffice.org/src/libetonyek/$pkgname-$pkgver.tar.xz - missing-include.patch" +source="https://dev-www.libreoffice.org/src/libetonyek/libetonyek-$pkgver.tar.xz" build() { ./configure \ @@ -41,5 +40,6 @@ tools() { mv "$pkgdir"/usr/bin "$subpkgdir"/usr } -sha512sums="3f439b369d450bb1a4bdb3fe92023bda234b323cf676570f1738318c56867a97910f536280b9b164c3fdaa423a3ee669c935df75a5c700bc1530ea5b9a00391e libetonyek-0.1.9.tar.xz -e089ed9892862f172f5d80f3301b4525b552ef54bf3022a175b8f570475de27a31cea9887635538d60eb4eb34c2ba8c025eb321408eeb0a2320d39e7b8135000 missing-include.patch" +sha512sums=" +516a14fcb7b7b5898484a4263d593a036ac728b90144da9d1c22a5d0fdffc879839e19a7b390f99d924c390d433e64433fb08939b1e04ca24359315571c5772b libetonyek-0.1.10.tar.xz +" diff --git a/community/libetonyek/missing-include.patch b/community/libetonyek/missing-include.patch deleted file mode 100644 index 7061b463df..0000000000 --- a/community/libetonyek/missing-include.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 4b4d879a6db69ea05b89fdf99df8cb5d902d16b6 Mon Sep 17 00:00:00 2001 -From: Roland Illig <roland.illig@gmx.de> -Date: Tue, 19 May 2020 08:43:39 +0200 -Subject: [PATCH] add missing include for std::for_each - -On NetBSD 8.0 x86_64, gcc complains: - NUM3Parser.cpp: In member function 'virtual bool libetonyek::NUM3Parser::parseDocument()': - NUM3Parser.cpp:46:3: error: 'for_each' is not a member of 'std' - std::for_each(sheetListRefs.begin(), sheetListRefs.end(), std::bind(&NUM3Parser::parseSheet, this, std::placeholders::_1)); - -Change-Id: I723ba1bcbd10ed9215ceea8c5b224fdc5242be65 -Reviewed-on: https://gerrit.libreoffice.org/c/libetonyek/+/94450 -Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> -Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> ---- - -diff --git a/src/lib/NUM3Parser.cpp b/src/lib/NUM3Parser.cpp -index 66fb195..c19b611 100644 ---- a/src/lib/NUM3Parser.cpp -+++ b/src/lib/NUM3Parser.cpp -@@ -7,6 +7,7 @@ - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - */ - -+#include <algorithm> - #include <functional> - - #include "NUM3Parser.h" |