[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-12-19 Thread Felix Yan via arch-commits
Date: Saturday, December 19, 2020 @ 11:30:05
  Author: felixonmars
Revision: 404617

upgpkg: libreoffice-still 6.4.7-8: icu 68.2 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-19 11:29:07 UTC (rev 404616)
+++ PKGBUILD2020-12-19 11:30:05 UTC (rev 404617)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.4.7.2
 pkgver=6.4.7
-pkgrel=7
+pkgrel=8
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD icu68.patch)

2020-12-19 Thread Evangelos Foutras via arch-commits
Date: Saturday, December 19, 2020 @ 08:12:42
  Author: foutrelis
Revision: 404568

Fix build with ICU 68 (patch from FreeBSD)

Added:
  libreoffice-still/trunk/icu68.patch
Modified:
  libreoffice-still/trunk/PKGBUILD

-+
 PKGBUILD|4 
 icu68.patch |   31 +++
 2 files changed, 35 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-19 08:08:37 UTC (rev 404567)
+++ PKGBUILD2020-12-19 08:12:42 UTC (rev 404568)
@@ -57,6 +57,7 @@

${_additional_source_url2}/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
+   icu68.patch
soffice-template.desktop.in
libreoffice-still.sh libreoffice-still.csh)
 noextract=(35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
@@ -102,6 +103,7 @@
 '884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
 'c463654a73ecfbc242ff109726fb4faecdbfb3d91affafe919b24bea65afb563'
+'f650b91b98f71176ae1e4e7969eb3d6ec3e261dcb873703db0f2df578ee4b08c'
 'd0be8099cbee3c9dfda694a828149b881c345b204ab68826f317580aafb50879'
 'cd1b25ff390e436c6bffa65c6e12382236e3ccbf8d3aae51b1b59bcaed79fd8a'
 'de20f36d45f0fecc2d94176dd3ec7226ab07fa8ffb9b0bc73c200349a9273de1')
@@ -125,6 +127,8 @@
# fix not upstreamable pyuno paths - FS#54250
patch -Np1 -i 
"${srcdir}"/make-pyuno-work-with-system-wide-module-install.diff
 
+   patch -Np0 -i ../icu68.patch
+
#use the CFLAGS but remove the LibO overridden ones
for i in $CFLAGS; do
case "$i" in

Added: icu68.patch
===
--- icu68.patch (rev 0)
+++ icu68.patch 2020-12-19 08:12:42 UTC (rev 404568)
@@ -0,0 +1,31 @@
+Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844
+
+i18npool/source/calendar/calendar_gregorian.cxx:350:40: error: use of 
undeclared identifier 'TRUE'
+body->getTimeZone().getOffset( fR, TRUE, nZoneOffset, nDSTOffset, status );
+   ^
+svx/source/dialog/fntctrl.cxx:1017:24: error: use of undeclared identifier 
'TRUE'
+bTransparent = TRUE;
+   ^
+
+--- i18npool/source/calendar/calendar_gregorian.cxx.orig   2020-09-30 
15:54:35 UTC
 i18npool/source/calendar/calendar_gregorian.cxx
+@@ -347,7 +347,7 @@ Calendar_gregorian::setLocalDateTime( double fTimeInDa
+ "Calendar_gregorian::setLocalDateTime: " << std::fixed << fM << " 
rounded to " << fR);
+ int32_t nZoneOffset, nDSTOffset;
+ UErrorCode status = U_ZERO_ERROR;
+-body->getTimeZone().getOffset( fR, TRUE, nZoneOffset, nDSTOffset, status 
);
++body->getTimeZone().getOffset( fR, true, nZoneOffset, nDSTOffset, status 
);
+ if ( !U_SUCCESS(status) ) throw ERROR;
+ status = U_ZERO_ERROR;
+ body->setTime( fR - (nZoneOffset + nDSTOffset), status );
+--- svx/source/dialog/fntctrl.cxx.orig 2020-10-07 12:23:42 UTC
 svx/source/dialog/fntctrl.cxx
+@@ -1014,7 +1014,7 @@ void SvxFontPrevWindow::SetFromItemSet(const SfxItemSe
+  rCTLFont.SetFillColor( rColor );
+ }
+ else
+-bTransparent = TRUE;
++bTransparent = true;
+ 
+ rFont.SetTransparent( bTransparent );
+ rCJKFont.SetTransparent( bTransparent );


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-12-17 Thread Andreas Radke via arch-commits
Date: Thursday, December 17, 2020 @ 10:57:49
  Author: andyrtr
Revision: 404433

upgpkg: libreoffice-still 6.4.7-7: add dependency on xdg-utils to allow opening 
email client and browser - FS#68984

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-17 09:37:56 UTC (rev 404432)
+++ PKGBUILD2020-12-17 10:57:49 UTC (rev 404433)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.4.7.2
 pkgver=6.4.7
-pkgrel=6
+pkgrel=7
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -275,7 +275,8 @@
'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups'
'liblangtag' 'libexttextcat' 'libcmis' # 'liborcus' # 
'libfbclient'
'libtommath' 'libzmf' 'libatomic_ops' 'xmlsec' 'gpgme' 
'libnumbertext'
-   'libfreehand' 'libstaroffice' 'libepubgen' 'libqxp' 'libepoxy')
+   'libfreehand' 'libstaroffice' 'libepubgen' 'libqxp' 'libepoxy'
+'xdg-utils')
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
'pstoedit: translates PostScript and PDF graphics into 
other vector formats'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-12-12 Thread Felix Yan via arch-commits
Date: Saturday, December 12, 2020 @ 16:44:22
  Author: felixonmars
Revision: 404125

upgpkg: libreoffice-still 6.4.7-6: boost 1.75.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-12 16:23:01 UTC (rev 404124)
+++ PKGBUILD2020-12-12 16:44:22 UTC (rev 404125)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.4.7.2
 pkgver=6.4.7
-pkgrel=5
+pkgrel=6
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-12-06 Thread Felix Yan via arch-commits
Date: Sunday, December 6, 2020 @ 22:58:02
  Author: felixonmars
Revision: 403016

upgpkg: libreoffice-still 6.4.7-5: boost 1.74.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-06 22:40:03 UTC (rev 403015)
+++ PKGBUILD2020-12-06 22:58:02 UTC (rev 403016)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.4.7.2
 pkgver=6.4.7
-pkgrel=4
+pkgrel=5
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-12-02 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 2, 2020 @ 08:57:39
  Author: foutrelis
Revision: 402749

upgpkg: libreoffice-still 6.4.7-4: poppler 20.12.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-02 08:46:19 UTC (rev 402748)
+++ PKGBUILD2020-12-02 08:57:39 UTC (rev 402749)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.4.7.2
 pkgver=6.4.7
-pkgrel=3
+pkgrel=4
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-11-12 Thread Felix Yan via arch-commits
Date: Thursday, November 12, 2020 @ 19:01:38
  Author: felixonmars
Revision: 400686

upgpkg: libreoffice-still 6.4.7-3: Python 3.9 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 19:01:17 UTC (rev 400685)
+++ PKGBUILD2020-11-12 19:01:38 UTC (rev 400686)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.4.7.2
 pkgver=6.4.7
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-11-02 Thread Andreas Radke via arch-commits
Date: Monday, November 2, 2020 @ 18:11:30
  Author: andyrtr
Revision: 399167

