Date: Saturday, January 21, 2023 @ 15:27:07
Author: felixonmars
Revision: 467127
archrelease: copy trunk to staging-x86_64
Added:
libcmis/repos/staging-x86_64/
libcmis/repos/staging-x86_64/PKGBUILD
(from rev 467126, libcmis/trunk/PKGBUILD)
libcmis/repos/staging-x86_64/getRefreshToken.diff
(from rev 467126, libcmis/trunk/getRefreshToken.diff)
libcmis/repos/staging-x86_64/libcmis-0.5.2-icu-64.2.patch
(from rev 467126, libcmis/trunk/libcmis-0.5.2-icu-64.2.patch)
------------------------------+
PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++
getRefreshToken.diff | 13 +++++++++++
libcmis-0.5.2-icu-64.2.patch | 17 +++++++++++++++
3 files changed, 75 insertions(+)
Copied: libcmis/repos/staging-x86_64/PKGBUILD (from rev 467126,
libcmis/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2023-01-21 15:27:07 UTC (rev 467127)
@@ -0,0 +1,45 @@
+# Maintainer: AndyRTR <[email protected]>
+
+pkgname=libcmis
+pkgver=0.5.2
+pkgrel=13
+pkgdesc="a C/C++ client library for the CMIS protocol"
+arch=('x86_64')
+url="https://github.com/tdf/libcmis"
+license=('GPL2' 'LGPL2.1' 'MPL')
+depends=('boost-libs' 'curl' 'libxml2')
+makedepends=('docbook2x' 'cppunit' 'boost')
+source=("https://github.com/tdf/libcmis/releases/download/v${pkgver}/$pkgname-$pkgver.tar.gz"
+ libcmis-0.5.2-icu-64.2.patch
+ getRefreshToken.diff)
+sha256sums=('ed6f681a48abbf3c2324564b17a180d21fa9503230e8708825e1ad80daee4f81'
+ '51b67a5b7245e5192739362c5034ed7d9a664799f38ff9ccd1832297f93cc03d'
+ '7ad0e742da2660c238b457ea7cd5752b90bb876da3da852f511a6bb1301c75b6')
+
+prepare() {
+ cd "$pkgname-$pkgver"
+
+ # https://github.com/tdf/libcmis/issues/35
+ patch -Np1 -i ../libcmis-0.5.2-icu-64.2.patch
+ # part of
https://github.com/tdf/libcmis/commit/f7466a849949f987dd47f2e0bb3a3df0c8cac4e4
+ # to solve a LibreOffice compile error
+ patch -Np1 -i ../getRefreshToken.diff
+}
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure --prefix=/usr DOCBOOK2MAN='db2x_docbook2man' --disable-werror
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+ make
+}
+
+check() {
+ cd "$pkgname-$pkgver"
+ # fails a google drive check - fix will be included in the next release
+ make check || /bin/true
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}
Copied: libcmis/repos/staging-x86_64/getRefreshToken.diff (from rev 467126,
libcmis/trunk/getRefreshToken.diff)
===================================================================
--- staging-x86_64/getRefreshToken.diff (rev 0)
+++ staging-x86_64/getRefreshToken.diff 2023-01-21 15:27:07 UTC (rev 467127)
@@ -0,0 +1,13 @@
+diff --git a/inc/libcmis/session.hxx b/inc/libcmis/session.hxx
+index 0a768a8..ec95ab4 100644
+--- a/inc/libcmis/session.hxx
++++ b/inc/libcmis/session.hxx
+@@ -95,6 +95,8 @@ namespace libcmis
+ certificate exception feature available on common web browser.
+ */
+ virtual void setNoSSLCertificateCheck( bool noCheck ) = 0;
++
++ virtual std::string getRefreshToken() { return ""; };
+ };
+ }
+
Copied: libcmis/repos/staging-x86_64/libcmis-0.5.2-icu-64.2.patch (from rev
467126, libcmis/trunk/libcmis-0.5.2-icu-64.2.patch)
===================================================================
--- staging-x86_64/libcmis-0.5.2-icu-64.2.patch (rev 0)
+++ staging-x86_64/libcmis-0.5.2-icu-64.2.patch 2023-01-21 15:27:07 UTC (rev
467127)
@@ -0,0 +1,17 @@
+--- a/inc/libcmis-c/repository.h 2018-12-27 14:07:55.000000000 +0100
++++ b/inc/libcmis-c/repository.h 2019-04-21 01:29:46.504373226 +0200
+@@ -28,12 +28,12 @@
+ #ifndef _REPOSITORY_H_
+ #define _REPOSITORY_H_
+
++#include <libxml/tree.h>
++
+ #ifdef __cplusplus
+ extern "C" {
+ #endif
+
+-#include <libxml/tree.h>
+-
+ #include "libcmis-c/libcmis-c-api.h"
+ #include "libcmis-c/types.h"
+