upgpkg: libreoffice-still 6.4.7-2: rebuild with internal liborcus

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-02 17:22:02 UTC (rev 399166)
+++ PKGBUILD2020-11-02 18:11:30 UTC (rev 399167)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.4.7.2
 pkgver=6.4.7
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -27,7 +27,7 @@
'junit' 'libmythes' 'libwpg'  'java-environment=8' 'postgresql-libs' 
'mariadb-libs' 'libgl'
'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops'  'mdds'
'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
-   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
+   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' # 'liborcus' 
'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode' 
'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'  'boost' 
'libnumbertext'
@@ -51,6 +51,7 @@
${_additional_source_url}/lxml-4.1.1.tgz
${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2
${_additional_source_url}/QR-Code-generator-1.4.0.tar.gz
+   ${_additional_source_url}/liborcus-0.15.3.tar.gz

${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
  # for test suite

${_additional_source_url2}/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar
 # for test suite

${_additional_source_url2}/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf
@@ -70,6 +71,7 @@
lxml-4.1.1.tgz
Firebird-3.0.0.32483-0.tar.bz2
QR-Code-generator-1.4.0.tar.gz
+   liborcus-0.15.3.tar.gz
8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar  # 
for test suite

odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar
  # for test suite

884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf
@@ -94,6 +96,7 @@
 '940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a5cfd0f40e'
 '6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860'
 'fcdf9fd69fde07ae4dca2351d84271a9de8093002f733b77c70f52f1630f6e4a'
+'0dd26f3f2e611c51df9ee02d6dbf08887989eaa417b73f6877cd0d94df795fc2'
 'f2443f27561af52324eee03a1892d9f569adc8db9e7bca55614898bc2a13a770'
 '984f2a479df79e27e7b01a5815ac53ae64e07746b882262d8a64566494515504'
 '884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc'
@@ -178,7 +181,7 @@
--with-system-libcmis \
--with-system-libmspub \
--with-system-libexttextcat \
-   --with-system-orcus \
+   --without-system-orcus \
--with-system-liblangtag \
--with-system-libodfgen \
--with-system-libmwaw \
@@ -270,7 +273,7 @@
'libmspub' 'harfbuzz-icu' 'nss' 'clucene' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'libpagemaker'
'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups'
-   'liblangtag' 'libexttextcat' 'libcmis' 'liborcus' # 
'libfbclient'
+   'liblangtag' 'libexttextcat' 'libcmis' # 'liborcus' # 
'libfbclient'
'libtommath' 'libzmf' 'libatomic_ops' 'xmlsec' 'gpgme' 
'libnumbertext'
'libfreehand' 'libstaroffice' 'libepubgen' 'libqxp' 'libepoxy')
optdepends=('java-runtime: adds java support'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-10-25 Thread Andreas Radke via arch-commits
Date: Sunday, October 25, 2020 @ 19:06:40
  Author: andyrtr
Revision: 398798

upgpkg: libreoffice-still 6.4.7-1: upstream update 6.4.7

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-25 18:14:43 UTC (rev 398797)
+++ PKGBUILD2020-10-25 19:06:40 UTC (rev 398798)
@@ -10,9 +10,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=6.4.6.2
-pkgver=6.4.6
-pkgrel=3
+_LOver=6.4.7.2
+pkgver=6.4.7
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -47,7 +47,7 @@

${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip

${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip

${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
-   ${_additional_source_url}/pdfium-3963.tar.bz2
+   ${_additional_source_url}/pdfium-4137.tar.bz2
${_additional_source_url}/lxml-4.1.1.tgz
${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2
${_additional_source_url}/QR-Code-generator-1.4.0.tar.gz
@@ -66,7 +66,7 @@
17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
-   pdfium-3963.tar.bz2
+   pdfium-4137.tar.bz2
lxml-4.1.1.tgz
Firebird-3.0.0.32483-0.tar.bz2
QR-Code-generator-1.4.0.tar.gz
@@ -76,11 +76,11 @@
185d60944ea767075d27247c3162b3bc-unowinreg.dll
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('ab8281c5290e23eb46c4d4aee4abb16d2dcc5ff6daf46991c0370bee6ec0aa4c'
+sha256sums=('034dd79a60cfff60c7d353130fe2cc8e6a1aabeab50d89e4570ae95f33296644'
 'SKIP'
-'4af036e3f2a033b620b31acff24c0ce7b239ddd40a3782fb77640c0b386e04c8'
+'a126803900bca3bfd4d3efe2d3204fad828d86b2a52b05fcf7cb618a6cbb10b6'
 'SKIP'
-'a3a95168ed9845d28f5e10f1a729383dae9e706f63e5a898de72b4843fe5352a'
+'b13088a98be1f6e7e177331db3d723419bfeb11ae16516334f0fbb853ae40ab1'
 'SKIP'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'
 '1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753'
@@ -90,7 +90,7 @@
 'd30b13f4ba2e3b6a2d4f020c0dee0a9fb9fc6fbcc2d561f36b78da4bf3802370'
 '1b5b24f7bc543c0362b667692f78db8bab4ed6dafc6172f104d0bd3757d8a133'
 '233f66e8d25c5dd971716d4200203a612a407649686ef3b52075d04b4c9df0dd'
-'80d4d6bd8faec226936fcde5521c6e92c0c645126ac3ae72dd2c160ca1749895'
+'9a2f9bddca935a263f06c81003483473a525ccd0f4e517bc75fceb914d4c54b6'
 '940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a5cfd0f40e'
 '6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860'
 'fcdf9fd69fde07ae4dca2351d84271a9de8093002f733b77c70f52f1630f6e4a'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-10-04 Thread Felix Yan via arch-commits
Date: Sunday, October 4, 2020 @ 22:36:21
  Author: felixonmars
Revision: 397272

upgpkg: libreoffice-still 6.4.6-3: poppler 20.10.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-04 22:31:56 UTC (rev 397271)
+++ PKGBUILD2020-10-04 22:36:21 UTC (rev 397272)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.4.6.2
 pkgver=6.4.6
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-08-23 Thread Evangelos Foutras via arch-commits
Date: Sunday, August 23, 2020 @ 19:12:43
  Author: foutrelis
Revision: 394617

upgpkg: libreoffice-still 6.4.6-2: poppler 20.08.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-23 18:25:03 UTC (rev 394616)
+++ PKGBUILD2020-08-23 19:12:43 UTC (rev 394617)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.4.6.2
 pkgver=6.4.6
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-07-03 Thread Felix Yan via arch-commits
Date: Friday, July 3, 2020 @ 13:04:48
  Author: felixonmars
Revision: 390789

upgpkg: libreoffice-still 6.3.6-2: poppler 0.90.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-03 13:03:02 UTC (rev 390788)
+++ PKGBUILD2020-07-03 13:04:48 UTC (rev 390789)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.3.6.2
 pkgver=6.3.6
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD disable-latest-c++.diff)

2020-07-03 Thread Evangelos Foutras via arch-commits
Date: Friday, July 3, 2020 @ 10:48:03
  Author: foutrelis
Revision: 390782

Make -std=gnu++2a opt-in

Added:
  libreoffice-still/trunk/disable-latest-c++.diff
Modified:
  libreoffice-still/trunk/PKGBUILD

-+
 PKGBUILD|   11 ++-
 disable-latest-c++.diff |  149 ++
 2 files changed, 158 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-03 10:14:38 UTC (rev 390781)
+++ PKGBUILD2020-07-03 10:48:03 UTC (rev 390782)
@@ -57,7 +57,8 @@
soffice-template.desktop.in
libreoffice-still.sh libreoffice-still.csh
0001-Switch-mdds-to-1.5.0-and-liborcus-to-0.15.0.patch
-libreoffice-poppler-0.86.patch)
+   libreoffice-poppler-0.86.patch
+   disable-latest-c++.diff)
 noextract=(35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
@@ -101,7 +102,8 @@
 'c1e199f7767a4f42d9a95fc942cda4cf47737c7d67e6f334679c9b2e3e271dc2'
 '07c28ff8f5258abfe4338efccbdfb1dd35892bd00a2ed7f53b1fc2263f71a8b6'
 '77214ebc425916990ed80e9508572fd1d565412e1f8c2289424457e3d9bcbc79'
-'f52ef5d64d7a74ca90bc96614260566720130d91f3764874eac673f6b3336b5e')
+'f52ef5d64d7a74ca90bc96614260566720130d91f3764874eac673f6b3336b5e'
+'fde9801d839028c1e9ce0403b0ad7625620fe1ee3d54cb439f4651f3ab9b886f')
 
 prepare() {
 
@@ -109,6 +111,11 @@
 
 patch -p1 -i ../libreoffice-poppler-0.86.patch # Fix build with 
poppler 0.86
 
+# fix build with recent toolchain
+# 
https://cgit.freedesktop.org/libreoffice/core/commit/?h=libreoffice-6-4=f0b74640137f07ed74027f98fbf6d1c0d98939bf
+# prerequisite: 
https://cgit.freedesktop.org/libreoffice/core/commit/?id=a9f77e87f3e6cabbb16dec5456f3bf2903b8
+patch -Np1 -i ../disable-latest-c++.diff
+
# move external sources into place
mkdir "${srcdir}"/ext_sources && pushd "${srcdir}"/ext_sources
for source in "${noextract[@]}"; do

Added: disable-latest-c++.diff
===
--- disable-latest-c++.diff (rev 0)
+++ disable-latest-c++.diff 2020-07-03 10:48:03 UTC (rev 390782)
@@ -0,0 +1,149 @@
+From a9f77e87f3e6cabbb16dec5456f3bf2903b8 Mon Sep 17 00:00:00 2001
+From: Stephan Bergmann 
+Date: Sun, 20 Oct 2019 14:42:56 +0200
+Subject: We do not need a C++ GNU dialect
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+1cf7ab61a71d4b7295942ff5c855896e60c15081 "use -std=gnu++0x rather than
+-std=c++0x" appears to have started this, but the only rationale it gives is
+that it keeps things in sync with GCC's default behavior when no -std= is 
given.
+But it apparently works fine to build with a -std=c++... standard dialect.
+
+This allows to get rid of the check introduced with
+50cd28e5728b6a64c1e605567540739ea6ef42ca "Ensure configuration that defines
+math_errhandling in ".
+
+(It kept bothering me to say "I observe this-and-this with -std=c++2a" when 
what
+configure.ac made me actually use was -std=gnu++2a.  And truthfully saying
+"-std=gnu++2a" would have been a distraction, as what is relevant for such an
+observation is most likely the "2a" and not the "gnu" part.)
+
+Change-Id: I7c213a702ffb7df6f4c2c4a421008e30e2712a51
+Reviewed-on: https://gerrit.libreoffice.org/81176
+Tested-by: Jenkins
+Reviewed-by: Luboš Luňák 
+---
+ configure.ac | 10 +-
+ 1 file changed, 1 insertion(+), 9 deletions(-)
+
+(limited to 'configure.ac')
+
+diff --git a/configure.ac b/configure.ac
+index 422efbdc7b46..9c8d512be07b 100644
+--- a/configure.ac
 b/configure.ac
+@@ -6432,7 +6432,7 @@ CXXFLAGS_CXX11=
+ if test "$COM" = MSC -a "$COM_IS_CLANG" != TRUE; then
+ CXXFLAGS_CXX11='-std:c++17 -Zc:__cplusplus'
+ elif test "$GCC" = "yes" -o "$COM_IS_CLANG" = TRUE; then
+-my_flags='-std=gnu++2a -std=c++2a -std=gnu++17 -std=gnu++1z -std=c++17 
-std=c++1z'
++my_flags='-std=c++2a -std=c++17 -std=c++1z'
+ for flag in $my_flags; do
+ if test "$COM" = MSC; then
+ flag="-Xclang $flag"
+@@ -6475,7 +6475,6 @@ elif test "$GCC" = "yes" -o "$COM_IS_CLANG" = TRUE; then
+ ])
+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+ #include 
+-#include 
+ #include 
+ #include 
+ 
+@@ -6495,13 +6494,6 @@ elif test "$GCC" = "yes" -o "$COM_IS_CLANG" = TRUE; then
+ void f(std::vector & v, std::function fn) {
+ std::sort(v.begin(), v.end(), fn);
+ }
+-
+-// At least with glibc-headers-2.28-26.fc29.x86_64, when building 
for Linux x86 32-bit
+-// (via -m32) and passed-in CXXFLAGS setting -O1 (or higher; 
overriding -Os as set in
+-// 

[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-05-02 Thread Andreas Radke via arch-commits
Date: Saturday, May 2, 2020 @ 08:54:34
  Author: andyrtr
Revision: 382132

upgpkg: libreoffice-still 6.3.6-1: upstream update 6.3.6

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-02 08:42:47 UTC (rev 382131)
+++ PKGBUILD2020-05-02 08:54:34 UTC (rev 382132)
@@ -10,9 +10,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=6.3.5.2
-pkgver=6.3.5
-pkgrel=6
+_LOver=6.3.6.2
+pkgver=6.3.6
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -75,11 +75,11 @@
185d60944ea767075d27247c3162b3bc-unowinreg.dll
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('ffdb61dc01f18d85272dc798c3403ba74569b0b3e90f3cdc7d014710c3f6ca4a'
+sha256sums=('c39a4c7bb6e3bea604b0bfb2743492cb908166b464336272dac92c7dcf48af58'
 'SKIP'
-'a639d5ff1fa63672e52c3ab1be49ec9720dfafacc21e3ce7958b994d19e568dc'
+'391723f757f30ed8c372005d64d0845fe62034f61a116dc7554981d2f7afbfc0'
 'SKIP'
-'5bee1b53acb909b2fa70235b98a985e937032eeaa6034aa4d3b9c760d74ae005'
+'20986af32f9eb656ad05989509d9d5d165f3bc496421131bd3380683ee7ea8ac'
 'SKIP'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'
 '1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-05-01 Thread Evangelos Foutras via arch-commits
Date: Friday, May 1, 2020 @ 11:05:32
  Author: foutrelis
Revision: 382020

poppler 0.88.0 / cfitsio 3.48 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-01 11:05:03 UTC (rev 382019)
+++ PKGBUILD2020-05-01 11:05:32 UTC (rev 382020)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.3.5.2
 pkgver=6.3.5
-pkgrel=5
+pkgrel=6
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-04-27 Thread Evangelos Foutras via arch-commits
Date: Monday, April 27, 2020 @ 14:21:05
  Author: foutrelis
Revision: 381726

icu 67.1 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-27 14:11:14 UTC (rev 381725)
+++ PKGBUILD2020-04-27 14:21:05 UTC (rev 381726)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.3.5.2
 pkgver=6.3.5
-pkgrel=4
+pkgrel=5
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-03-30 Thread Evangelos Foutras via arch-commits
Date: Monday, March 30, 2020 @ 11:55:07
  Author: foutrelis
Revision: 378727

poppler 0.87.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 11:51:26 UTC (rev 378726)
+++ PKGBUILD2020-03-30 11:55:07 UTC (rev 378727)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.3.5.2
 pkgver=6.3.5
-pkgrel=3
+pkgrel=4
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-03-02 Thread Felix Yan via arch-commits
Date: Monday, March 2, 2020 @ 09:12:56
  Author: felixonmars
Revision: 376487

poppler 0.86.1 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-02 09:08:24 UTC (rev 376486)
+++ PKGBUILD2020-03-02 09:12:56 UTC (rev 376487)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.3.5.2
 pkgver=6.3.5
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-03-01 Thread Felix Yan via arch-commits
Date: Sunday, March 1, 2020 @ 11:59:27
  Author: felixonmars
Revision: 376449

poppler 0.86.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-01 11:02:48 UTC (rev 376448)
+++ PKGBUILD2020-03-01 11:59:27 UTC (rev 376449)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.3.5.2
 pkgver=6.3.5
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-02-20 Thread Andreas Radke via arch-commits
Date: Thursday, February 20, 2020 @ 14:35:40
  Author: andyrtr
Revision: 375923

upgpkg: libreoffice-still 6.3.5-1: upstream update 6.3.5

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   18 ++
 1 file changed, 6 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-20 14:32:30 UTC (rev 375922)
+++ PKGBUILD2020-02-20 14:35:40 UTC (rev 375923)
@@ -10,9 +10,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=6.3.4.2
-pkgver=6.3.4
-pkgrel=2
+_LOver=6.3.5.2
+pkgver=6.3.5
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -56,8 +56,6 @@
make-pyuno-work-with-system-wide-module-install.diff
soffice-template.desktop.in
libreoffice-still.sh libreoffice-still.csh
-   
libreoffice-poppler-0.82.patch::"https://github.com/LibreOffice/core/commit/2eadd46a.patch;
-   
libreoffice-poppler-0.83.patch::"https://github.com/LibreOffice/core/commit/9065cd8d.patch;
0001-Switch-mdds-to-1.5.0-and-liborcus-to-0.15.0.patch)
 noextract=(35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
@@ -76,11 +74,11 @@
185d60944ea767075d27247c3162b3bc-unowinreg.dll
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('cb72559aa9774f2c13e8fa78391d8f30f3c6f02e3fd83b2311bd643a5cdde49c'
+sha256sums=('ffdb61dc01f18d85272dc798c3403ba74569b0b3e90f3cdc7d014710c3f6ca4a'
 'SKIP'
-'8eac0f6a846c90ab06490c0fec144d108da7f88082175eea28b81a0e8942af06'
+'a639d5ff1fa63672e52c3ab1be49ec9720dfafacc21e3ce7958b994d19e568dc'
 'SKIP'
-'74a11926ba96ad2fa373a3231ad2e283d95e2ba4a1458c4c625686569f6f5fe9'
+'5bee1b53acb909b2fa70235b98a985e937032eeaa6034aa4d3b9c760d74ae005'
 'SKIP'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'
 '1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753'
@@ -101,8 +99,6 @@
 'd0be8099cbee3c9dfda694a828149b881c345b204ab68826f317580aafb50879'
 'c1e199f7767a4f42d9a95fc942cda4cf47737c7d67e6f334679c9b2e3e271dc2'
 '07c28ff8f5258abfe4338efccbdfb1dd35892bd00a2ed7f53b1fc2263f71a8b6'
-'d649a07b38af95e9012633e71829fef3001e8a5830544ce7e91856df27f69c4b'
-'a769b0e093a58a0d2b681a1ce4aec2c763157f27b82c86e8644e2055cf5f8e99'
 '77214ebc425916990ed80e9508572fd1d565412e1f8c2289424457e3d9bcbc79')
 
 prepare() {
@@ -132,8 +128,6 @@
ARCH_FLAGS="$ARCH_FLAGS $i"
done
 
-# fix build with poppler 0.83
-patch -p1 -i ../libreoffice-poppler-0.83.patch
# fix build with updated system liborcus/mdds; patch taken from Fedora
patch -Np1 -i ../0001-Switch-mdds-to-1.5.0-and-liborcus-to-0.15.0.patch
 }


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-01-30 Thread Felix Yan via arch-commits
Date: Thursday, January 30, 2020 @ 18:11:30
  Author: felixonmars
Revision: 374363

poppler 0.85.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-30 17:44:48 UTC (rev 374362)
+++ PKGBUILD2020-01-30 18:11:30 UTC (rev 374363)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.3.4.2
 pkgver=6.3.4
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-01-27 Thread Felix Yan via arch-commits
Date: Tuesday, January 28, 2020 @ 04:00:44
  Author: felixonmars
Revision: 374150

boost 1.72.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-28 03:42:13 UTC (rev 374149)
+++ PKGBUILD2020-01-28 04:00:44 UTC (rev 374150)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.2.8.2
 pkgver=6.2.8
-pkgrel=4
+pkgrel=5
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-01-07 Thread Felix Yan via arch-commits
Date: Tuesday, January 7, 2020 @ 22:34:43
  Author: felixonmars
Revision: 372783

poppler 0.84.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-07 22:28:46 UTC (rev 372782)
+++ PKGBUILD2020-01-07 22:34:43 UTC (rev 372783)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.2.8.2
 pkgver=6.2.8
-pkgrel=3
+pkgrel=4
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2020-01-07 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 7, 2020 @ 21:02:04
  Author: arojas
Revision: 372778

Fix build with poppler 0.83

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-07 20:58:23 UTC (rev 372777)
+++ PKGBUILD2020-01-07 21:02:04 UTC (rev 372778)
@@ -56,7 +56,8 @@
make-pyuno-work-with-system-wide-module-install.diff
 python-3.8.patch
libreoffice-still.sh libreoffice-still.csh
-
libreoffice-poppler-0.82.patch::"https://github.com/LibreOffice/core/commit/2eadd46a.patch;)
+
libreoffice-poppler-0.82.patch::"https://github.com/LibreOffice/core/commit/2eadd46a.patch;
+
libreoffice-poppler-0.83.patch::"https://github.com/LibreOffice/core/commit/9065cd8d.patch;)
 noextract=(35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
@@ -99,7 +100,8 @@
 '98f8ab4fba7b6a1c64f7e3cfe597083cafdd60e31bfd6b2da20456a2089d8581'
 'c1e199f7767a4f42d9a95fc942cda4cf47737c7d67e6f334679c9b2e3e271dc2'
 '07c28ff8f5258abfe4338efccbdfb1dd35892bd00a2ed7f53b1fc2263f71a8b6'
-'d649a07b38af95e9012633e71829fef3001e8a5830544ce7e91856df27f69c4b')
+'d649a07b38af95e9012633e71829fef3001e8a5830544ce7e91856df27f69c4b'
+'a769b0e093a58a0d2b681a1ce4aec2c763157f27b82c86e8644e2055cf5f8e99')
 
 prepare() {
 
@@ -131,6 +133,8 @@
 patch -p1 -i "$srcdir"/python-3.8.patch # Fix build with python 3.8
 # fix build with poppler 0.82
 patch -p1 -i ../libreoffice-poppler-0.82.patch
+# fix build with poppler 0.83
+patch -p1 -i ../libreoffice-poppler-0.83.patch
 }
 
 build() {


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-11-12 Thread Felix Yan via arch-commits
Date: Tuesday, November 12, 2019 @ 11:48:59
  Author: felixonmars
Revision: 367872

icu 65.1 / poppler 0.82.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-12 11:46:08 UTC (rev 367871)
+++ PKGBUILD2019-11-12 11:48:59 UTC (rev 367872)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.2.8.2
 pkgver=6.2.8
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-11-12 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 12, 2019 @ 09:22:18
  Author: arojas
Revision: 367859

Fix build with poppler 0.82

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-12 09:14:49 UTC (rev 367858)
+++ PKGBUILD2019-11-12 09:22:18 UTC (rev 367859)
@@ -55,7 +55,8 @@

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
 python-3.8.patch
-   libreoffice-still.sh libreoffice-still.csh)
+   libreoffice-still.sh libreoffice-still.csh
+
libreoffice-poppler-0.82.patch::"https://github.com/LibreOffice/core/commit/2eadd46a.patch;)
 noextract=(35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
@@ -97,7 +98,8 @@
 'c463654a73ecfbc242ff109726fb4faecdbfb3d91affafe919b24bea65afb563'
 '98f8ab4fba7b6a1c64f7e3cfe597083cafdd60e31bfd6b2da20456a2089d8581'
 'c1e199f7767a4f42d9a95fc942cda4cf47737c7d67e6f334679c9b2e3e271dc2'
-'07c28ff8f5258abfe4338efccbdfb1dd35892bd00a2ed7f53b1fc2263f71a8b6')
+'07c28ff8f5258abfe4338efccbdfb1dd35892bd00a2ed7f53b1fc2263f71a8b6'
+'d649a07b38af95e9012633e71829fef3001e8a5830544ce7e91856df27f69c4b')
 
 prepare() {
 
@@ -127,6 +129,8 @@
done
 
 patch -p1 -i "$srcdir"/python-3.8.patch # Fix build with python 3.8
+# fix build with poppler 0.82
+patch -p1 -i ../libreoffice-poppler-0.82.patch
 }
 
 build() {


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-11-05 Thread Felix Yan via arch-commits
Date: Tuesday, November 5, 2019 @ 08:01:31
  Author: felixonmars
Revision: 366785

Python 3.8 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-05 07:26:59 UTC (rev 366784)
+++ PKGBUILD2019-11-05 08:01:31 UTC (rev 366785)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.2.8.2
 pkgver=6.2.8
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD python-3.8.patch)

2019-11-04 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 5, 2019 @ 07:03:24
  Author: arojas
Revision: 366779

Backport more python 3.8 fixes

Modified:
  libreoffice-still/trunk/PKGBUILD
  libreoffice-still/trunk/python-3.8.patch

--+
 PKGBUILD |2 +-
 python-3.8.patch |   14 ++
 2 files changed, 15 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-05 00:34:03 UTC (rev 366778)
+++ PKGBUILD2019-11-05 07:03:24 UTC (rev 366779)
@@ -95,7 +95,7 @@
 '49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
 'c463654a73ecfbc242ff109726fb4faecdbfb3d91affafe919b24bea65afb563'
-'6b9452945dcabb349703aa694afb1446c93915ef7aed616dec5953f684229251'
+'98f8ab4fba7b6a1c64f7e3cfe597083cafdd60e31bfd6b2da20456a2089d8581'
 'c1e199f7767a4f42d9a95fc942cda4cf47737c7d67e6f334679c9b2e3e271dc2'
 '07c28ff8f5258abfe4338efccbdfb1dd35892bd00a2ed7f53b1fc2263f71a8b6')
 

Modified: python-3.8.patch
===
--- python-3.8.patch2019-11-05 00:34:03 UTC (rev 366778)
+++ python-3.8.patch2019-11-05 07:03:24 UTC (rev 366779)
@@ -183,3 +183,17 @@
  #endif
  };
  
+diff --git a/configure.ac b/configure.ac
+index 77cbacb109b6..39dd082b8366 100644
+--- a/configure.ac
 b/configure.ac
+@@ -8574,6 +8574,9 @@ if test $enable_python = system; then
+ if test -z "$PKG_CONFIG"; then
+ PYTHON_CFLAGS="-I$python_include"
+ PYTHON_LIBS="-L$python_libdir -lpython$python_version 
$python_libs"
++elif $PKG_CONFIG --exists python-$python_version-embed; then
++PYTHON_CFLAGS="`$PKG_CONFIG --cflags 
python-$python_version-embed`"
++PYTHON_LIBS="`$PKG_CONFIG --libs python-$python_version-embed` 
$python_libs"
+ elif $PKG_CONFIG --exists python-$python_version; then
+ PYTHON_CFLAGS="`$PKG_CONFIG --cflags python-$python_version`"
+ PYTHON_LIBS="`$PKG_CONFIG --libs python-$python_version` 
$python_libs"


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD python-3.8.patch)

2019-11-04 Thread Antonio Rojas via arch-commits
Date: Monday, November 4, 2019 @ 20:48:48
  Author: arojas
Revision: 366764

Fix build with python 3.8

Added:
  libreoffice-still/trunk/python-3.8.patch
Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |4 +
 python-3.8.patch |  185 +
 2 files changed, 189 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-04 20:41:51 UTC (rev 366763)
+++ PKGBUILD2019-11-04 20:48:48 UTC (rev 366764)
@@ -54,6 +54,7 @@

${_additional_source_url2}/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
+python-3.8.patch
libreoffice-still.sh libreoffice-still.csh)
 noextract=(35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
@@ -94,6 +95,7 @@
 '49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
 'c463654a73ecfbc242ff109726fb4faecdbfb3d91affafe919b24bea65afb563'
+'6b9452945dcabb349703aa694afb1446c93915ef7aed616dec5953f684229251'
 'c1e199f7767a4f42d9a95fc942cda4cf47737c7d67e6f334679c9b2e3e271dc2'
 '07c28ff8f5258abfe4338efccbdfb1dd35892bd00a2ed7f53b1fc2263f71a8b6')
 
@@ -123,6 +125,8 @@
esac
ARCH_FLAGS="$ARCH_FLAGS $i"
done
+
+patch -p1 -i "$srcdir"/python-3.8.patch # Fix build with python 3.8
 }
 
 build() {

Added: python-3.8.patch
===
--- python-3.8.patch(rev 0)
+++ python-3.8.patch2019-11-04 20:48:48 UTC (rev 366764)
@@ -0,0 +1,185 @@
+From a62b45cf541cf47d136bdff87dff4c13fd4296c2 Mon Sep 17 00:00:00 2001
+From: Stephan Bergmann 
+Date: Fri, 7 Jun 2019 15:57:13 +0200
+Subject: [PATCH] Adapt to upcoming Python 3.8
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+...which changed PyTypeObject in  "bpo-36974: implement PEP 590
+(GH-13185)".
+
+Change-Id: I687ec38aeda05d0747b9ed08221db75a758bed51
+Reviewed-on: https://gerrit.libreoffice.org/73664
+Tested-by: Jenkins
+Reviewed-by: Caolán McNamara 
+Tested-by: Caolán McNamara 
+(cherry picked from commit 2bd585f31d7abb066e3f53d9b29c822af20aea69)
+Reviewed-on: https://gerrit.libreoffice.org/73778
+---
+ pyuno/source/module/pyuno.cxx  |  9 -
+ pyuno/source/module/pyuno_callable.cxx |  9 -
+ pyuno/source/module/pyuno_iterator.cxx | 18 --
+ pyuno/source/module/pyuno_runtime.cxx  |  9 -
+ pyuno/source/module/pyuno_struct.cxx   |  9 -
+ 5 files changed, 48 insertions(+), 6 deletions(-)
+
+diff --git a/pyuno/source/module/pyuno.cxx b/pyuno/source/module/pyuno.cxx
+index f5f23bf058fa..e59319030eb8 100644
+--- a/pyuno/source/module/pyuno.cxx
 b/pyuno/source/module/pyuno.cxx
+@@ -1636,7 +1636,11 @@ static PyTypeObject PyUNOType =
+ sizeof (PyUNO),
+ 0,
+ PyUNO_del,
+-nullptr,
++#if PY_VERSION_HEX >= 0x0308
++0, // Py_ssize_t tp_vectorcall_offset
++#else
++nullptr, // printfunc tp_print
++#endif
+ PyUNO_getattr,
+ PyUNO_setattr,
+ /* this type does not exist in Python 3: (cmpfunc) */ nullptr,
+@@ -1680,6 +1684,9 @@ static PyTypeObject PyUNOType =
+ , 0
+ #if PY_VERSION_HEX >= 0x0304
+ , nullptr
++#if PY_VERSION_HEX >= 0x0308
++, nullptr // vectorcallfunc tp_vectorcall
++#endif
+ #endif
+ };
+ 
+diff --git a/pyuno/source/module/pyuno_callable.cxx 
b/pyuno/source/module/pyuno_callable.cxx
+index 6519d20734c9..656d1c84cb0e 100644
+--- a/pyuno/source/module/pyuno_callable.cxx
 b/pyuno/source/module/pyuno_callable.cxx
+@@ -181,7 +181,11 @@ static PyTypeObject PyUNO_callable_Type =
+ sizeof (PyUNO_callable),
+ 0,
+ ::pyuno::PyUNO_callable_del,
+-nullptr,
++#if PY_VERSION_HEX >= 0x0308
++0, // Py_ssize_t tp_vectorcall_offset
++#else
++nullptr, // printfunc tp_print
++#endif
+ nullptr,
+ nullptr,
+ nullptr,
+@@ -225,6 +229,9 @@ static PyTypeObject PyUNO_callable_Type =
+ , 0
+ #if PY_VERSION_HEX >= 0x0304
+ , nullptr
++#if PY_VERSION_HEX >= 0x0308
++, nullptr // vectorcallfunc tp_vectorcall
++#endif
+ #endif
+ };
+ 
+diff --git a/pyuno/source/module/pyuno_iterator.cxx 
b/pyuno/source/module/pyuno_iterator.cxx
+index 5f643c13b67e..a7862857d719 100644
+--- a/pyuno/source/module/pyuno_iterator.cxx
 b/pyuno/source/module/pyuno_iterator.cxx
+@@ -118,7 +118,11 @@ static PyTypeObject PyUNO_iterator_Type =
+ sizeof (PyUNO_iterator),
+ 0,
+ PyUNO_iterator_del,
+-nullptr,

[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-10-17 Thread Andreas Radke via arch-commits
Date: Thursday, October 17, 2019 @ 13:16:28
  Author: andyrtr
Revision: 365100

upgpkg: libreoffice-still 6.2.8-1

upstream update 6.2.8

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-17 12:28:12 UTC (rev 365099)
+++ PKGBUILD2019-10-17 13:16:28 UTC (rev 365100)
@@ -10,9 +10,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=6.2.7.1
-pkgver=6.2.7
-pkgrel=3
+_LOver=6.2.8.2
+pkgver=6.2.8
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -72,11 +72,11 @@
185d60944ea767075d27247c3162b3bc-unowinreg.dll
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('6709de8123e3da0c7320aada087e71afa2352560c7240590ff9982ff76c7b7d6'
+sha256sums=('3996f54d44187e600bf04c59f3577ecdbf65f29033f5aeac1c9ad20981f4fdda'
 'SKIP'
-'9bae1e6457359b09c93e025764a4a8a537244e5a8462e5c66ee7db3a0950c40f'
+'4cf965787ef6689daffa8f4b620888b5e7033debfe8afecd2b2ff73b0795fd51'
 'SKIP'
-'835793e3ae174910261f594b4b9cf5c2f6874c32a0a5434e2b90972beb2d5c27'
+'ed0f6568ee88c2d51b7d4ca127f36bedbcf4214aeabdb957e1b928c93cd2839f'
 'SKIP'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'
 '1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-10-07 Thread Andreas Radke via arch-commits
Date: Monday, October 7, 2019 @ 13:56:13
  Author: andyrtr
Revision: 364023

upgpkg: libreoffice-still 6.2.7-3

fix offline help not opening in non en-US language

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   13 -
 1 file changed, 12 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-07 12:47:58 UTC (rev 364022)
+++ PKGBUILD2019-10-07 13:56:13 UTC (rev 364023)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.2.7.1
 pkgver=6.2.7
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -329,4 +329,15 @@
install -dm755 "${pkgdir}"/usr/share/metainfo
install -v -m644 
"${srcdir}"/libreoffice-$_LOver/sysui/desktop/appstream-appdata/*.xml \
"${pkgdir}"/usr/share/metainfo
+
+   # make all i18n lang packages with help section ('1') available to
+   # fix "F1" not opening translated offline help opening in browser
+   # see also /usr/lib/libreoffice/help/en-US/langnames.js
+   echo "var languagesSet = new Set(['en-US','am','ar','ast','bg','bn',\
+   'bn-IN','bo','bs','ca','ca-valencia','cs','da','de','dz','el',\
+   'en-GB','en-ZA','eo','es','et','eu','fi','fr','gl','gu','he',\
+   'hi','hr','hu','id','is','it','ja','ka','km','ko','lo','lt','lv',\
+   'mk','nb','ne','nl','nn','om','pl','pt','pt-BR','ro','ru','si',\
+   
'sid','sk','sl','sq','sv','ta','tg','tr','ug','uk','vi','zh-CN','zh-TW'])" \
+   > "${pkgdir}"/usr/lib/libreoffice/help/languages.js
 }


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-09-23 Thread Andreas Radke via arch-commits
Date: Monday, September 23, 2019 @ 20:09:00
  Author: andyrtr
Revision: 363320

fix quoting

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-23 20:04:40 UTC (rev 363319)
+++ PKGBUILD2019-09-23 20:09:00 UTC (rev 363320)
@@ -102,19 +102,19 @@
cd libreoffice-$_LOver
 
# move external sources into place
-   mkdir ${srcdir}/ext_sources &&  pushd ${srcdir}/ext_sources
+   mkdir "${srcdir}"/ext_sources && pushd "${srcdir}"/ext_sources
for source in "${noextract[@]}"; do
-   ln -s ${srcdir}/$source .
+   ln -s "${srcdir}"/$source .
done
popd

# unowinreg.dll must be a file not a symlink or the result will become 
a broken symlink
# /usr/share/libreoffice/sdk/classes/win/unowinreg.dll -> 
/build/libreoffice/src/185d60944ea767075d27247c3162b3bc-unowinreg.dll
-   rm ${srcdir}/ext_sources/185d60944ea767075d27247c3162b3bc-unowinreg.dll
-   cp -f ${srcdir}/185d60944ea767075d27247c3162b3bc-unowinreg.dll 
${srcdir}/ext_sources
+   rm 
"${srcdir}"/ext_sources/185d60944ea767075d27247c3162b3bc-unowinreg.dll
+   cp -f "${srcdir}"/185d60944ea767075d27247c3162b3bc-unowinreg.dll 
"${srcdir}"/ext_sources
 
# fix not upstreamable pyuno paths - FS#54250
-   patch -Np1 -i 
${srcdir}/make-pyuno-work-with-system-wide-module-install.diff
+   patch -Np1 -i 
"${srcdir}"/make-pyuno-work-with-system-wide-module-install.diff
 
#use the CFLAGS but remove the LibO overridden ones
for i in $CFLAGS; do
@@ -218,12 +218,12 @@
touch src.downloaded
make build-nocheck
 
-   mkdir ${srcdir}/fakeinstall
-   make DESTDIR=${srcdir}/fakeinstall distro-pack-install
+   mkdir "${srcdir}"/fakeinstall
+   make DESTDIR="${srcdir}"/fakeinstall distro-pack-install
 }
 
 #check() {
-#  cd ${srcdir}/build
+#  cd "${srcdir}"/build
 #  make check
 #}
 
@@ -234,25 +234,25 @@
conflicts=('libreoffice-fresh-sdk')
 
for dir in $(grep -h ^%dir 
libreoffice-$_LOver/file-lists/sdk{,_doc}_list.txt); do
-   install -dm755 ${pkgdir}/${dir/\%dir/}
+   install -dm755 "${pkgdir}"/${dir/\%dir/}
done
 
for file in $(grep -h -v ^%dir 
libreoffice-$_LOver/file-lists/sdk{,_doc}_list.txt); do
dirname=$(dirname $file)
-   [[ -d ${pkgdir}/$dirname ]] || install -dm755 ${pkgdir}/$dirname
-   mv ${srcdir}/fakeinstall/${file} ${pkgdir}/$file
+   [[ -d "${pkgdir}"/$dirname ]] || install -dm755 
"${pkgdir}"/$dirname
+   mv "${srcdir}"/fakeinstall/${file} "${pkgdir}"/$file
done
 
# fix environment path to keep compatibility with other 
java-environments
sed -i -e "s:\/usr\/lib\/jvm\/java-7-openjdk:\$J2SDKDIR:" \
-   ${pkgdir}/usr/lib/libreoffice/sdk/setsdkenv_unix.sh
+   "${pkgdir}"/usr/lib/libreoffice/sdk/setsdkenv_unix.sh
 
# fix permissions
-   find ${pkgdir}/usr/lib/libreoffice/sdk/examples -type f -exec chmod -x 
{} +
+   find "${pkgdir}"/usr/lib/libreoffice/sdk/examples -type f -exec chmod 
-x {} +

# add LibreOfficeKit headers; FS#48066
-   install -dm755 ${pkgdir}/usr/include/LibreOfficeKit
-   install -v -m644 ${srcdir}/libreoffice-$_LOver/include/LibreOfficeKit/* 
${pkgdir}/usr/include/LibreOfficeKit
+   install -dm755 "${pkgdir}"/usr/include/LibreOfficeKit
+   install -v -m644 
"${srcdir}"/libreoffice-$_LOver/include/LibreOfficeKit/* 
"${pkgdir}"/usr/include/LibreOfficeKit
 }
 
 package_libreoffice-still() {
@@ -291,42 +291,42 @@
provides=('libreoffice' 'libreoffice-en-US')
conflicts=('libreoffice-fresh')
 
-   mv fakeinstall/* ${pkgdir}/
+   mv fakeinstall/* "${pkgdir}"/
 
# put configuration files into place
-   install -dm755 ${pkgdir}/etc/libreoffice
-   install -m644 
${pkgdir}/usr/lib/libreoffice/program/{bootstraprc,sofficerc} \
-   ${pkgdir}/etc/libreoffice/
-   install -m644 ${pkgdir}/usr/lib/libreoffice/share/psprint/psprint.conf \
-   ${pkgdir}/etc/libreoffice/
+   install -dm755 "${pkgdir}"/etc/libreoffice
+   install -m644 
"${pkgdir}"/usr/lib/libreoffice/program/{bootstraprc,sofficerc} \
+   "${pkgdir}"/etc/libreoffice/
+   install -m644 
"${pkgdir}"/usr/lib/libreoffice/share/psprint/psprint.conf \
+   "${pkgdir}"/etc/libreoffice/
 
# install dummy links to make them found by LibO
-   cd ${pkgdir}/usr/lib/libreoffice/program/
+   cd "${pkgdir}"/usr/lib/libreoffice/program/
ln -vsf /etc/libreoffice/{bootstraprc,sofficerc} .
-   cd ${pkgdir}/usr/lib/libreoffice/share/psprint/
+   cd 

[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-09-13 Thread Felix Yan via arch-commits
Date: Friday, September 13, 2019 @ 12:36:40
  Author: felixonmars
Revision: 362525

boost 1.71.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-13 12:34:42 UTC (rev 362524)
+++ PKGBUILD2019-09-13 12:36:40 UTC (rev 362525)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.2.7.1
 pkgver=6.2.7
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-09-04 Thread Andreas Radke via arch-commits
Date: Wednesday, September 4, 2019 @ 17:31:26
  Author: andyrtr
Revision: 361615

upgpkg: libreoffice-still 6.2.7-1

upstream update 6.2.7

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-04 16:31:22 UTC (rev 361614)
+++ PKGBUILD2019-09-04 17:31:26 UTC (rev 361615)
@@ -10,9 +10,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=6.2.6.2
-pkgver=6.2.6
-pkgrel=2
+_LOver=6.2.7.1
+pkgver=6.2.7
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;
@@ -72,11 +72,11 @@
185d60944ea767075d27247c3162b3bc-unowinreg.dll
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('f8cad6d82c257ed0706230e531a56a46737686c8f7667afef27721eccd6afbdb'
+sha256sums=('6709de8123e3da0c7320aada087e71afa2352560c7240590ff9982ff76c7b7d6'
 'SKIP'
-'dfc59e3e184514ffbcd252b02836c914ea85ed2493b8bf043ffeedbe57db9240'
+'9bae1e6457359b09c93e025764a4a8a537244e5a8462e5c66ee7db3a0950c40f'
 'SKIP'
-'d0f5d67f90cfee440c7fb7b6a4808fc8915daec7be5582898846277bd64abbd0'
+'835793e3ae174910261f594b4b9cf5c2f6874c32a0a5434e2b90972beb2d5c27'
 'SKIP'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'
 '1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-08-23 Thread Evangelos Foutras via arch-commits
Date: Friday, August 23, 2019 @ 07:59:44
  Author: foutrelis
Revision: 360576

poppler 0.80 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-23 07:51:46 UTC (rev 360575)
+++ PKGBUILD2019-08-23 07:59:44 UTC (rev 360576)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.2.6.2
 pkgver=6.2.6
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-06-30 Thread Felix Yan via arch-commits
Date: Sunday, June 30, 2019 @ 11:14:25
  Author: felixonmars
Revision: 357106

poppler 0.78 / nettle 3.5 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-30 10:51:43 UTC (rev 357105)
+++ PKGBUILD2019-06-30 11:14:25 UTC (rev 357106)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.1.6.3
 pkgver=6.1.6
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-04-23 Thread Felix Yan via arch-commits
Date: Tuesday, April 23, 2019 @ 21:12:50
  Author: felixonmars
Revision: 352026

poppler 0.76.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-23 21:07:28 UTC (rev 352025)
+++ PKGBUILD2019-04-23 21:12:50 UTC (rev 352026)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.1.5.2
 pkgver=6.1.5
-pkgrel=4
+pkgrel=5
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-04-05 Thread Evangelos Foutras via arch-commits
Date: Friday, April 5, 2019 @ 15:58:19
  Author: foutrelis
Revision: 350134

icu 64.1 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-05 15:19:22 UTC (rev 350133)
+++ PKGBUILD2019-04-05 15:58:19 UTC (rev 350134)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.1.5.2
 pkgver=6.1.5
-pkgrel=3
+pkgrel=4
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-03-21 Thread Felix Yan via arch-commits
Date: Thursday, March 21, 2019 @ 21:55:01
  Author: felixonmars
Revision: 348845

poppler 0.75.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-03-21 21:42:46 UTC (rev 348844)
+++ PKGBUILD2019-03-21 21:55:01 UTC (rev 348845)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.1.5.2
 pkgver=6.1.5
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-02-08 Thread Felix Yan via arch-commits
Date: Friday, February 8, 2019 @ 23:20:24
  Author: felixonmars
Revision: 345681

poppler 0.74.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-08 22:43:03 UTC (rev 345680)
+++ PKGBUILD2019-02-08 23:20:24 UTC (rev 345681)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.1.5.2
 pkgver=6.1.5
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2019-01-19 Thread Evangelos Foutras via arch-commits
Date: Saturday, January 19, 2019 @ 13:14:03
  Author: foutrelis
Revision: 344483

poppler 0.73.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-19 13:05:12 UTC (rev 344482)
+++ PKGBUILD2019-01-19 13:14:03 UTC (rev 344483)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.0.7.3
 pkgver=6.0.7
-pkgrel=3
+pkgrel=4
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-12-14 Thread Felix Yan via arch-commits
Date: Friday, December 14, 2018 @ 21:15:03
  Author: felixonmars
Revision: 342356

poppler 0.72.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-14 21:09:29 UTC (rev 342355)
+++ PKGBUILD2018-12-14 21:15:03 UTC (rev 342356)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.0.7.3
 pkgver=6.0.7
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-11-17 Thread Evangelos Foutras via arch-commits
Date: Saturday, November 17, 2018 @ 16:07:23
  Author: foutrelis
Revision: 340039

hunspell 1.7.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-17 15:36:51 UTC (rev 340038)
+++ PKGBUILD2018-11-17 16:07:23 UTC (rev 340039)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.0.7.3
 pkgver=6.0.7
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-11-05 Thread Andreas Radke via arch-commits
Date: Monday, November 5, 2018 @ 18:20:48
  Author: andyrtr
Revision: 337887

upgpkg: libreoffice-still 6.0.7-1

upstream update 6.0.7

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-05 18:20:26 UTC (rev 337886)
+++ PKGBUILD2018-11-05 18:20:48 UTC (rev 337887)
@@ -10,9 +10,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=6.0.6.2
-pkgver=6.0.6
-pkgrel=6
+_LOver=6.0.7.3
+pkgver=6.0.7
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -77,11 +77,11 @@
185d60944ea767075d27247c3162b3bc-unowinreg.dll
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('f1666430abf616a3813e4c886b51f157366f592102ae0e874abc17f3d58c6a8e'
+sha256sums=('b9633ccbd719fe6ad8142eceed3047eda346fca5d2962567283f350354b64c72'
 'SKIP'
-'7e49f0dc0e7fd8e2628939833063d60e6c92bdec019226037446595c87eee85e'
+'91c82943cf6ea8f6122c8cf3bfa84620de72404985e793c776227a4d77c0dd1c'
 'SKIP'
-'ab55fcc7e6103e541288a369236c5fe2c7b6c3f7d86b2b62b198f7977ca92742'
+'ae5cd0067c8abdde9b8dfff3de62026b256207c8756bb6d963fece7168e6'
 'SKIP'
 '9807a5d16566c57fd74fb522764e0b134a8bbe6b6e8967b83afefd30dcd3be81'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-11-01 Thread Felix Yan via arch-commits
Date: Friday, November 2, 2018 @ 00:12:02
  Author: felixonmars
Revision: 337710

poppler 0.71.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-01 23:41:47 UTC (rev 337709)
+++ PKGBUILD2018-11-02 00:12:02 UTC (rev 337710)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.0.6.2
 pkgver=6.0.6
-pkgrel=5
+pkgrel=6
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-10-31 Thread Andreas Radke via arch-commits
Date: Wednesday, October 31, 2018 @ 20:15:07
  Author: andyrtr
Revision: 337649

upgpkg: libreoffice-still 6.0.6-5

build with internl mdds and liborcus

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   20 +---
 1 file changed, 13 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-31 19:54:18 UTC (rev 337648)
+++ PKGBUILD2018-10-31 20:15:07 UTC (rev 337649)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.0.6.2
 pkgver=6.0.6
-pkgrel=4
+pkgrel=5
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -24,10 +24,10 @@
'desktop-file-utils' 'shared-mime-info' 'gtk2' 'gst-plugins-base-libs'
'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'ant'
'gperf' 'gtk3' 'cppunit' 'beanshell' 'clucene' 
-   'junit' 'libmythes' 'libwpg'  'java-environment' 'postgresql-libs' 
'libgl'
-   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops' 'mdds'
+   'junit' 'libmythes' 'libwpg'  'java-environment=8' 'postgresql-libs' 
'libgl'
+   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops'
'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
-   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
+   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 
'libexttextcat' 'libcmis' 'gobject-introspection'
'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode' 
'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'
@@ -49,6 +49,8 @@

${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2
${_additional_source_url}/pdfium-3235.tar.bz2
+   ${_additional_source_url}/mdds-1.3.1.tar.bz2
+   ${_additional_source_url}/liborcus-0.13.3.tar.gz

${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
  # for test suite

${_additional_source_url2}/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar
 # for test suite

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
@@ -67,6 +69,8 @@
ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
Firebird-3.0.0.32483-0.tar.bz2
pdfium-3235.tar.bz2
+   mdds-1.3.1.tar.bz2
+   liborcus-0.13.3.tar.gz
8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar  # 
for test suite

odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar
  # for test suite
185d60944ea767075d27247c3162b3bc-unowinreg.dll
@@ -89,6 +93,8 @@
 '233f66e8d25c5dd971716d4200203a612a407649686ef3b52075d04b4c9df0dd'
 '6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860'
 '7dc0d33fc24b1612865f5e173d48800ba3f2db891c57e3f92b9d2ce56ffeb72f'
+'dcb8cd2425567a5a5ec164afea475bce57784bca3e352ad4cbdd3d1a7e08e5a1'
+'62e76de1fd3101e77118732b860354121b40a87bbb1ebfeb8203477fffac16e9'
 'f2443f27561af52324eee03a1892d9f569adc8db9e7bca55614898bc2a13a770'
 '702413413a5d8076c17fe79c0808dfba145a7260020f6c8627ea529a0cf83769'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
@@ -183,13 +189,13 @@
--without-fonts\
--with-system-apr \
--with-system-libcdr \
-   --with-system-mdds\
+   --without-system-mdds\
--without-myspell-dicts \
--with-system-libvisio \
--with-system-libcmis \
--with-system-libmspub \
--with-system-libexttextcat \
-   --with-system-orcus \
+   --without-system-orcus \
--with-system-liblangtag \
--with-system-libodfgen \
--with-system-libmwaw \
@@ -280,7 +286,7 @@
'libmspub' 'harfbuzz-icu' 'nss' 'clucene' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'libpagemaker'
'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups'
-   'liblangtag' 'libexttextcat' 'libcmis' 'liborcus' # 
'libfbclient'
+   'liblangtag' 'libexttextcat' 'libcmis'
'libtommath' 'libzmf' 'libatomic_ops' 'xmlsec' 'gpgme'
'libfreehand' 'libstaroffice' 'libepubgen' 'libqxp' 'libepoxy')
optdepends=('java-runtime: adds java support'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-10-22 Thread Evangelos Foutras via arch-commits
Date: Monday, October 22, 2018 @ 23:16:16
  Author: foutrelis
Revision: 337112

apache-ant -> ant

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-22 23:07:58 UTC (rev 337111)
+++ PKGBUILD2018-10-22 23:16:16 UTC (rev 337112)
@@ -22,7 +22,7 @@
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
'libmspub' 'harfbuzz-icu' 'nss' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'gtk2' 'gst-plugins-base-libs'
-   'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant'
+   'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'ant'
'gperf' 'gtk3' 'cppunit' 'beanshell' 'clucene' 
'junit' 'libmythes' 'libwpg'  'java-environment' 'postgresql-libs' 
'libgl'
'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops' 'mdds'
@@ -212,7 +212,7 @@
--with-system-libstaroffice \
--with-system-serf \
--with-jdk-home="/usr/lib/jvm/default" \
-   --with-ant-home="/usr/share/apache-ant"\
+   --with-ant-home="/usr/share/ant"\
--without-system-boost\
--with-system-icu \
--with-system-cairo \


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-08-20 Thread Andreas Radke via arch-commits
Date: Monday, August 20, 2018 @ 17:59:52
  Author: andyrtr
Revision: 332708

upgpkg: libreoffice-still 6.0.6-3

drop unneeded dependencies on glew and glu, build with system glm

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   19 ---
 1 file changed, 8 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-20 17:20:39 UTC (rev 332707)
+++ PKGBUILD2018-08-20 17:59:52 UTC (rev 332708)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=6.0.6.2
 pkgver=6.0.6
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -21,13 +21,13 @@
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu' 
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
-   'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'hicolor-icon-theme'
+   'libmspub' 'harfbuzz-icu' 'nss' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'gtk2' 'gst-plugins-base-libs'
-   'glu' 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant'
+   'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant'
'gperf' 'gtk3' 'cppunit' 'beanshell' 'clucene' 
'junit' 'libmythes' 'libwpg'  'java-environment' 'postgresql-libs' 
'libgl'
-   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops' 'mdds' 'glew'
-   'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker'
+   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops' 'mdds'
+   'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
'libexttextcat' 'libcmis' 'gobject-introspection'
'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode' 
@@ -50,7 +50,6 @@

${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2
${_additional_source_url}/pdfium-3235.tar.bz2
-
${_additional_source_url}/bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip

${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
  # for test suite

${_additional_source_url2}/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar
 # for test suite

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
@@ -68,7 +67,6 @@
ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
Firebird-3.0.0.32483-0.tar.bz2
pdfium-3235.tar.bz2
-   bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip
8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar  # 
for test suite

odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar
  # for test suite
185d60944ea767075d27247c3162b3bc-unowinreg.dll
@@ -91,7 +89,6 @@
 '233f66e8d25c5dd971716d4200203a612a407649686ef3b52075d04b4c9df0dd'
 '6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860'
 '7dc0d33fc24b1612865f5e173d48800ba3f2db891c57e3f92b9d2ce56ffeb72f'
-'d0312c360efe04dd048b3311fe375ff36f1993b4c2e3cb58c81062990532904a'
 'f2443f27561af52324eee03a1892d9f569adc8db9e7bca55614898bc2a13a770'
 '702413413a5d8076c17fe79c0808dfba145a7260020f6c8627ea529a0cf83769'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
@@ -207,7 +204,7 @@
--with-system-beanshell \
--with-system-cppunit\
--with-system-graphite\
-   --without-system-glm \
+   --with-system-glm \
--with-system-libwpg \
--with-system-libwps \
--with-system-redland\
@@ -276,8 +273,8 @@
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 
'dbus-glib'
'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 
'graphite' 'icu' 
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
-   'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 
'hicolor-icon-theme'
-   'desktop-file-utils' 'shared-mime-info' 'glu' 'libpagemaker'
+   'libmspub' 'harfbuzz-icu' 'nss' 'clucene' 'hicolor-icon-theme'
+   'desktop-file-utils' 'shared-mime-info' 'libpagemaker'
'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups'
'liblangtag' 'libexttextcat' 'libcmis' 'liborcus' # 
'libfbclient'
'libtommath' 'libzmf' 'libatomic_ops' 'xmlsec' 'gpgme'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-08-06 Thread Felix Yan via arch-commits
Date: Monday, August 6, 2018 @ 21:22:41
  Author: felixonmars
Revision: 331048

icu 62.1 / poppler 0.67.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-06 21:07:49 UTC (rev 331047)
+++ PKGBUILD2018-08-06 21:22:41 UTC (rev 331048)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.4.7.2
 pkgver=5.4.7
-pkgrel=3
+pkgrel=4
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD pyuno-python37.patch)

2018-07-23 Thread Evangelos Foutras via arch-commits
Date: Monday, July 23, 2018 @ 20:35:21
  Author: foutrelis
Revision: 329480

Python 3.7 rebuild

Added:
  libreoffice-still/trunk/pyuno-python37.patch
Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   18 ++--
 pyuno-python37.patch |   54 +
 2 files changed, 66 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-23 19:50:42 UTC (rev 329479)
+++ PKGBUILD2018-07-23 20:35:21 UTC (rev 329480)
@@ -13,11 +13,11 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.4.7.2
 pkgver=5.4.7
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
-makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.6' 'libwpd>=0.9.2' 
'libwps'
+makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.7' 'libwpd>=0.9.2' 
'libwps'
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu'
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
@@ -57,6 +57,7 @@

${_additional_source_url2}/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar
  # for test suite

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
+   pyuno-python37.patch
poppler-0.62.patch
poppler-0.64.patch
libreoffice-still.sh libreoffice-still.csh)
@@ -106,6 +107,7 @@
 '702413413a5d8076c17fe79c0808dfba145a7260020f6c8627ea529a0cf83769'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
 'c463654a73ecfbc242ff109726fb4faecdbfb3d91affafe919b24bea65afb563'
+'5d874bfa2ef7340615dfd34dc17e9e72bfc8587dce7864b949cfcde7fcbabb52'
 '344f88086b947d53550ef5492e4d61b1e1594067a34c6c4d8ae801ddd0a2fadb'
 '944064e8f8fa18beeb348468348d910d365d8a3e36ddb76076a368bd9bd6f894'
 '76f62957d0058092b11316357d9d716a62b48a53e5277426ffa87429ab5510e4'
@@ -124,6 +126,7 @@

# don't run broken tests
sed -i "/CppunitTest_sw_ooxmlexport9/d" sw/Module_sw.mk
+   sed -i "/CppunitTest_xmlsecurity_signing/d" 
xmlsecurity/Module_xmlsecurity.mk

# unowinreg.dll must be a file not a symlink or the result will become 
a broken symlink
# /usr/share/libreoffice/sdk/classes/win/unowinreg.dll -> 
/build/libreoffice/src/185d60944ea767075d27247c3162b3bc-unowinreg.dll
@@ -139,6 +142,9 @@
# fix not upstreamable pyuno paths - FS#54250
patch -Np1 -i 
${srcdir}/make-pyuno-work-with-system-wide-module-install.diff
 
+   # const fixes for Python 3.7
+   patch -Np1 -i ${srcdir}/pyuno-python37.patch
+
#use the CFLAGS but remove the LibO overridden ones
for i in $CFLAGS; do
case "$i" in
@@ -282,7 +288,7 @@
 
 package_libreoffice-still() {
pkgdesc="LibreOffice maintenance branch"
-   depends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.6' 'libwpd>=0.9.2' 
'libwps'
+   depends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.7' 'libwpd>=0.9.2' 
'libwps'
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 
'dbus-glib'
'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 
'graphite' #'icu'
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
@@ -335,11 +341,11 @@
install -m755 ${srcdir}/libreoffice-still.{sh,csh} 
${pkgdir}/etc/profile.d/
 
# make pyuno find its modules
-   install -dm755 ${pkgdir}/usr/lib/python3.6/site-packages
+   install -dm755 ${pkgdir}/usr/lib/python3.7/site-packages
ln -svf /usr/lib/libreoffice/program/uno.py \
-   ${pkgdir}/usr/lib/python3.6/site-packages/uno.py
+   ${pkgdir}/usr/lib/python3.7/site-packages/uno.py
ln -svf /usr/lib/libreoffice/program/unohelper.py \
-   ${pkgdir}/usr/lib/python3.6/site-packages/unohelper.py
+   ${pkgdir}/usr/lib/python3.7/site-packages/unohelper.py
 
# add a symlink required for gnome-documents; FS#51887
# 
https://lists.freedesktop.org/archives/libreoffice/2016-March/073787.html

Added: pyuno-python37.patch
===
--- pyuno-python37.patch(rev 0)
+++ pyuno-python37.patch2018-07-23 20:35:21 UTC (rev 329480)
@@ -0,0 +1,54 @@
+From 76a29148be63cb006a7e25e312dc93acc93e071f Mon Sep 17 00:00:00 2001
+From: Stephan Bergmann 
+Date: Tue, 3 Jul 2018 08:33:34 +0200
+Subject: [PATCH] const fixes for python3-devel-3.7.0-1.fc29.x86_64
+
+Change-Id: Ia16a8b828e11ce36e9bb77ecf9e8a1179bd9b90c
+Reviewed-on: https://gerrit.libreoffice.org/56841
+Tested-by: Jenkins

[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-06-03 Thread Andreas Radke via arch-commits
Date: Monday, June 4, 2018 @ 03:52:43
  Author: andyrtr
Revision: 325735

upgpkg: libreoffice-still 5.4.7-2

add dependency on libepoxy - FS#58753

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-04 03:47:42 UTC (rev 325734)
+++ PKGBUILD2018-06-04 03:52:43 UTC (rev 325735)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.4.7.2
 pkgver=5.4.7
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -27,7 +27,7 @@
'gperf' 'kdelibs' 'gtk3' 'cppunit' 'beanshell' 'clucene'
'junit' 'libmythes' 'libwpg'  'java-environment=8' 'postgresql-libs' 
'libgl'
'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops' 'mdds' 'glew'
-   'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'glm' 'libxinerama' 
'libpagemaker'
+   'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'libxinerama' 'libpagemaker' 
# 'glm'
'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag'
'libexttextcat' 'libcmis' 'gobject-introspection'
'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode'
@@ -291,7 +291,7 @@
'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups'
'liblangtag' 'libexttextcat' 'libcmis'
'libtommath' 'libzmf' 'libatomic_ops' 'xmlsec'
-   'libfreehand' 'libstaroffice')
+   'libfreehand' 'libstaroffice' 'libepoxy')
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
'pstoedit: translates PostScript and PDF graphics into 
other vector formats'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-06-03 Thread Andreas Radke via arch-commits
Date: Sunday, June 3, 2018 @ 06:02:24
  Author: andyrtr
Revision: 325570

upgpkg: libreoffice-still 5.4.7-1

upstream update 5.4.7

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-03 06:02:09 UTC (rev 325569)
+++ PKGBUILD2018-06-03 06:02:24 UTC (rev 325570)
@@ -52,6 +52,7 @@
${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2
${_additional_source_url}/pdfium-3064.tar.bz2
${_additional_source_url}/liborcus-0.12.1.tar.gz
+   
${_additional_source_url}/bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip

${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
  # for test suite

${_additional_source_url2}/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar
  # for test suite

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
@@ -74,6 +75,7 @@
Firebird-3.0.0.32483-0.tar.bz2
pdfium-3064.tar.bz2
liborcus-0.12.1.tar.gz
+   bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip
8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar

odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar
1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz
@@ -99,6 +101,7 @@
 '6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860'
 'ded806dc9e2a4005d8c0a6b7fcb232ab36221d72d9ff5b815e8244987299d883'
 '676b1fedd721f64489650f5e76d7f98b750439914d87cae505b8163d08447908'
+'d0312c360efe04dd048b3311fe375ff36f1993b4c2e3cb58c81062990532904a'
 'f2443f27561af52324eee03a1892d9f569adc8db9e7bca55614898bc2a13a770'
 '702413413a5d8076c17fe79c0808dfba145a7260020f6c8627ea529a0cf83769'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
@@ -208,7 +211,7 @@
--with-system-beanshell \
--with-system-cppunit\
--with-system-graphite\
-   --with-system-glm \
+   --without-system-glm \
--with-system-libwpg \
--with-system-libwps \
--with-system-redland\


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-05-18 Thread Andreas Radke via arch-commits
Date: Saturday, May 19, 2018 @ 01:29:47
  Author: andyrtr
Revision: 324584

prepare update

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-18 22:53:59 UTC (rev 324583)
+++ PKGBUILD2018-05-19 01:29:47 UTC (rev 324584)
@@ -11,8 +11,8 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.4.6.2
-pkgver=5.4.6
+_LOver=5.4.7.2
+pkgver=5.4.7
 pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
@@ -53,7 +53,7 @@
${_additional_source_url}/pdfium-3064.tar.bz2
${_additional_source_url}/liborcus-0.12.1.tar.gz

${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
  # for test suite
-   
${_additional_source_url2}/a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar
  # for test suite
+   
${_additional_source_url2}/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar
  # for test suite

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
poppler-0.62.patch
@@ -75,15 +75,15 @@
pdfium-3064.tar.bz2
liborcus-0.12.1.tar.gz
8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
-   
a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar
+   
odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar
1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('919caa5cde10bae8d16b8549664cbf8e410c3975653463976ee2be2004448d45'
+sha256sums=('db81b4d32fb313d96e68019db44aa2d75ede82cb7d495274ec1c7271a1253a69'
 'SKIP'
-'acf7c5dfbc14e92793648b15774e633e291bfa82f47581cbad8f6d9d40136808'
+'74c54f950dfd3272bf6cf768a2495e1e0b2de68e0321f34c58f3f28a2a81de45'
 'SKIP'
-'8c5e0c0465f4cbb2143d994c5bfebe53bc9bb91d3ba6095440144f6cec2ae899'
+'d3b3ec06e3e1fce397abb99caa6bdc279dc7474cbf29ceb0bf6ddea117ae3d16'
 'SKIP'
 'beae2529f759f6b3bf3f4969a19c2e9d6f0c503edcb2de4a61d1428519fcb3b0'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'
@@ -100,7 +100,7 @@
 'ded806dc9e2a4005d8c0a6b7fcb232ab36221d72d9ff5b815e8244987299d883'
 '676b1fedd721f64489650f5e76d7f98b750439914d87cae505b8163d08447908'
 'f2443f27561af52324eee03a1892d9f569adc8db9e7bca55614898bc2a13a770'
-'a0bd3e0186e043223bfb231a888e2bfb06c78ee2e07c2f0eca434236d173cf34'
+'702413413a5d8076c17fe79c0808dfba145a7260020f6c8627ea529a0cf83769'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
 'c463654a73ecfbc242ff109726fb4faecdbfb3d91affafe919b24bea65afb563'
 '344f88086b947d53550ef5492e4d61b1e1594067a34c6c4d8ae801ddd0a2fadb'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-05-17 Thread Andreas Radke via arch-commits
Date: Thursday, May 17, 2018 @ 20:24:58
  Author: andyrtr
Revision: 324492

upgpkg: libreoffice-still 5.4.6-1

upstream update 5.4.7

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-17 19:01:14 UTC (rev 324491)
+++ PKGBUILD2018-05-17 20:24:58 UTC (rev 324492)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.4.6.2
 pkgver=5.4.6
-pkgrel=2
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -25,7 +25,7 @@
'desktop-file-utils' 'shared-mime-info' 'gtk2' 'gst-plugins-base-libs'
'glu' 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant'
'gperf' 'kdelibs' 'gtk3' 'cppunit' 'beanshell' 'clucene'
-   'junit' 'libmythes' 'libwpg'  'java-environment' 'postgresql-libs' 
'libgl'
+   'junit' 'libmythes' 'libwpg'  'java-environment=8' 'postgresql-libs' 
'libgl'
'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops' 'mdds' 'glew'
'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'glm' 'libxinerama' 
'libpagemaker'
'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD poppler-0.64.patch)

2018-04-24 Thread Evangelos Foutras via arch-commits
Date: Wednesday, April 25, 2018 @ 04:10:10
  Author: foutrelis
Revision: 322961

poppler 0.64.0 rebuild

Added:
  libreoffice-still/trunk/poppler-0.64.patch
Modified:
  libreoffice-still/trunk/PKGBUILD

+
 PKGBUILD   |7 -
 poppler-0.64.patch |   65 +++
 2 files changed, 71 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-25 04:05:57 UTC (rev 322960)
+++ PKGBUILD2018-04-25 04:10:10 UTC (rev 322961)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.4.6.2
 pkgver=5.4.6
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -57,6 +57,7 @@

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
poppler-0.62.patch
+   poppler-0.64.patch
libreoffice-still.sh libreoffice-still.csh)
 noextract=(boost_1_63_0.tar.bz2
35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
@@ -103,6 +104,7 @@
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
 'c463654a73ecfbc242ff109726fb4faecdbfb3d91affafe919b24bea65afb563'
 '344f88086b947d53550ef5492e4d61b1e1594067a34c6c4d8ae801ddd0a2fadb'
+'944064e8f8fa18beeb348468348d910d365d8a3e36ddb76076a368bd9bd6f894'
 '76f62957d0058092b11316357d9d716a62b48a53e5277426ffa87429ab5510e4'
 'd24cfcb556ae1db02087c49012bbc4621f9ef7e3465ca832e1410326d260f283')
 
@@ -128,6 +130,9 @@
# upstream fix to build with poppler 0.62 and later
patch -Np0 -i ${srcdir}/poppler-0.62.patch
 
+   # fix build with poppler 0.64
+   patch -Np1 -i ${srcdir}/poppler-0.64.patch
+
# fix not upstreamable pyuno paths - FS#54250
patch -Np1 -i 
${srcdir}/make-pyuno-work-with-system-wide-module-install.diff
 

Added: poppler-0.64.patch
===
--- poppler-0.64.patch  (rev 0)
+++ poppler-0.64.patch  2018-04-25 04:10:10 UTC (rev 322961)
@@ -0,0 +1,65 @@
+From 42cebff14f7d486c20f04863681cc5ef4602f4eb Mon Sep 17 00:00:00 2001
+From: Rene Engelhard 
+Date: Tue, 24 Apr 2018 15:56:23 +0200
+Subject: [PATCH] fix build with poppler 0.64
+
+GooString became const...
+
+Change-Id: Icc95be2e8603a4e22c6a9ac2008986bacd0bfba5
+---
+ sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx | 10 ++
+ sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx |  4 
+ 2 files changed, 14 insertions(+)
+
+diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 
b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
+index 48a735ba54a5..06e4faead383 100644
+--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
 b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
+@@ -432,6 +432,9 @@ int PDFOutDev::parseFont( long long nNewId, GfxFont* 
gfxFont, GfxState* state )
+ FontAttributes aNewFont;
+ int nSize = 0;
+ 
++#if POPPLER_CHECK_VERSION(0, 64, 0)
++const
++#endif
+ GooString* pFamily = gfxFont->getName();
+ if( pFamily )
+ {
+@@ -728,6 +731,9 @@ void PDFOutDev::updateFont(GfxState *state)
+ FontAttributes aFont;
+ int nEmbedSize=0;
+ 
++#if POPPLER_CHECK_VERSION(0, 64, 0)
++const
++#endif
+ Ref* pID = gfxFont->getID();
+ // TODO(Q3): Portability problem
+ long long fontID = static_cast(pID->gen) << 32 | 
static_cast(pID->num);
+@@ -918,7 +924,11 @@ void PDFOutDev::drawChar(GfxState *state, double x, 
double y,
+ printf( "\n" );
+ }
+ 
++#if POPPLER_CHECK_VERSION(0, 64, 0)
++void PDFOutDev::drawString(GfxState*, const GooString* /*s*/)
++#else
+ void PDFOutDev::drawString(GfxState*, GooString* /*s*/)
++#endif
+ {
+ // TODO(F3): NYI
+ }
+diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx 
b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
+index c3367aa6ddf2..7e65f085d288 100644
+--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
 b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
+@@ -224,7 +224,11 @@ namespace pdfi
+   double dx, double dy,
+   double originX, double originY,
+   CharCode code, int nBytes, Unicode *u, int 
uLen) override;
++#if POPPLER_CHECK_VERSION(0, 64, 0)
++virtual void drawString(GfxState *state, const GooString *s) override;
++#else
+ virtual void drawString(GfxState *state, GooString *s) override;
++#endif
+ virtual void endTextObject(GfxState *state) override;
+ 
+ //- image drawing


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-03-22 Thread Andreas Radke via arch-commits
Date: Thursday, March 22, 2018 @ 14:57:00
  Author: andyrtr
Revision: 319820

upgpkg: libreoffice-still 5.4.6-1

upstream update 5.4.6 - poppler rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-22 13:50:01 UTC (rev 319819)
+++ PKGBUILD2018-03-22 14:57:00 UTC (rev 319820)
@@ -11,9 +11,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.4.5.1
-pkgver=5.4.5
-pkgrel=2
+_LOver=5.4.6.2
+pkgver=5.4.6
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -78,11 +78,11 @@
1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('eb151d17d23d08d78acfb45d1f5b4830a565c99bf0f5f386ddcc41ffa481eb98'
+sha256sums=('919caa5cde10bae8d16b8549664cbf8e410c3975653463976ee2be2004448d45'
 'SKIP'
-'d445cb0a1e8e228288a5f0173476694c8bb937a72db92420ea22018c05f0f193'
+'acf7c5dfbc14e92793648b15774e633e291bfa82f47581cbad8f6d9d40136808'
 'SKIP'
-'a4e40763bf615a6a82d33078fa105602d2c85509cf566fbc9124d30687205d55'
+'8c5e0c0465f4cbb2143d994c5bfebe53bc9bb91d3ba6095440144f6cec2ae899'
 'SKIP'
 'beae2529f759f6b3bf3f4969a19c2e9d6f0c503edcb2de4a61d1428519fcb3b0'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD poppler-0.62.patch)

2018-03-20 Thread Andreas Radke via arch-commits
Date: Tuesday, March 20, 2018 @ 13:13:21
  Author: andyrtr
Revision: 319691

upgpkg: libreoffice-still 5.4.5-2

poppler update 0.63.0 rebuild

Added:
  libreoffice-still/trunk/poppler-0.62.patch
Modified:
  libreoffice-still/trunk/PKGBUILD

+
 PKGBUILD   |7 ++-
 poppler-0.62.patch |   29 +
 2 files changed, 35 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-20 12:31:56 UTC (rev 319690)
+++ PKGBUILD2018-03-20 13:13:21 UTC (rev 319691)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.4.5.1
 pkgver=5.4.5
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -56,6 +56,7 @@

${_additional_source_url2}/a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar
  # for test suite

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
+   poppler-0.62.patch
libreoffice-still.sh libreoffice-still.csh)
 noextract=(boost_1_63_0.tar.bz2
35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
@@ -101,6 +102,7 @@
 'a0bd3e0186e043223bfb231a888e2bfb06c78ee2e07c2f0eca434236d173cf34'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
 'c463654a73ecfbc242ff109726fb4faecdbfb3d91affafe919b24bea65afb563'
+'344f88086b947d53550ef5492e4d61b1e1594067a34c6c4d8ae801ddd0a2fadb'
 '76f62957d0058092b11316357d9d716a62b48a53e5277426ffa87429ab5510e4'
 'd24cfcb556ae1db02087c49012bbc4621f9ef7e3465ca832e1410326d260f283')
 
@@ -123,6 +125,9 @@
rm ${srcdir}/ext_sources/185d60944ea767075d27247c3162b3bc-unowinreg.dll
cp -f ${srcdir}/185d60944ea767075d27247c3162b3bc-unowinreg.dll 
${srcdir}/ext_sources
 
+   # upstream fix to build with poppler 0.62 and later
+   patch -Np0 -i ${srcdir}/poppler-0.62.patch
+
# fix not upstreamable pyuno paths - FS#54250
patch -Np1 -i 
${srcdir}/make-pyuno-work-with-system-wide-module-install.diff
 

Added: poppler-0.62.patch
===
--- poppler-0.62.patch  (rev 0)
+++ poppler-0.62.patch  2018-03-20 13:13:21 UTC (rev 319691)
@@ -0,0 +1,29 @@
+--- sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx  2018-01-30 
18:22:07.0 +0100
 sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx.new  2018-03-20 
11:38:16.558290319 +0100
+@@ -32,10 +32,12 @@
+ #pragma warning(push, 1)
+ #endif
+ 
+-// sigh, UTF8.h was removed in poppler-0.21.0 and put back in 0.21.1
++// sigh, UTF8.h was removed in poppler-0.21.0 and put back in 0.21.1, then 
renamed to UnicodeMapFuncs.h in 0.62.0
+ // FIXME: we can't use #if POPPLER_CHECK_VERSION(0, 21, 0) && 
!POPPLER_CHECK_VERSION(0, 21, 1)
+ //because the internal poppler does not provide poppler-version.h and 
the macro always returns 0
+-#if POPPLER_CHECK_VERSION(0, 21, 1)
++#if POPPLER_CHECK_VERSION(0, 62, 0)
++#include 
++#elif POPPLER_CHECK_VERSION(0, 21, 1)
+ #include "UTF8.h"
+ #elif POPPLER_CHECK_VERSION(0, 21, 0)
+ #include "UTF.h"
+@@ -918,7 +920,11 @@
+ );
+ 
+ // silence spurious warning
++#if POPPLER_CHECK_VERSION(0, 62, 0)
++(void)
++#else
+ (void)
++#endif
+ 
+ char buf[9];
+ for( int i=0; i

[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2018-02-08 Thread Andreas Radke via arch-commits
Date: Thursday, February 8, 2018 @ 19:19:49
  Author: andyrtr
Revision: 316463

upgpkg: libreoffice-still 5.4.5-1

upstream update 5.4.5

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-08 19:14:33 UTC (rev 316462)
+++ PKGBUILD2018-02-08 19:19:49 UTC (rev 316463)
@@ -11,8 +11,8 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.4.4.2
-pkgver=5.4.4
+_LOver=5.4.5.1
+pkgver=5.4.5
 pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
@@ -77,11 +77,11 @@
1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('6826751b4cd7076e0c7adfe6eee025cde7253c502ba51ab7072aec6070557e03'
+sha256sums=('eb151d17d23d08d78acfb45d1f5b4830a565c99bf0f5f386ddcc41ffa481eb98'
 'SKIP'
-'280495861fc789868db62c4b19ef361eede9299a93003e0efd58499dcf862509'
+'d445cb0a1e8e228288a5f0173476694c8bb937a72db92420ea22018c05f0f193'
 'SKIP'
-'2be3a5867f720f7298aad3d67b5d11bab2253af5be970a30ca4c7b2d8de902c5'
+'a4e40763bf615a6a82d33078fa105602d2c85509cf566fbc9124d30687205d55'
 'SKIP'
 'beae2529f759f6b3bf3f4969a19c2e9d6f0c503edcb2de4a61d1428519fcb3b0'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-11-12 Thread Evangelos Foutras
Date: Monday, November 13, 2017 @ 01:30:38
  Author: foutrelis
Revision: 309695

icu 60.1 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-13 01:25:47 UTC (rev 309694)
+++ PKGBUILD2017-11-13 01:30:38 UTC (rev 309695)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.3.7.2
 pkgver=5.3.7
-pkgrel=5
+pkgrel=6
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-11-12 Thread Evangelos Foutras
Date: Monday, November 13, 2017 @ 00:08:00
  Author: foutrelis
Revision: 309692

Patch bundled ICU to not include xlocale.h

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-13 00:07:49 UTC (rev 309691)
+++ PKGBUILD2017-11-13 00:08:00 UTC (rev 309692)
@@ -259,12 +259,12 @@
 
touch src.downloaded
 
-   # many tests are broken when crossbuilding i686
-   if [ "$CARCH" = "x86_64" ]; then
-  make build
-   else
-  make build-nocheck
-   fi
+   make build || {
+   # https://ssl.icu-project.org/trac/ticket/13329
+   sed -i 's/xlocale/locale/' \
+   workdir/UnpackedTarball/icu/source/i18n/digitlst.cpp
+   make build
+   }
 
mkdir ${srcdir}/fakeinstall
make DESTDIR=${srcdir}/fakeinstall distro-pack-install


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-11-12 Thread Evangelos Foutras
Date: Sunday, November 12, 2017 @ 22:41:20
  Author: foutrelis
Revision: 309688

Use bundled ICU until build w/ ICU 60 passes tests

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-12 22:41:14 UTC (rev 309687)
+++ PKGBUILD2017-11-12 22:41:20 UTC (rev 309688)
@@ -61,6 +61,7 @@

${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip

${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
${_additional_source_url}/libfreehand-0.1.1.tar.bz2
+   
${_additional_source_url}/1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz
${_additional_source_url}/libstaroffice-0.0.2.tar.bz2
${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2

${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
  # for test suite
@@ -96,7 +97,7 @@
Firebird-3.0.0.32483-0.tar.bz2
8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar

a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar
-   976734806026a4ef8bdd17937c8898b9-icu4c-57_1-src.tgz
+   1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
 sha256sums=('c3d7ceecdf4d97dfd2ed748c4479152a1c9b8c879587a63a4f403209aed6ee7c'
@@ -129,6 +130,7 @@
 '1b5b24f7bc543c0362b667692f78db8bab4ed6dafc6172f104d0bd3757d8a133'
 '233f66e8d25c5dd971716d4200203a612a407649686ef3b52075d04b4c9df0dd'
 '45dab0e5d632eb51eeb00847972ca03835d6791149e9e714f093a9df2b445877'
+'0eb46ba3746a9c2092c8ad347a29b1a1b4941144772d13a88667a7b11ea30309'
 'f06eb29d13357f1aa1944de0be1162de05d9f9333b5f54e9bf762415029a8899'
 '6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860'
 'f2443f27561af52324eee03a1892d9f569adc8db9e7bca55614898bc2a13a770'
@@ -243,7 +245,7 @@
--with-jdk-home="/usr/lib/jvm/default" \
--with-ant-home="/usr/share/apache-ant"\
--without-system-boost\
-   --with-system-icu \
+   --without-system-icu \
--with-system-cairo \
--with-system-libs \
--with-system-mythes \
@@ -305,7 +307,7 @@
pkgdesc="LibreOffice maintenance branch"
depends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.6' 'libwpd>=0.9.2' 
'libwps'
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 
'dbus-glib'
-   'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 
'graphite' 'icu' 
+   'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 
'graphite' #'icu'
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 
'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'glu' 'libpagemaker'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-11-09 Thread Andreas Radke
Date: Thursday, November 9, 2017 @ 21:06:47
  Author: andyrtr
Revision: 309328

drop duplicate clucene makedep; FS#56084

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-09 21:06:03 UTC (rev 309327)
+++ PKGBUILD2017-11-09 21:06:47 UTC (rev 309328)
@@ -21,7 +21,7 @@
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu'
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
-   'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 'hicolor-icon-theme'
+   'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'gtk2' 'gst-plugins-base-libs'
'glu' 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant'
'gperf' 'kdelibs' 'gtk3' 'cppunit' 'beanshell' 'clucene'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-11-09 Thread Felix Yan
Date: Thursday, November 9, 2017 @ 12:27:38
  Author: felixonmars
Revision: 309085

poppler 0.61.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-09 10:15:25 UTC (rev 309084)
+++ PKGBUILD2017-11-09 12:27:38 UTC (rev 309085)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.3.7.2
 pkgver=5.3.7
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-11-02 Thread Andreas Radke
Date: Friday, November 3, 2017 @ 03:58:23
  Author: andyrtr
Revision: 308878

upgpkg: libreoffice-still 5.3.7-4

upstream update 5.3.7

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-02 20:14:51 UTC (rev 308877)
+++ PKGBUILD2017-11-03 03:58:23 UTC (rev 308878)
@@ -11,8 +11,8 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.3.6.1
-pkgver=5.3.6
+_LOver=5.3.7.2
+pkgver=5.3.7
 pkgrel=4
 arch=('i686' 'x86_64')
 license=('LGPL3')
@@ -99,11 +99,11 @@
976734806026a4ef8bdd17937c8898b9-icu4c-57_1-src.tgz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('ffaac1c443b218c75dc1188072b35c8f5954a8873212f56e048e957d323c6a08'
+sha256sums=('c3d7ceecdf4d97dfd2ed748c4479152a1c9b8c879587a63a4f403209aed6ee7c'
 'SKIP'
-'254d9d8a5614e1a85aed3c90c8f9e48a4cfc70e8d52c1d3bee96344f04a5d479'
+'f65e68322c50c52382093153ef0753852dde97962e63c1426256a05ce007ae2c'
 'SKIP'
-'91bc98634c6f22c03328da02becb426aaae6bfa526fa49e0692dfb79c7606e57'
+'8d699ac0369cbf2ca975f0341202ff7ea637bf18a729bd77fc440452d8e6dab8'
 'SKIP'
 '686a989ac2488f79a97b9479efb9f2abae035b5ed4d8226de6857933fd3b'
 '41d463d16c9894cd3317098d027c038039c6d896b9cbb9bad9c4e29959e10e9f'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-10-05 Thread Evangelos Foutras
Date: Thursday, October 5, 2017 @ 21:09:40
  Author: foutrelis
Revision: 306867

poppler 0.60.1 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-05 20:51:04 UTC (rev 306866)
+++ PKGBUILD2017-10-05 21:09:40 UTC (rev 306867)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.3.6.1
 pkgver=5.3.6
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-10-04 Thread Evangelos Foutras
Date: Wednesday, October 4, 2017 @ 22:46:38
  Author: foutrelis
Revision: 306756

poppler 0.60.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-04 21:41:16 UTC (rev 306755)
+++ PKGBUILD2017-10-04 22:46:38 UTC (rev 306756)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.3.6.1
 pkgver=5.3.6
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-09-14 Thread Andreas Radke
Date: Thursday, September 14, 2017 @ 19:05:20
  Author: andyrtr
Revision: 305562

upgpkg: libreoffice-still 5.3.6-2

poppler rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-14 17:23:29 UTC (rev 305561)
+++ PKGBUILD2017-09-14 19:05:20 UTC (rev 305562)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.3.6.1
 pkgver=5.3.6
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-08-31 Thread Andreas Radke
Date: Thursday, August 31, 2017 @ 20:23:20
  Author: andyrtr
Revision: 304414

upstream update 5.3.6

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-31 20:19:09 UTC (rev 304413)
+++ PKGBUILD2017-08-31 20:23:20 UTC (rev 304414)
@@ -11,8 +11,8 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.3.5.2
-pkgver=5.3.5
+_LOver=5.3.6.1
+pkgver=5.3.6
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
@@ -99,11 +99,11 @@
976734806026a4ef8bdd17937c8898b9-icu4c-57_1-src.tgz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('a5ef8e55d0985f0adb51943917aedf8a682cc3b37c61e69def1555b8d2aa76ea'
+sha256sums=('ffaac1c443b218c75dc1188072b35c8f5954a8873212f56e048e957d323c6a08'
 'SKIP'
-'8241338514f28bf626e1a4a73ee2b2749bafc4f5321e0ccae43dafd983c86f53'
+'254d9d8a5614e1a85aed3c90c8f9e48a4cfc70e8d52c1d3bee96344f04a5d479'
 'SKIP'
-'06ece601a79bf14a2ad14a445548aa926bc56976b60ad925100bd23652d9e910'
+'91bc98634c6f22c03328da02becb426aaae6bfa526fa49e0692dfb79c7606e57'
 'SKIP'
 '686a989ac2488f79a97b9479efb9f2abae035b5ed4d8226de6857933fd3b'
 '41d463d16c9894cd3317098d027c038039c6d896b9cbb9bad9c4e29959e10e9f'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-08-03 Thread Evangelos Foutras
Date: Thursday, August 3, 2017 @ 20:12:06
  Author: foutrelis
Revision: 301579

GLEW 2.1.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-03 17:55:01 UTC (rev 301578)
+++ PKGBUILD2017-08-03 20:12:06 UTC (rev 301579)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.3.5.2
 pkgver=5.3.5
-pkgrel=0
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-08-03 Thread Evangelos Foutras
Date: Thursday, August 3, 2017 @ 17:02:57
  Author: foutrelis
Revision: 301574

Set pkgrel=0 for upcoming GLEW rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-03 16:52:21 UTC (rev 301573)
+++ PKGBUILD2017-08-03 17:02:57 UTC (rev 301574)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.3.5.2
 pkgver=5.3.5
-pkgrel=1
+pkgrel=0
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-08-03 Thread Andreas Radke
Date: Thursday, August 3, 2017 @ 16:52:21
  Author: andyrtr
Revision: 301573

prepare next update

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-03 16:49:55 UTC (rev 301572)
+++ PKGBUILD2017-08-03 16:52:21 UTC (rev 301573)
@@ -11,9 +11,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.3.4.2
-pkgver=5.3.4
-pkgrel=2
+_LOver=5.3.5.2
+pkgver=5.3.5
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -99,11 +99,11 @@
976734806026a4ef8bdd17937c8898b9-icu4c-57_1-src.tgz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('1d75393fd8b02b1e2e2e001bc0262359c7452e29a0fff35cb152717246f02379'
+sha256sums=('a5ef8e55d0985f0adb51943917aedf8a682cc3b37c61e69def1555b8d2aa76ea'
 'SKIP'
-'ab8600dc99e09d90fec83bcc505c42556156730f78973cecd74fa377fe8de91a'
+'8241338514f28bf626e1a4a73ee2b2749bafc4f5321e0ccae43dafd983c86f53'
 'SKIP'
-'0f5acb29e93ab8a75a216e82c87192aabcf29fe8bada8e968cc7b255fcdf81af'
+'06ece601a79bf14a2ad14a445548aa926bc56976b60ad925100bd23652d9e910'
 'SKIP'
 '686a989ac2488f79a97b9479efb9f2abae035b5ed4d8226de6857933fd3b'
 '41d463d16c9894cd3317098d027c038039c6d896b9cbb9bad9c4e29959e10e9f'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-08-01 Thread Felix Yan
Date: Tuesday, August 1, 2017 @ 21:31:35
  Author: felixonmars
Revision: 301512

poppler 0.57.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-01 21:20:12 UTC (rev 301511)
+++ PKGBUILD2017-08-01 21:31:35 UTC (rev 301512)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.3.4.2
 pkgver=5.3.4
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-07-14 Thread Andreas Radke
Date: Saturday, July 15, 2017 @ 05:03:42
  Author: andyrtr
Revision: 300582

disable build of tests when crossbuilding i686

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-15 04:52:27 UTC (rev 300581)
+++ PKGBUILD2017-07-15 05:03:42 UTC (rev 300582)
@@ -250,8 +250,14 @@
--enable-hardlink-deliver
 
touch src.downloaded
-   make build
 
+   # many tests are broken when crossbuilding i686
+   if [ "$CARCH" = "x86_64" ]; then
+  make build
+   else
+  make build-nocheck
+   fi
+
mkdir ${srcdir}/fakeinstall
make DESTDIR=${srcdir}/fakeinstall distro-pack-install
 }


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-05-10 Thread Andreas Radke
Date: Wednesday, May 10, 2017 @ 18:18:39
  Author: andyrtr
Revision: 295552

upgpkg: libreoffice-still 5.2.7-1

upstream update 5.2.7

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-10 17:47:06 UTC (rev 295551)
+++ PKGBUILD2017-05-10 18:18:39 UTC (rev 295552)
@@ -11,9 +11,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.2.6.2
-pkgver=5.2.6
-pkgrel=3
+_LOver=5.2.7.2
+pkgver=5.2.7
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -93,11 +93,11 @@
liborcus-0.11.2.tar.gz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('3d49e339631114652820b890859eef85601d1aeda2acb1309f0de24009f53570'
+sha256sums=('106154a72a329605166a49bfa31c6d1cc03133d600ad0ef340b45e4e2a92891d'
 'SKIP'
-'c0cd648d9994814925083d1a891b63b5e5233718eb8f8782810bb602c0fdb88b'
+'f7d35c460da96ed2d52cf97baef159382b38e5ce4579c34e65480ff2911cac4b'
 'SKIP'
-'73c30252819de55abd0a20dedcf392d5d88d0b2ddeb8c4a47758fbace770'
+'89744dc0f0924a2f9c96d8d3e4ae44e7c3770c30d8d4ba35a7ae5ac5b28bf7aa'
 'SKIP'
 '686a989ac2488f79a97b9479efb9f2abae035b5ed4d8226de6857933fd3b'
 '3221593ca50f362b546a0888a1431ad24be1470f96b2469c0e0df5e1c55e7305'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-04-27 Thread Andreas Radke
Date: Thursday, April 27, 2017 @ 16:25:57
  Author: andyrtr
Revision: 294916

drop libmspack optional dependecy - FontOO is dead for a long time

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |1 -
 1 file changed, 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-27 16:23:52 UTC (rev 294915)
+++ PKGBUILD2017-04-27 16:25:57 UTC (rev 294916)
@@ -304,7 +304,6 @@
'pstoedit: translates PostScript and PDF graphics into 
other vector formats'
'libmythes:for use in thesaurus'
'beanshell:   interactive java -- good for 
prototyping/macros'
-   'libmspack:library for Microsoft compression formats 
for use in FontOOo'
'libwpg:   library for importing and converting 
WordPerfect Graphics format'
'sane: for scanner access'
'unixodbc: adds ODBC database support'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-04-27 Thread Felix Yan
Date: Thursday, April 27, 2017 @ 09:54:26
  Author: felixonmars
Revision: 294903

libwebp 0.6.0 / poppler 0.54.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-27 09:18:01 UTC (rev 294902)
+++ PKGBUILD2017-04-27 09:54:26 UTC (rev 294903)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.2.6.2
 pkgver=5.2.6
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-04-26 Thread Evangelos Foutras
Date: Wednesday, April 26, 2017 @ 13:48:48
  Author: foutrelis
Revision: 294756

icu 59.1 / hunspell 1.6.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-26 13:45:59 UTC (rev 294755)
+++ PKGBUILD2017-04-26 13:48:48 UTC (rev 294756)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.2.6.2
 pkgver=5.2.6
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-03-09 Thread Andreas Radke
Date: Thursday, March 9, 2017 @ 16:53:11
  Author: andyrtr
Revision: 290317

upgpkg: libreoffice-still 5.2.6-1

upstream update 5.2.6

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 16:53:07 UTC (rev 290316)
+++ PKGBUILD2017-03-09 16:53:11 UTC (rev 290317)
@@ -11,9 +11,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.2.5.1
-pkgver=5.2.5
-pkgrel=2
+_LOver=5.2.6.2
+pkgver=5.2.6
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -93,11 +93,11 @@
liborcus-0.11.2.tar.gz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('9756a322a497aa83d096fa0ac5541622d9a8f5038ce9c0ded48199566ab0d300'
+sha256sums=('3d49e339631114652820b890859eef85601d1aeda2acb1309f0de24009f53570'
 'SKIP'
-'11199cca59748dc9cade4f5cbb0478f600d3c54114b09819eac54338dbbd49b4'
+'c0cd648d9994814925083d1a891b63b5e5233718eb8f8782810bb602c0fdb88b'
 'SKIP'
-'abf6e962aa2042bab4f2e6c3ba9eddbda64a56aa3251bde3b227cfffed926353'
+'73c30252819de55abd0a20dedcf392d5d88d0b2ddeb8c4a47758fbace770'
 'SKIP'
 '686a989ac2488f79a97b9479efb9f2abae035b5ed4d8226de6857933fd3b'
 '3221593ca50f362b546a0888a1431ad24be1470f96b2469c0e0df5e1c55e7305'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2017-02-07 Thread Andreas Radke
Date: Tuesday, February 7, 2017 @ 21:50:03
  Author: andyrtr
Revision: 288220

prepare build against updated internal liborcus; add liblibreofficekitgtk.so 
symlink - FS#51887

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 12 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-02-07 21:43:01 UTC (rev 288219)
+++ PKGBUILD2017-02-07 21:50:03 UTC (rev 288220)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.2.5.1
 pkgver=5.2.5
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -28,7 +28,7 @@
'junit' 'libmythes' 'libwpg'  'java-environment' 'postgresql-libs' 
'libgl'
'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops' 'mdds' 'glew'
'apr' 'serf' 'ttf-liberation' 'glm' 'libxinerama' 'libpagemaker'
-   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liborcus' 'liblangtag'
+   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag'
'libexttextcat' 'libfbclient' 'libcmis' 'gobject-introspection')
 
 _mirror="https://download.documentfoundation.org/libreoffice/src/${pkgver};
@@ -61,6 +61,7 @@

${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
${_additional_source_url}/libfreehand-0.1.1.tar.bz2

${_additional_source_url}/976734806026a4ef8bdd17937c8898b9-icu4c-57_1-src.tgz
+   ${_additional_source_url}/liborcus-0.11.2.tar.gz

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
libreoffice-still.sh libreoffice-still.csh)
@@ -89,6 +90,7 @@
ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
libfreehand-0.1.1.tar.bz2
976734806026a4ef8bdd17937c8898b9-icu4c-57_1-src.tgz
+   liborcus-0.11.2.tar.gz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
 sha256sums=('9756a322a497aa83d096fa0ac5541622d9a8f5038ce9c0ded48199566ab0d300'
@@ -122,6 +124,7 @@
 '233f66e8d25c5dd971716d4200203a612a407649686ef3b52075d04b4c9df0dd'
 '45dab0e5d632eb51eeb00847972ca03835d6791149e9e714f093a9df2b445877'
 'ff8c67cb65949b1e7808f2359f2b80f722697048e90e7cfc382ec1fe229e9581'
+'10afc617fd7600fa02bd4467d2e3c7bd058f84e4d672d558e1db90e82dafd256'
 'eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6'
 'ad028513c29691b3ec3a35de21af2f224b48015afe0fbcc6fb834fdf7f613165'
 '76f62957d0058092b11316357d9d716a62b48a53e5277426ffa87429ab5510e4'
@@ -203,7 +206,7 @@
--with-system-libcmis \
--with-system-libmspub \
--with-system-libexttextcat \
-   --with-system-orcus \
+   --without-system-orcus \
--with-system-liblangtag \
--without-system-jfreereport \
--without-system-apache-commons \
@@ -295,7 +298,7 @@
'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 
'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'glu' 'libpagemaker'
'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups'
-   'liborcus' 'liblangtag' 'libexttextcat' 'libfbclient' 'libcmis')
+   'liblangtag' 'libexttextcat' 'libfbclient' 'libcmis')
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
'pstoedit: translates PostScript and PDF graphics into 
other vector formats'
@@ -346,6 +349,11 @@
ln -svf /usr/lib/libreoffice/program/unohelper.py \
${pkgdir}/usr/lib/python3.6/site-packages/unohelper.py
 
+   # add a symlink required for gnome-documents; FS#51887
+   # 
https://lists.freedesktop.org/archives/libreoffice/2016-March/073787.html
+   ln -svf /usr/lib/libreoffice/program/liblibreofficekitgtk.so \
+   ${pkgdir}/usr/lib/liblibreofficekitgtk.so
+
# cleanup
rm -rf ${pkgdir}/usr/share/libreoffice/sdk
 


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-12-26 Thread Bartłomiej Piotrowski
Date: Monday, December 26, 2016 @ 15:52:24
  Author: bpiotrowski
Revision: 284817

Python 3.6 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-26 14:17:26 UTC (rev 284816)
+++ PKGBUILD2016-12-26 15:52:24 UTC (rev 284817)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.1.6.2
 pkgver=5.1.6
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-12-26 Thread Bartłomiej Piotrowski
Date: Monday, December 26, 2016 @ 12:14:14
  Author: bpiotrowski
Revision: 284813

dev-www is HTTP only

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-26 12:13:50 UTC (rev 284812)
+++ PKGBUILD2016-12-26 12:14:14 UTC (rev 284813)
@@ -33,8 +33,8 @@
 
 _mirror="https://download.documentfoundation.org/libreoffice/src/${pkgver};
 #_mirror="https://dev-builds.libreoffice.org/pre-releases/src;
-_additional_source_url="https://dev-www.libreoffice.org/src;
-_additional_source_url2="https://dev-www.libreoffice.org/extern;
+_additional_source_url="http://dev-www.libreoffice.org/src;
+_additional_source_url2="http://dev-www.libreoffice.org/extern;
 source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
${_additional_source_url}/boost_1_59_0.tar.bz2

${_additional_source_url}/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-12-26 Thread Antonio Rojas
Date: Monday, December 26, 2016 @ 10:49:42
  Author: arojas
Revision: 284809

Python 3.6

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-26 10:48:44 UTC (rev 284808)
+++ PKGBUILD2016-12-26 10:49:42 UTC (rev 284809)
@@ -17,7 +17,7 @@
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
-makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.5' 'libwpd>=0.9.2' 
'libwps'
+makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.6' 'libwpd>=0.9.2' 
'libwps'
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' #'icu'
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
@@ -326,7 +326,7 @@
 
 package_libreoffice-still() {
pkgdesc="LibreOffice maintenance branch"
-   depends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.5' 'libwpd>=0.9.2' 
'libwps'
+   depends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.6' 'libwpd>=0.9.2' 
'libwps'
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 
'dbus-glib'
'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 
'graphite' #'icu' 
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
@@ -384,11 +384,11 @@
rm -rf ${pkgdir}/etc/bash_completion.d
 
# make pyuno find its modules
-   install -dm755 ${pkgdir}/usr/lib/python3.5/site-packages
+   install -dm755 ${pkgdir}/usr/lib/python3.6/site-packages
ln -svf /usr/lib/libreoffice/program/uno.py \
-   ${pkgdir}/usr/lib/python3.5/site-packages/uno.py
+   ${pkgdir}/usr/lib/python3.6/site-packages/uno.py
ln -svf /usr/lib/libreoffice/program/unohelper.py \
-   ${pkgdir}/usr/lib/python3.5/site-packages/unohelper.py
+   ${pkgdir}/usr/lib/python3.6/site-packages/unohelper.py
 
# cleanup
rm -rf ${pkgdir}/usr/share/libreoffice/sdk


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-12-16 Thread Evangelos Foutras
Date: Friday, December 16, 2016 @ 20:56:23
  Author: foutrelis
Revision: 283856

poppler 0.50.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-16 18:03:44 UTC (rev 283855)
+++ PKGBUILD2016-12-16 20:56:23 UTC (rev 283856)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.1.6.2
 pkgver=5.1.6
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-12-02 Thread Andreas Radke
Date: Friday, December 2, 2016 @ 08:23:58
  Author: andyrtr
Revision: 282512

use https/gpg signatures

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-02 08:23:47 UTC (rev 282511)
+++ PKGBUILD2016-12-02 08:23:58 UTC (rev 282512)
@@ -31,10 +31,10 @@
'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liborcus' 'liblangtag'
'libexttextcat' 'libfbclient' 'libcmis')
 
-_mirror="http://download.documentfoundation.org/libreoffice/src/${pkgver};
-#_mirror="http://dev-builds.libreoffice.org/pre-releases/src;
-_additional_source_url="http://dev-www.libreoffice.org/src;
-_additional_source_url2="http://dev-www.libreoffice.org/extern;
+_mirror="https://download.documentfoundation.org/libreoffice/src/${pkgver};
+#_mirror="https://dev-builds.libreoffice.org/pre-releases/src;
+_additional_source_url="https://dev-www.libreoffice.org/src;
+_additional_source_url2="https://dev-www.libreoffice.org/extern;
 source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
${_additional_source_url}/boost_1_59_0.tar.bz2

${_additional_source_url}/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-11-28 Thread Felix Yan
Date: Monday, November 28, 2016 @ 17:54:37
  Author: felixonmars
Revision: 282186

icu 58.1 / poppler 0.49.0 / hunspell 1.5.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-28 17:33:07 UTC (rev 282185)
+++ PKGBUILD2016-11-28 17:54:37 UTC (rev 282186)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.1.6.2
 pkgver=5.1.6
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-11-28 Thread Evangelos Foutras
Date: Monday, November 28, 2016 @ 11:35:13
  Author: foutrelis
Revision: 282153

icu 58.1 / poppler 0.49.0 / hunspell 1.5.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-28 06:57:07 UTC (rev 282152)
+++ PKGBUILD2016-11-28 11:35:13 UTC (rev 282153)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.1.6.2
 pkgver=5.1.6
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-11-27 Thread Andreas Radke
Date: Sunday, November 27, 2016 @ 19:09:39
  Author: andyrtr
Revision: 282138

fallback to internal icu, current 5.1 branch isn't ready for icu58

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   95 +++--
 1 file changed, 49 insertions(+), 46 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-27 19:00:53 UTC (rev 282137)
+++ PKGBUILD2016-11-27 19:09:39 UTC (rev 282138)
@@ -19,7 +19,7 @@
 url="http://www.libreoffice.org/;
 makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.5' 'libwpd>=0.9.2' 
'libwps'
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
-   'libxslt' 'redland' 'icu' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite'
+   'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' #'icu'
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'gtk2' 'gst-plugins-base-libs'
@@ -26,7 +26,7 @@
'glu' 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant'
'gperf' 'kdelibs' 'gtk3' 'cppunit' 'beanshell' 'vigra' 'clucene'
'junit' 'libmythes' 'libwpg'  'mesa' 'java-environment' 
'postgresql-libs'
-   'bluez-libs' 'harfbuzz-icu' 'gdb' 'doxygen'  'libatomic_ops' 'mdds' 
'glew'
+   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops' 'mdds' 'glew'
'apr' 'serf' 'ttf-liberation' 'glm' 'libxinerama' 'libpagemaker'
'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liborcus' 'liblangtag'
'libexttextcat' 'libfbclient' 'libcmis')
@@ -63,6 +63,7 @@

${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip

${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
${_additional_source_url}/libfreehand-0.1.1.tar.bz2
+   
${_additional_source_url}/c4a2d71ff56aec5ebfab2a3f059be99d-icu4c-56_1-src.tgz

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
libreoffice-still.sh libreoffice-still.csh
@@ -98,50 +99,52 @@
d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
libfreehand-0.1.1.tar.bz2
+   c4a2d71ff56aec5ebfab2a3f059be99d-icu4c-56_1-src.tgz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-md5sums=('baa654f768fcf680bc3eeedb6fc092f3'
- 'SKIP'
- 'fb7d3c1831800b04d06ae3be4929befd'
- 'SKIP'
- '4ad32a7425f2500522b59e9afb736675'
- 'SKIP'
- '6aa9a5c6a4ca1016edd0ed1178e3cb87'
- '1f24ab1d39f4a51faf22244c94a6203f'
- '35c94d2df8893241173de1d16b6034c0'
- '798b2ffdc8bcfe7bca2cf92b62caf685'
- 'a7983f859eafb2677d7ff386a023bc40'
- 'ce977548f1cbf46918e93cd38ac35163'
- '8ab049135b2d15313da5d9f0656894a1'
- '2c9b0f83ed5890af02c0df1c1776f39b'
- '048751f3271906db5126ab76870444c4'
- 'eeb2c7ddf0d302fba4bfc6e97eac9624'
- '39bb3fcea1514f1369fcfc87542390fd'
- '3404ab6b1792ae5f16bbd603bd1e1d03'
- '97b2d4dba862397f446b217e2b623e71'
- 'f94d9870737518e3b597f9265f4e9803'
- '8ce2fcd72becf06c41f7201d15373ed9'
- '3bdf40c0d199af31923e900d082ca2dd'
- 'ace6ab49184e329db254e454a010f56d'
- 'db60e4fde8dd6d6807523deb71ee34dc'
- '0168229624cfac409e766913506961a8'
- 'bf5986dbfa1c9a0f26cf1b00ed369484'
- '4b87018f7fff1d054939d19920b751a0'
- '4ca8a6ef0afeefc864e9ef21b9f14bd6'
- '17410483b5b5f267aa18b7e00b65e6e0'
- 'd63a9f47ab048f5009d90693d6aa6424'
- 'd8bd5eed178db6e2b18eeed243f85aa8'
- 'ba2930200c9f019c2d93a8c88c651a0f'
- '8cf70c5dc4d24d2dc4a107f509d2d6d7'
- '185d60944ea767075d27247c3162b3bc'
- 'dcb5ad3e5f7139227677ea064b075422'
- '40680393752d98bcb590f1f62efa61a9'
- 'f82232620f3e27d1532c49af4b36ce9a'
- '3f526b966a672d1237cfcbadae0e3f95'
- 'ac71e21ecc0976b2ea6e233854963d4b'
- '58616b84405f0a610a713bbd060d3214'
- '6752d22fc5bcbdbef0640c6aca163e50'
- 'd386f3a0b484cd3929329a294159f5bc')
+sha256sums=('04a01b7f28beb9b090ffb7d409a30ab5fa1635c2364be2dd4b080d76cd591d94'
+'SKIP'
+'afe486145733405eecaafbad95db2f3b303b528ef21fa8548ad471ac09ff0dab'
+'SKIP'
+'229b05c712defeb481fb532db07f77aaee9c250093fc4f4fd8b0c7da986e083d'
+'SKIP'
+'727a932322d94287b62abb1bd2d41723eec4356a7728909e38adb65ca25241ca'
+'390a5085651828b8fe12aa978b200f59b9155eedbb91a4be89bf7cf39eefdd4a'
+

[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-10-28 Thread Andreas Radke
Date: Friday, October 28, 2016 @ 14:11:06
  Author: andyrtr
Revision: 279387

upgpkg: libreoffice-still 5.1.6-1

upstream update 5.1.6

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-28 12:26:45 UTC (rev 279386)
+++ PKGBUILD2016-10-28 14:11:06 UTC (rev 279387)
@@ -11,9 +11,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.1.5.2
-pkgver=5.1.5
-pkgrel=3
+_LOver=5.1.6.2
+pkgver=5.1.6
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -100,11 +100,11 @@
libfreehand-0.1.1.tar.bz2
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-md5sums=('7103457a9d55544d8ce93e009f1b2ca1'
+md5sums=('baa654f768fcf680bc3eeedb6fc092f3'
  'SKIP'
- '05c2471dcbd424515ae9b0dd605e7c8c'
+ 'fb7d3c1831800b04d06ae3be4929befd'
  'SKIP'
- '7670bbe6b922add9fe82f57ac4ca506e'
+ '4ad32a7425f2500522b59e9afb736675'
  'SKIP'
  '6aa9a5c6a4ca1016edd0ed1178e3cb87'
  '1f24ab1d39f4a51faf22244c94a6203f'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-08-23 Thread Andreas Radke
Date: Tuesday, August 23, 2016 @ 20:05:12
  Author: andyrtr
Revision: 274617

upgpkg: libreoffice-still 5.1.5-3

disable dconf - FS#50289

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-23 17:29:51 UTC (rev 274616)
+++ PKGBUILD2016-08-23 20:05:12 UTC (rev 274617)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.1.5.2
 pkgver=5.1.5
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -225,6 +225,7 @@
--enable-scripting-beanshell \
--enable-scripting-javascript \
--disable-telepathy \
+   --disable-dconf \
--enable-ext-wiki-publisher \
--enable-ext-nlpsolver \
--without-fonts\


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-08-21 Thread Andreas Radke
Date: Sunday, August 21, 2016 @ 11:36:11
  Author: andyrtr
Revision: 274554

back to beanshell; beanshell2 is dead

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-21 11:35:44 UTC (rev 274553)
+++ PKGBUILD2016-08-21 11:36:11 UTC (rev 274554)
@@ -24,7 +24,7 @@
'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'gtk2' 'gst-plugins-base-libs'
'glu' 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant'
-   'gperf' 'kdelibs' 'gtk3' 'cppunit' 'beanshell2' 'vigra' 'clucene'
+   'gperf' 'kdelibs' 'gtk3' 'cppunit' 'beanshell' 'vigra' 'clucene'
'junit' 'libmythes' 'libwpg'  'mesa' 'java-environment' 
'postgresql-libs'
'bluez-libs' 'harfbuzz-icu' 'gdb' 'doxygen'  'libatomic_ops' 'mdds' 
'glew'
'apr' 'serf' 'ttf-liberation' 'glm' 'libxinerama' 'libpagemaker'
@@ -334,7 +334,7 @@
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
'pstoedit: translates PostScript and PDF graphics into 
other vector formats'
'libmythes:for use in thesaurus'
-   'beanshell2:   interactive java -- good for 
prototyping/macros'
+   'beanshell:   interactive java -- good for 
prototyping/macros'
'vigra:C++ computer vision library, usable in 
Basebmp'
'libmspack:library for Microsoft compression formats 
for use in FontOOo'
'libwpg:   library for importing and converting 
WordPerfect Graphics format'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-08-03 Thread Andreas Radke
Date: Wednesday, August 3, 2016 @ 19:07:21
  Author: andyrtr
Revision: 272980

upgpkg: libreoffice-still 5.1.5-2

poppler rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-03 17:38:17 UTC (rev 272979)
+++ PKGBUILD2016-08-03 19:07:21 UTC (rev 272980)
@@ -13,7 +13,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.1.5.2
 pkgver=5.1.5
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD buildfix.diff)

2016-07-31 Thread Andreas Radke
Date: Monday, August 1, 2016 @ 03:38:31
  Author: andyrtr
Revision: 272766

fix build with new curl

Added:
  libreoffice-still/trunk/buildfix.diff
Modified:
  libreoffice-still/trunk/PKGBUILD

---+
 PKGBUILD  |   11 ---
 buildfix.diff |   27 +++
 2 files changed, 35 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-31 22:44:11 UTC (rev 272765)
+++ PKGBUILD2016-08-01 03:38:31 UTC (rev 272766)
@@ -6,7 +6,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.0.6.3
 pkgver=5.0.6
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -65,7 +65,8 @@
libreoffice-still.sh libreoffice-still.csh
gcc6_buildfix.diff
fix_gcc_build_error.diff
-   hunspell14_buildfix.diff)
+   hunspell14_buildfix.diff
+   buildfix.diff)
 noextract=(d6eef4b4cacb2183f2bf265a5a03a354-boost_1_55_0.tar.bz2
1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
@@ -144,7 +145,8 @@
  'f82232620f3e27d1532c49af4b36ce9a'
  '6752d22fc5bcbdbef0640c6aca163e50'
  '60a6a9bf86bbcefa8c712dc8ba8ab73f'
- '2afac5aa93f7bcd85058348147c962e4')
+ '2afac5aa93f7bcd85058348147c962e4'
+ 'd386f3a0b484cd3929329a294159f5bc')
 
 prepare() {
cd libreoffice-$_LOver
@@ -155,6 +157,9 @@
ln -s ${srcdir}/$source .
done
popd
+   
+   # 
https://cgit.freedesktop.org/libreoffice/core/commit/?h=libreoffice-5-2=e13db0f16c4ac5a243587e881d7b18979d07f478
+   patch -Np1 -i ../buildfix.diff
 
# unowinreg.dll must be a file not a symlink or the result will become 
a broken symlink
# /usr/share/libreoffice/sdk/classes/win/unowinreg.dll -> 
/build/libreoffice/src/185d60944ea767075d27247c3162b3bc-unowinreg.dll

Added: buildfix.diff
===
--- buildfix.diff   (rev 0)
+++ buildfix.diff   2016-08-01 03:38:31 UTC (rev 272766)
@@ -0,0 +1,27 @@
+From e13db0f16c4ac5a243587e881d7b18979d07f478 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= 
+Date: Mon, 25 Jul 2016 12:08:35 +0100
+Subject: curl 7.50.0 has CURL as typedef struct Curl_easy
+
+Change-Id: I22e5e2cdf78c38087579071c1b1570a8adc7d3c4
+(cherry picked from commit 0b8e589875ffd84150470832de18ebd79989efc0)
+Reviewed-on: https://gerrit.libreoffice.org/27513
+Reviewed-by: David Tardon 
+Tested-by: Jenkins 
+
+diff --git a/ucb/source/ucp/ftp/ftploaderthread.cxx 
b/ucb/source/ucp/ftp/ftploaderthread.cxx
+index 25bc26d..5d1cfb5 100644
+--- a/ucb/source/ucp/ftp/ftploaderthread.cxx
 b/ucb/source/ucp/ftp/ftploaderthread.cxx
+@@ -77,7 +77,7 @@ FTPLoaderThread::~FTPLoaderThread() {
+ 
+ 
+ CURL* FTPLoaderThread::handle() {
+-CURL* ret = osl_getThreadKeyData(m_threadKey);
++CURL* ret = static_cast(osl_getThreadKeyData(m_threadKey));
+ if(!ret) {
+ ret = curl_easy_init();
+ if (ret != nullptr) {
+-- 
+cgit v0.10.2
+


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-05-06 Thread Andreas Radke
Date: Friday, May 6, 2016 @ 23:14:39
  Author: andyrtr
Revision: 267056

upgpkg: libreoffice-still 5.0.6-1

upstream update 5.0.6

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-06 21:12:21 UTC (rev 267055)
+++ PKGBUILD2016-05-06 21:14:39 UTC (rev 267056)
@@ -4,9 +4,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.0.5.2
-pkgver=5.0.5
-pkgrel=4
+_LOver=5.0.6.3
+pkgver=5.0.6
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -97,11 +97,11 @@
36271d3fa0d9dec1632029b6d7aac925-liblangtag-0.5.1.tar.bz2
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-md5sums=('2a04618e59a4d6b0638a3cb2b896e35e'
+md5sums=('541d92329d433696c478f7669ac976f1'
  'SKIP'
- 'a0f2a73e77e552aeffcb85b8baf7c09a'
+ '902b0fa074a8b60a9598f558e9d687f7'
  'SKIP'
- '9698d9d5948988a8f130d909bb0675ce'
+ '644f33f2bc84fe9ffd8a4c09b41a36fc'
  'SKIP'
  'd6eef4b4cacb2183f2bf265a5a03a354'
  '1f24ab1d39f4a51faf22244c94a6203f'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD libreoffice-still.install)

2016-05-01 Thread Andreas Radke
Date: Sunday, May 1, 2016 @ 13:42:03
  Author: andyrtr
Revision: 266729

upgpkg: libreoffice-still 5.0.5-4

Hooks rebuild (part 1)

Modified:
  libreoffice-still/trunk/PKGBUILD
Deleted:
  libreoffice-still/trunk/libreoffice-still.install

---+
 PKGBUILD  |5 ++---
 libreoffice-still.install |   13 -
 2 files changed, 2 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-01 11:19:47 UTC (rev 266728)
+++ PKGBUILD2016-05-01 11:42:03 UTC (rev 266729)
@@ -6,7 +6,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.0.5.2
 pkgver=5.0.5
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -315,7 +315,7 @@
'libxslt' 'redland' 'icu' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 
'graphite'
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 
'hicolor-icon-theme'
-   'desktop-file-utils' 'shared-mime-info' 'xdg-utils' 'glu' 
'libpagemaker'
+   'desktop-file-utils' 'shared-mime-info' 'glu' 'libpagemaker'
'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups' 'gtk2')
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
@@ -338,7 +338,6 @@
etc/libreoffice/psprint.conf
etc/profile.d/libreoffice-still.sh
etc/profile.d/libreoffice-still.csh)
-   install=$pkgbase.install
provides=('libreoffice' 'libreoffice-en-US')
conflicts=('libreoffice-fresh')
 

Deleted: libreoffice-still.install
===
--- libreoffice-still.install   2016-05-01 11:19:47 UTC (rev 266728)
+++ libreoffice-still.install   2016-05-01 11:42:03 UTC (rev 266729)
@@ -1,13 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor
-  update-desktop-database -q
-  update-mime-database usr/share/mime > /dev/null 2>&1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-04-09 Thread Andreas Radke
Date: Saturday, April 9, 2016 @ 22:07:54
  Author: andyrtr
Revision: 264454

remove duplicate dependency

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-09 20:05:25 UTC (rev 264453)
+++ PKGBUILD2016-04-09 20:07:54 UTC (rev 264454)
@@ -316,7 +316,7 @@
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 
'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'xdg-utils' 'glu' 
'libpagemaker'
-   'gst-plugins-base-libs' 'libxinerama' 'libabw' 'libmwaw' 
'libe-book' 'libcups' 'gtk2')
+   'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups' 'gtk2')
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
'pstoedit: translates PostScript and PDF graphics into 
other vector formats'


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-04-03 Thread Evangelos Foutras
Date: Sunday, April 3, 2016 @ 10:48:05
  Author: foutrelis
Revision: 263818

icu 57.1 / poppler 0.42.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-03 08:48:03 UTC (rev 263817)
+++ PKGBUILD2016-04-03 08:48:05 UTC (rev 263818)
@@ -6,7 +6,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.0.5.2
 pkgver=5.0.5
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-03-27 Thread Andreas Radke
Date: Sunday, March 27, 2016 @ 09:13:25
  Author: andyrtr
Revision: 262802

upgpkg: libreoffice-still 5.0.5-2

vigra update rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-26 23:42:09 UTC (rev 262801)
+++ PKGBUILD2016-03-27 07:13:25 UTC (rev 262802)
@@ -6,7 +6,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=5.0.5.2
 pkgver=5.0.5
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-02-17 Thread Andreas Radke
Date: Wednesday, February 17, 2016 @ 21:01:51
  Author: andyrtr
Revision: 259925

upgpkg: libreoffice-still 5.0.5-1

upstream update 5.0.5

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++-
 1 file changed, 6 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 18:28:11 UTC (rev 259924)
+++ PKGBUILD2016-02-17 20:01:51 UTC (rev 259925)
@@ -4,9 +4,9 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=5.0.4.2
-pkgver=5.0.4
-pkgrel=2
+_LOver=5.0.5.2
+pkgver=5.0.5
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -97,11 +97,11 @@
36271d3fa0d9dec1632029b6d7aac925-liblangtag-0.5.1.tar.bz2
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-md5sums=('0c6381581f93ef7142b00837002755dd'
+md5sums=('2a04618e59a4d6b0638a3cb2b896e35e'
  'SKIP'
- '82f2dcd28e6bfe33e0edb480b9c8f8e4'
+ 'a0f2a73e77e552aeffcb85b8baf7c09a'
  'SKIP'
- '73711d36f4d16b0e2657367c823e1872'
+ '9698d9d5948988a8f130d909bb0675ce'
  'SKIP'
  'd6eef4b4cacb2183f2bf265a5a03a354'
  '1f24ab1d39f4a51faf22244c94a6203f'
@@ -175,9 +175,6 @@
 
# fix build with mdds 1.0
sed -i "s:\[mdds >= 0.12.0\]:\[mdds-1.0 >= 1.0.0\]:" configure.ac
-
-   # fix test with libetonyek 0.1.4+
-   mv writerperfect/qa/unit/data/impress/libetonyek/{fail,pass}/v6.zip
 }
 
 build() {


[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-02-10 Thread Andreas Radke
Date: Wednesday, February 10, 2016 @ 21:46:21
  Author: andyrtr
Revision: 259041

prepare next release; add libreofficekit headers - FS#48066

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |   56 +---
 1 file changed, 29 insertions(+), 27 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-10 18:47:38 UTC (rev 259040)
+++ PKGBUILD2016-02-10 20:46:21 UTC (rev 259041)
@@ -4,13 +4,13 @@
 
 pkgbase=libreoffice-still
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
-_LOver=4.4.7.2
-pkgver=4.4.7
+_LOver=5.0.4.2
+pkgver=5.0.4
 pkgrel=4
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
-makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.5' 'libwpd>=0.9.2' # 
'libwps'
+makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.5' 'libwpd>=0.9.2' 
'libwps'
'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
'libxslt' 'redland' 'icu' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite'
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
@@ -17,7 +17,7 @@
'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'gtk2' 'xdg-utils' 
'gst-plugins-base-libs'
'glu' 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant'
-   'gperf' 'kdelibs' 'gtk3' 'cppunit' 'beanshell2' 'vigra' 'clucene'
+   'gperf' 'kdelibs' 'cppunit' 'beanshell2' 'vigra' 'clucene' #'gtk3' 
'junit' 'libmythes' 'libwpg'  'mesa' 'java-environment' 
'postgresql-libs'
'bluez-libs' 'harfbuzz-icu' 'gdb' 'doxygen'  'libatomic_ops' 'mdds' 
'glew'
'apr' 'serf' 'ttf-liberation' 'glm' 'libxinerama' 'libpagemaker'
@@ -49,7 +49,7 @@

${_additional_source_url}/10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2

${_additional_source_url}/7681383be6ce489d84c1c74f4e7f9643-liborcus-0.7.0.tar.bz2

${_additional_source_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
-   ${_additional_source_url}/language-subtag-registry-2014-12-03.tar.bz2
+   ${_additional_source_url}/language-subtag-registry-2015-08-04.tar.bz2

${_additional_source_url}/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2
${_additional_source_url}/OpenCOLLADA-master-6509aa13af.tar.bz2

${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
@@ -58,9 +58,8 @@

${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip

${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip

${_additional_source_url}/5821b806a98e6c38370970e682ce76e8-libcmis-0.5.0.tar.gz
-   ${_additional_source_url}/libfreehand-0.1.0.tar.bz2
+   ${_additional_source_url}/libfreehand-0.1.1.tar.bz2

${_additional_source_url}/36271d3fa0d9dec1632029b6d7aac925-liblangtag-0.5.1.tar.bz2
-   ${_additional_source_url}/libwps-0.3.1.tar.bz2

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
libreoffice-still.sh libreoffice-still.csh)
@@ -85,7 +84,7 @@
10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2
7681383be6ce489d84c1c74f4e7f9643-liborcus-0.7.0.tar.bz2
0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
-   language-subtag-registry-2014-12-03.tar.bz2
+   language-subtag-registry-2015-08-04.tar.bz2
4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2
OpenCOLLADA-master-6509aa13af.tar.bz2
17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
@@ -94,15 +93,15 @@
d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
5821b806a98e6c38370970e682ce76e8-libcmis-0.5.0.tar.gz
-   libfreehand-0.1.0.tar.bz2
+   libfreehand-0.1.1.tar.bz2
36271d3fa0d9dec1632029b6d7aac925-liblangtag-0.5.1.tar.bz2
-   libwps-0.3.1.tar.bz2
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
-md5sums=('ed22391a277699b8d9839e2bca997f06'
+validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
+md5sums=('0c6381581f93ef7142b00837002755dd'
  'SKIP'
- 'ac69200cb1b65dda045e001f551dbd7b'
+ '82f2dcd28e6bfe33e0edb480b9c8f8e4'
  'SKIP'
- 'a577b6c88fbaa8128b55357cfb4c7433'
+ '73711d36f4d16b0e2657367c823e1872'
  'SKIP'
  'd6eef4b4cacb2183f2bf265a5a03a354'
  '1f24ab1d39f4a51faf22244c94a6203f'
@@ -125,7 +124,7 @@
  '10d61fbaa6a06348823651b1bd7940fe'
  '7681383be6ce489d84c1c74f4e7f9643'
  '0168229624cfac409e766913506961a8'
- '0f2677ec23bb43ddc7355d1b4cc8ed45'
+ 

[arch-commits] Commit in libreoffice-still/trunk (PKGBUILD)

2016-02-04 Thread Andreas Radke
Date: Friday, February 5, 2016 @ 05:25:07
  Author: andyrtr
Revision: 258891

gtk2 is an essential runtime dependency

Modified:
  libreoffice-still/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-05 03:01:43 UTC (rev 258890)
+++ PKGBUILD2016-02-05 04:25:07 UTC (rev 258891)
@@ -6,7 +6,7 @@
 pkgname=('libreoffice-still-sdk' 'libreoffice-still')
 _LOver=4.4.7.2
 pkgver=4.4.7
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -317,7 +317,7 @@
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 
'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'xdg-utils' 'glu' 
'libpagemaker'
-   'gst-plugins-base-libs' 'libxinerama' 'libabw' 'libmwaw' 
'libe-book' 'libcups')
+   'gst-plugins-base-libs' 'libxinerama' 'libabw' 'libmwaw' 
'libe-book' 'libcups' 'gtk2')
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
'pstoedit: translates PostScript and PDF graphics into 
other vector formats'
@@ -332,7 +332,6 @@
'libpaper: takes care of papersize'
'postgresql-libs:  for postgresql-connector'
'coin-or-mp:   required by the Calc solver'
-   'gtk2: for GTK2 integration and generic vcl'
'gtk3: for GTK3 integration'
'kdelibs:  for KDE desktop integration')
backup=(etc/libreoffice/sofficerc


  1   2   >