core.git: README.md

2024-04-22 Thread Stéphane Guillou (via logerrit)
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 741d5ce6abe5158e6a822a171ab738037fd9422a
Author: Stéphane Guillou 
AuthorDate: Tue Apr 23 07:14:58 2024 +1000
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Apr 22 23:26:08 2024 +0200

fix broken link to OSI image in README.md

and use SVG instead of PNG.
Link had been broken for more than a year.

Change-Id: I003c177f69630cd049a8d7df17bc4b02f45aa458
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166473
Tested-by: Adolfo Jayme Barrientos 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/README.md b/README.md
index 441ce61e9686..b3e4e4a515cd 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 # LibreOffice
 [![Coverity Scan Build 
Status](https://scan.coverity.com/projects/211/badge.svg)](https://scan.coverity.com/projects/211)
 [![CII Best 
Practices](https://bestpractices.coreinfrastructure.org/projects/307/badge)](https://bestpractices.coreinfrastructure.org/projects/307)
 [![Translation 
status](https://weblate.documentfoundation.org/widgets/libo_ui-master/-/svg-badge.svg)](https://weblate.documentfoundation.org/engage/libo_ui-master/?utm_source=widget)
 
-https://opensource.org/files/OSIApproved.png;>
+https://opensource.org/wp-content/uploads/2009/06/OSIApproved.svg;>
 
 LibreOffice is an integrated office suite based on copyleft licenses
 and compatible with most document formats and standards. Libreoffice


core.git: README.md

2024-03-16 Thread Stephan Bergmann (via logerrit)
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0a4f0ae2cfba246cb6a2708b9db5dab8fc71e6a9
Author: Stephan Bergmann 
AuthorDate: Sat Mar 16 09:24:12 2024 +0100
Commit: Stephan Bergmann 
CommitDate: Sat Mar 16 11:53:25 2024 +0100

Building with Clang needs at least libstdc++ 10

Not sure how 02f48a32400f81413329d81203c417521882cab6 "Adjust for new linux
baseline" had decided to declare "Clang 12 with libstdc++ 8.5" sufficient 
for
building on Linux.  But I just experienced that building recent master on 
Ubuntu
20.04 with its libstdc++ 9.4.0, against a (lode-built) Clang 12.0.1, failed 
with

> codemaker/source/commonjava/commonjava.cxx:45:21: error: no matching 
literal operator for call to 'operator""_ostr' with arguments of types 'const 
char *' and 'unsigned long', and no matching literal operator template
> { "void"_ostr, "java/lang/Void"_ostr },
> ^

etc., apparently because the use of std::copy_n in constexpr 
O[U]StringLiteral
ctors is not yet constexpr there.  And


indeed lists "P0202R3" (i.e.,
 "Add
Constexpr Modifiers to Functions in  and  Headers") as 
only
available since "GCC libstdc++": "10".

Change-Id: I9d8ee2833f3b0c6c24059ec6e5d4dc8994058a1b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164895
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/README.md b/README.md
index f529e48d4714..441ce61e9686 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ run and compile LibreOffice, also used by the TDF builds:
 * Build: 12 (13 for aarch64) + Xcode 14
 * Linux:
 * Runtime: RHEL 8 or CentOS 8 and comparable
-* Build: either GCC 12; or Clang 12 with libstdc++ 8.5
+* Build: either GCC 12; or Clang 12 with libstdc++ 10
 * iOS (only for LibreOfficeKit):
 * Runtime: 11.4 (only support for newer i devices == 64 bit)
 * Build: Xcode 9.3 and iPhone SDK 11.4


[Libreoffice-commits] core.git: README.md

2023-09-19 Thread Christian Lohmaier (via logerrit)
 README.md |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 02f48a32400f81413329d81203c417521882cab6
Author: Christian Lohmaier 
AuthorDate: Thu Sep 14 15:47:20 2023 +0200
Commit: Miklos Vajna 
CommitDate: Tue Sep 19 08:23:19 2023 +0200

Adjust for new linux baseline

Change-Id: I6916ee8e6f7f8beac1f3eade7ae539340ce3a2b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156920
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git a/README.md b/README.md
index 37e713151040..6afb8000b0e1 100644
--- a/README.md
+++ b/README.md
@@ -41,8 +41,8 @@ run and compile LibreOffice, also used by the TDF builds:
 * Runtime: 10.15
 * Build: 12 (13 for aarch64) + Xcode 14
 * Linux:
-* Runtime: RHEL 7 or CentOS 7
-* Build: either GCC 7.0.0; or Clang 8.0.1 with libstdc++ 7.3.0
+* Runtime: RHEL 8 or CentOS 8 and comparable
+* Build: either GCC 12; or Clang 12 with libstdc++ 8.5
 * iOS (only for LibreOfficeKit):
 * Runtime: 11.4 (only support for newer i devices == 64 bit)
 * Build: Xcode 9.3 and iPhone SDK 11.4
@@ -57,7 +57,7 @@ Java is required for building many parts of LibreOffice. In 
TDF Wiki article
 [Development/Java](https://wiki.documentfoundation.org/Development/Java), the
 exact modules that depend on Java are listed.
 
-The baseline for Java is Java Development Kit (JDK) Version 11 or later. It is
+The baseline for Java is Java Development Kit (JDK) Version 17 or later. It is
 possible to build LibreOffice with JDK version 9, but it is no longer supported
 by the JDK vendors, thus it should be avoided.
 


[Libreoffice-commits] core.git: README.md

2023-02-16 Thread Michael Weghorn (via logerrit)
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1cc1565a7032bbd33aa8d098662e2bf620f80df6
Author: Michael Weghorn 
AuthorDate: Thu Jan 26 19:04:23 2023 +0100
Commit: Michael Weghorn 
CommitDate: Thu Feb 16 20:33:15 2023 +

Update Android baseline in README.md

* minimum NDK is 23 since
  Change-Id I9ea714255faf29d50bb5f8e206f13495637da867
  ("android: Require NDK 23 and use default linker lld");
  TDF Jenkins uses NDK 25.

* Gradle plugin 7.4.0 used since
  commit 20989728c78008f29c7f7bf72b3d0e5189835dc4
  ("android: Update Android Gradle Plugin to 7.4.0")
  has minimum and default SDK version 30.0.3 [1].

[1] https://developer.android.com/studio/releases/gradle-plugin#7-4-0

Change-Id: I9d8f09b21f5ffbee4f3cc9dd7bcc7770031cec65
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146243
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git a/README.md b/README.md
index 701ba9ca2d1f..37e713151040 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,7 @@ run and compile LibreOffice, also used by the TDF builds:
 * Runtime: 11.4 (only support for newer i devices == 64 bit)
 * Build: Xcode 9.3 and iPhone SDK 11.4
 * Android:
-* Build: NDK r19c and SDK 22.6.2
+* Build: NDK r23 and SDK 30.0.3
 * Emscripten / WASM:
 * Runtime: a browser with SharedMemory support (threads + atomics)
 * Build: Qt 5.15 with Qt supported Emscripten 1.39.8


[Libreoffice-commits] core.git: README.md

2022-12-19 Thread Christian Lohmaier (via logerrit)
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b3a8d41fa93574dd62db156f90b3f707f8afeff3
Author: Christian Lohmaier 
AuthorDate: Mon Dec 19 14:14:32 2022 +0100
Commit: Christian Lohmaier 
CommitDate: Mon Dec 19 14:14:32 2022 +0100

build baseline is macOS 12 and XCode 14 (macOS 13 for m1)

(and would also be macOS 13 for the intel builds if the old macMini
would be on the officially supported list)

Change-Id: I4205f30274bdd43d80d02d6cda863ec83bdda63e

diff --git a/README.md b/README.md
index 1dda3212ea13..701ba9ca2d1f 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ run and compile LibreOffice, also used by the TDF builds:
 * Build: Cygwin + Visual Studio 2019 version 16.10
 * macOS:
 * Runtime: 10.15
-* Build: 11.0 + Xcode 12.5
+* Build: 12 (13 for aarch64) + Xcode 14
 * Linux:
 * Runtime: RHEL 7 or CentOS 7
 * Build: either GCC 7.0.0; or Clang 8.0.1 with libstdc++ 7.3.0


[Libreoffice-commits] core.git: README.md

2022-06-10 Thread Hossein (via logerrit)
 README.md |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

New commits:
commit d0e50ba13b545ab00dfb02a445eeb93011ff4af8
Author: Hossein 
AuthorDate: Thu Jun 9 15:48:11 2022 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Fri Jun 10 08:21:57 2022 +0200

Add information on Java baseline in README.md

As discussed in the ESC, although LibreOffice can be built with the
Java Development Kit (JDK) version 9, the JDK 9 is no longer
supported by the JVM vendors including Oracle, Red Hat and others.
Thus, it is asserted here that JDK 11 or later should be used to build
LibreOffice.

For further information on the supported versions of JDK, and its
lifcycle, see these articles:

Oracle Java SE Support Roadmap (Updated March 22, 2022)
https://www.oracle.com/java/technologies/java-se-support-roadmap.html

OpenJDK Life Cycle and Support Policy (Updated November 22 2021)
https://access.redhat.com/articles/1299013

It should be noted that JDK 8 is still supported, but it is not usable
for building LibreOffice.

It is also documented that without Java one may lose many features that
are described in the TDF wiki article Development/Java:
https://wiki.documentfoundation.org/Development/Java

Change-Id: Id001c341a221b0fe5c07c7129956a824261d32c0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135557
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/README.md b/README.md
index dcc33988f293..d2effbb58576 100644
--- a/README.md
+++ b/README.md
@@ -53,6 +53,14 @@ run and compile LibreOffice, also used by the TDF builds:
 * Build: Qt 5.15 with Qt supported Emscripten 1.39.8
 * See [README.wasm](static/README.wasm.md)
 
+Java is required for building many parts of LibreOffice. In TDF Wiki article
+[Development/Java](https://wiki.documentfoundation.org/Development/Java), the
+exact modules that depend on Java are listed.
+
+The baseline for Java is Java Development Kit (JDK) Version 11 or later. It is
+possible to build LibreOffice with JDK version 9, but it is no longer supported
+by the JDK vendors, thus it should be avoided.
+
 If you want to use Clang with the LibreOffice compiler plugins, the minimal
 version of Clang is 12.0.1. Since Xcode doesn't provide the compiler plugin
 headers, you have to compile your own Clang to use them on macOS.
@@ -64,7 +72,7 @@ the LibreOffice Development Environment
 ([LODE](https://wiki.documentfoundation.org/Development/lode)) scripts.
 
 For more information see the build instructions for your platform in the
-[TDF wiki](https://wiki.documentfoundation.org/Development).
+[TDF wiki](https://wiki.documentfoundation.org/Development/How_to_build).
 
 ## The Important Bits of Code
 


[Libreoffice-commits] core.git: README.md

2021-06-02 Thread Christian Lohmaier (via logerrit)
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ef0d150675687469ca85de62b67e34c1e3daa176
Author: Christian Lohmaier 
AuthorDate: Wed Jun 2 15:57:31 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Jun 2 15:57:31 2021 +0200

s/irc.freenode.net/irc.libera.chat/ in README.md

see also https://tdf.io/ircmigration

Change-Id: I468f450649b352489b9651ebbb34f04eddb87af9

diff --git a/README.md b/README.md
index 20912732da3d..22d403aab128 100644
--- a/README.md
+++ b/README.md
@@ -123,6 +123,6 @@ benefit of external users of this API.
 
 Beyond this, you can read the `README.md` files, send us patches, ask
 on the mailing list libreoffice@lists.freedesktop.org (no subscription
-required) or poke people on IRC `#libreoffice-dev` on irc.freenode.net -
+required) or poke people on IRC `#libreoffice-dev` on irc.libera.chat -
 we're a friendly and generally helpful mob. We know the code can be
 hard to get into at first, and so there are no silly questions.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2020-02-06 Thread Thorsten Behrens (via logerrit)
 README.md |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 8ff280afde005717dee77031d314514f74e9b760
Author: Thorsten Behrens 
AuthorDate: Wed Feb 5 10:16:04 2020 +0100
Commit: Thorsten Behrens 
CommitDate: Thu Feb 6 10:13:55 2020 +0100

Self-certify LibreOffice licenses as OSI-approved

Change-Id: I094217fa1f43b6eed9020c97fde07e4b413aef31
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87998
Reviewed-by: Michael Meeks 
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 

diff --git a/README.md b/README.md
index 1a1dd5d78b17..2f56b8fdde93 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,8 @@
 # LibreOffice
 [![Coverity Scan Build 
Status](https://scan.coverity.com/projects/211/badge.svg)](https://scan.coverity.com/projects/211)
 [![CII Best 
Practices](https://bestpractices.coreinfrastructure.org/projects/307/badge)](https://bestpractices.coreinfrastructure.org/projects/307)
 [![Translation 
status](https://weblate.documentfoundation.org/widgets/libo_ui-master/-/svg-badge.svg)](https://weblate.documentfoundation.org/engage/libo_ui-master/?utm_source=widget)
 
+https://opensource.org/files/OSIApproved.png;>
+
 LibreOffice is an integrated office suite based on copyleft licenses
 and compatible with most document formats and standards. Libreoffice
 is backed by The Document Foundation, which represents a large
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2019-11-01 Thread Adolfo Jayme Barrientos (via logerrit)
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 72bb0696122aad9a3c3cb9777214acb8538ad300
Author: Adolfo Jayme Barrientos 
AuthorDate: Thu Oct 31 09:27:57 2019 -0600
Commit: Adolfo Jayme Barrientos 
CommitDate: Fri Nov 1 14:07:58 2019 +0100

README: Add Weblate badge for core l10n

Change-Id: Ie188f4d7e5ac3291933089a72be638e9af935097
Reviewed-on: https://gerrit.libreoffice.org/81856
Reviewed-by: Sophie Gautier 
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/README.md b/README.md
index 513bb159e3db..1a1dd5d78b17 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 # LibreOffice
-[![Coverity Scan Build 
Status](https://scan.coverity.com/projects/211/badge.svg)](https://scan.coverity.com/projects/211)
 [![CII Best 
Practices](https://bestpractices.coreinfrastructure.org/projects/307/badge)](https://bestpractices.coreinfrastructure.org/projects/307)
+[![Coverity Scan Build 
Status](https://scan.coverity.com/projects/211/badge.svg)](https://scan.coverity.com/projects/211)
 [![CII Best 
Practices](https://bestpractices.coreinfrastructure.org/projects/307/badge)](https://bestpractices.coreinfrastructure.org/projects/307)
 [![Translation 
status](https://weblate.documentfoundation.org/widgets/libo_ui-master/-/svg-badge.svg)](https://weblate.documentfoundation.org/engage/libo_ui-master/?utm_source=widget)
 
 LibreOffice is an integrated office suite based on copyleft licenses
 and compatible with most document formats and standards. Libreoffice
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: README.md

2019-10-28 Thread Miklos Vajna (via logerrit)
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7ab68018b3b6410a3896642d3c6945bddf397911
Author: Miklos Vajna 
AuthorDate: Mon Oct 28 17:40:51 2019 +0100
Commit: Miklos Vajna 
CommitDate: Mon Oct 28 21:54:54 2019 +0100

Android: document one SDK version that works

configure.ac doesn't check for any version as far as I see, add what
works for me at the moment.

Change-Id: If8b28e2a5d4bf4aea4325038ddf416a43f904db4
Reviewed-on: https://gerrit.libreoffice.org/81621
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git a/README.md b/README.md
index 2424359d2000..513bb159e3db 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ run and compile LibreOffice, also used by the TDF builds:
 * Runtime: 11.4 (only support for newer i devices == 64 bit)
 * Build: Xcode 9.3 and iPhone SDK 11.4
 * Android:
-* Build: NDK r19c
+* Build: NDK r19c and SDK 22.6.2
 
 If you want to use Clang with the LibreOffice compiler plugins, the minimal
 version of Clang is 5.0.2. Since Xcode doesn't provide the compiler plugin
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: README.md

2019-08-26 Thread Miklos Vajna (via logerrit)
 README.md |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 77f633a9a10ef3847643c85503e16427a137291d
Author: Miklos Vajna 
AuthorDate: Mon Aug 26 12:34:53 2019 +0200
Commit: Miklos Vajna 
CommitDate: Mon Aug 26 14:13:29 2019 +0200

Android: document one NDK version that works

The baseline info was silent on Android, and at least my old r16b was
too old to build master, while updating to r19c fixes the build, so
document that finding.

Change-Id: I8713d68a9cfe62ca241f0047f46da496acb85acd
Reviewed-on: https://gerrit.libreoffice.org/78119
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/README.md b/README.md
index 41a4a7fff9d6..2424359d2000 100644
--- a/README.md
+++ b/README.md
@@ -44,6 +44,8 @@ run and compile LibreOffice, also used by the TDF builds:
 * iOS (only for LibreOfficeKit):
 * Runtime: 11.4 (only support for newer i devices == 64 bit)
 * Build: Xcode 9.3 and iPhone SDK 11.4
+* Android:
+* Build: NDK r19c
 
 If you want to use Clang with the LibreOffice compiler plugins, the minimal
 version of Clang is 5.0.2. Since Xcode doesn't provide the compiler plugin
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: README.md

2019-08-15 Thread Stephan Bergmann (via logerrit)
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b40039fee1ee0e8f3e0003fcdd6f234259690505
Author: Stephan Bergmann 
AuthorDate: Thu Aug 15 09:57:18 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Thu Aug 15 11:26:40 2019 +0200

Fix MSVC version in README.md

...to match configure.ac check from 206b8c4ae320d7d8614f21800d8f77fa29f8f5ff
"On Windows, check for at least Visual Studio 2017 version 15.7"

Change-Id: Ie78beb0a1d57aea590f3e73b9d4c45787d6531bf
Reviewed-on: https://gerrit.libreoffice.org/77488
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/README.md b/README.md
index 6234096389c0..41a4a7fff9d6 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ run and compile LibreOffice, also used by the TDF builds:
 
 * Windows:
 * Runtime: Windows 7
-* Build: Cygwin + Visual Studio 2017
+* Build: Cygwin + Visual Studio 2017 version 15.7
 * macOS:
 * Runtime: 10.10
 * Build: 10.13.2 + Xcode 9.3
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: README.md

2019-06-05 Thread Christian Lohmaier (via logerrit)
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b1a17c2d3f35ed801d745785fdeb7cf1ea2e1c60
Author: Christian Lohmaier 
AuthorDate: Wed Jun 5 12:17:14 2019 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Jun 5 12:17:14 2019 +0200

baseline is CentOS/RHEL 7 (glibc 2.14 or later)

Change-Id: Ie796a5c8f36b33c61eb69b6b68f7439f9359526f

diff --git a/README.md b/README.md
index ddfe9a760a47..6234096389c0 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ run and compile LibreOffice, also used by the TDF builds:
 * Runtime: 10.10
 * Build: 10.13.2 + Xcode 9.3
 * Linux:
-* Runtime: RHEL 6 or CentOS 6
+* Runtime: RHEL 7 or CentOS 7
 * Build: either GCC 7.0.0; or Clang 5.0.2 with libstdc++ 7.3.0
 * iOS (only for LibreOfficeKit):
 * Runtime: 11.4 (only support for newer i devices == 64 bit)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: README.md

2018-11-28 Thread Libreoffice Gerrit user
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 58904bb5b0bcba2f0c6a598f5cd5f2891a66dc3c
Author: Stephan Bergmann 
AuthorDate: Wed Nov 28 16:30:03 2018 +0100
Commit: Stephan Bergmann 
CommitDate: Wed Nov 28 19:56:33 2018 +0100

Xcode 9.3 reportedly requires at least macOS 10.13.2

...according to .  (See also the 
discussion
in the mail sub-thread starting at


"Re: Compiler baselines".)

Change-Id: Iab6fa737dfeb7cea93b18ec85c76d21da92e1d6d
Reviewed-on: https://gerrit.libreoffice.org/64177
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/README.md b/README.md
index 1285ed7e3f12..45abb593bf9d 100644
--- a/README.md
+++ b/README.md
@@ -37,7 +37,7 @@ run and compile LibreOffice, also used by the TDF builds:
 * Build: Cygwin + Visual Studio 2017
 * macOS:
 * Runtime: 10.10
-* Build: 10.12 + Xcode 9.3
+* Build: 10.13.2 + Xcode 9.3
 * Linux:
 * Runtime: RHEL 6 or CentOS 6
 * Build: GCC 4.8.1 or Clang
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2018-07-12 Thread Tor Lillqvist
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3f3154b265a8ddf32df336caf50594d1f832b1bb
Author: Tor Lillqvist 
Date:   Thu Jul 12 16:46:27 2018 +0300

Say VS2017 here, too

Change-Id: Icce460adc702547b12ad8e474507e396424c1eb3

diff --git a/README.md b/README.md
index 3bcd70716e00..3336d32ce04b 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ run and compile LibreOffice, also used by the TDF builds:
 
 * Windows:
 * Runtime: Windows 7
-* Build: Cygwin + Visual Studio 2015 Update 3
+* Build: Cygwin + Visual Studio 2017
 * macOS:
 * Runtime: 10.9
 * Build: 10.12 + Xcode 8
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2017-12-18 Thread Stephan Bergmann
 README.md |4 
 1 file changed, 4 insertions(+)

New commits:
commit fa7b7f73938e837af2765f8a03f07e404046877b
Author: Stephan Bergmann 
Date:   Fri Dec 15 11:20:53 2017 +0100

Document that Clang 3.4.2 is known to be too old



"Clang baseline bump"

Change-Id: I13b621be7614ce81777bf56ce52a68e36513be20
Reviewed-on: https://gerrit.libreoffice.org/46518
Tested-by: Jenkins 
Reviewed-by: Stephan Bergmann 

diff --git a/README.md b/README.md
index 7896ac44f326..475509abeac1 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,10 @@ run and compile LibreOffice, also used by the TDF builds:
 * Runtime: 11.0 (only support for newer i devices == 64 bit)
 * Build: Xcode 9.0 and iPhone SDK 11.1
 
+At least Clang 3.4.2 is known to be too old to pass the configure.ac check 
"whether $CXX supports
+C++17, C++14, or C++11" in its current form (due to the #pragma GCC diagnostic 
ignored "-Wpragmas"
+that it does not understand).
+
 If you want to use Clang with the LibreOffice compiler plugins, the minimal
 version of Clang is 3.4. Since Xcode doesn't provide the compiler plugin
 headers, you have to compile your own Clang to use them on macOS.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2017-11-08 Thread Korrawit Pruegsanusak
 README.md |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit beff25128c7f53125d487a11caa70a3060dcc785
Author: Korrawit Pruegsanusak 
Date:   Mon Oct 23 19:37:10 2017 +0700

README.md: markdown use 4 spaces for list indentation

Change-Id: I5ac151877f0bccfdc955171b26fecefcacfbe117
Reviewed-on: https://gerrit.libreoffice.org/43720
Tested-by: Jenkins 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/README.md b/README.md
index fa614b033d38..4b5d9ed0d81d 100644
--- a/README.md
+++ b/README.md
@@ -33,17 +33,17 @@ These are the current minimal operating system and compiler 
versions to
 run and compile LibreOffice, also used by the TDF builds:
 
 * Windows:
- * Runtime: Windows 7
- * Build: Cygwin + Visual Studio 2015 Update 3
+* Runtime: Windows 7
+* Build: Cygwin + Visual Studio 2015 Update 3
 * macOS:
- * Runtime: 10.9
- * Build: 10.12 + Xcode 8
+* Runtime: 10.9
+* Build: 10.12 + Xcode 8
 * Linux:
- * Runtime: RHEL 6 or CentOS 6
- * Build: GCC 4.8.1 or Clang
+* Runtime: RHEL 6 or CentOS 6
+* Build: GCC 4.8.1 or Clang
 * iOS (only for LibreOfficeKit):
- * Runtime: 11.0 (only support for newer i devices == 64 bit)
- * Build: Xcode 9.0 and iPhone SDK 11.0
+* Runtime: 11.0 (only support for newer i devices == 64 bit)
+* Build: Xcode 9.0 and iPhone SDK 11.0
 
 If you want to use Clang with the LibreOffice compiler plugins, the minimal
 version of Clang is 3.4. Since Xcode doesn't provide the compiler plugin
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2017-11-03 Thread Mike Kaganski
 README.md |   10 ++
 1 file changed, 10 insertions(+)

New commits:
commit 646448dda41484dfa936f906356d7c58c8a28605
Author: Mike Kaganski 
Date:   Fri Oct 27 15:39:12 2017 +0300

loplugin:includeform: document the requirements

See commits acb3ed0615a1b4e31257fa1014e9e2f2188c602c and
189abcf0db61c41a565bd355294bf6e712fc3e5a, and mail thread



Change-Id: I2eea0b0a13bfe7f2919f36c94e76796b6a8cf122
Reviewed-on: https://gerrit.libreoffice.org/43945
Reviewed-by: Stephan Bergmann 
Tested-by: Stephan Bergmann 

diff --git a/README.md b/README.md
index 3fe1dabac50d..fa614b033d38 100644
--- a/README.md
+++ b/README.md
@@ -98,6 +98,16 @@ canvas/   | new (UNO) canvas rendering model with various 
backends
 cppcanvas/ | C++ helper classes for using the UNO canvas
 drawinglayer/ | View code to render drawable objects and break them down into 
primitives we can render more easily.
 
+## Rules for #include directives (C/C++)
+
+Use the `"..."` form if and only if the included file is found next to the
+including file. Otherwise, use the `<...>` form. (For further details, see the
+mail [Re: C[++]: Normalizing include syntax ("" vs
+<>)](https://lists.freedesktop.org/archives/libreoffice/2017-November/078778.html).)
+
+The UNO API include files should consistently use double quotes, for the
+benefit of external users of this API.
+
 
 ## Finding out more
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2017-10-04 Thread jan Iversen
 README.md |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 79c392a45a7827d6c5af4c7e1da07c6eb3f91f2e
Author: jan Iversen 
Date:   Wed Oct 4 12:07:58 2017 +0200

iOS, updated README.md

on request.

Disclaimer, this is currently work in progress and the library
should *not* be used for production.

Change-Id: I016933fcf10d7864babbf5d24ffcaa439a6753a7

diff --git a/README.md b/README.md
index c407d6c09c3c..bff77c676dbb 100644
--- a/README.md
+++ b/README.md
@@ -41,6 +41,9 @@ run and compile LibreOffice, also used by the TDF builds:
 * Linux:
  * Runtime: RHEL 6 or CentOS 6
  * Build: GCC 4.8.1 or Clang
+* iOS (only for LibreOfficeKit):
+ * Runtime: 10.3 (only support for newer i devices == 64 bit)
+ * Build: Xcode 8.3 and iPhone SDK 10.3
 
 If you want to use Clang with the LibreOffice compiler plugins, the minimal
 version of Clang is 3.4. Since Xcode doesn't provide the compiler plugin
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2017-09-08 Thread Jan-Marek Glogowski
 README.md |   27 +++
 1 file changed, 27 insertions(+)

New commits:
commit 1079893be5593268eff0867be87b0291546d88c7
Author: Jan-Marek Glogowski 
Date:   Thu Sep 7 12:09:25 2017 +0200

Document baselines

Change-Id: I32c8b027abec13805fcb4fc244c7eca00e0c6fee
Reviewed-on: https://gerrit.libreoffice.org/42072
Tested-by: Jenkins 
Reviewed-by: Jan-Marek Glogowski 

diff --git a/README.md b/README.md
index b376110858e9..0c29c3ed06a9 100644
--- a/README.md
+++ b/README.md
@@ -27,6 +27,33 @@ to compile and build your code, it avoids any arbitrary 
limitations of
 our scripting APIs, and in general is far more simple and intuitive -
 if you are a reasonably able C++ programmer.
 
+## The build chain and runtime baselines
+
+These are the current minimal operating system and compiler versions to
+run and compile LibreOffice, also used by the TDF builds:
+
+* Windows:
+ * Runtime: Windows 7
+ * Build: Cygwin + Visual Studio 2015 Update 3
+* macOS:
+ * Runtime: 10.9
+ * Build: 10.11 + Xcode 8
+* Linux:
+ * Runtime: RHEL 6 or CentOS 6
+ * Build: GCC 4.8.1 or Clang
+
+If you want to use Clang with the LibreOffice compiler plugins, the minimal
+version of Clang is 3.4. Since Xcode doesn't provide the compiler plugin
+headers, you have to compile your own Clang to use them on macOS.
+
+You can find the TDF configure switches in the distro-configs/ directory.
+
+To setup your initial build environment on Windows and macOS, we provide
+the LibreOffice Development Environment
+([LODE](https://wiki.documentfoundation.org/Development/lode)) scripts.
+
+For more information see the build instructions for your platform in the
+[TDF wiki](https://wiki.documentfoundation.org/Development).
 
 ## The important bits of code
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2016-10-10 Thread Adolfo Jayme Barrientos
 README.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 65f2d6b1cc40b4b90f8987e8ea14d24b5f38f950
Author: Adolfo Jayme Barrientos 
Date:   Mon Oct 10 03:22:53 2016 -0500

README.md: Add CII Best Practices badge

Change-Id: I9bba2714fafe4d14c28348d36b0530a8109e1845

diff --git a/README.md b/README.md
index 9a98098..b376110 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 # LibreOffice
-[![Coverity Scan Build 
Status](https://scan.coverity.com/projects/211/badge.svg)](https://scan.coverity.com/projects/211)
+[![Coverity Scan Build 
Status](https://scan.coverity.com/projects/211/badge.svg)](https://scan.coverity.com/projects/211)
 [![CII Best 
Practices](https://bestpractices.coreinfrastructure.org/projects/307/badge)](https://bestpractices.coreinfrastructure.org/projects/307)
 
 LibreOffice is an integrated office suite based on copyleft licenses
 and compatible with most document formats and standards. Libreoffice
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2015-11-28 Thread David Ostrovsky
 README.md |8 
 1 file changed, 8 insertions(+)

New commits:
commit 700f080fd9d85c6f1b3a54ecbd813e42b79591c0
Author: David Ostrovsky 
Date:   Sat Nov 28 09:08:56 2015 +0100

README: Describe what LibreOffice is about

Before saying how to develope it, mention what it's all about.
The text was shamelessly stolen from OpenHUB LibreOffice project
site: [1].

* [1] https://www.openhub.net/p/libreoffice

Change-Id: I9e018e441c4d3f176d1d21eddb7a65429a9f9fd2
Reviewed-on: https://gerrit.libreoffice.org/20252
Tested-by: Jenkins 
Reviewed-by: jan iversen 
Reviewed-by: Thorsten Behrens 

diff --git a/README.md b/README.md
index 64aab9b..8c14328 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,14 @@
 # LibreOffice
 [![Coverity Scan Build 
Status](https://scan.coverity.com/projects/211/badge.svg)](https://scan.coverity.com/projects/211)
 
+LibreOffice is an integrated office suite based on copyleft licenses
+and compatible with most document formats and standards. Libreoffice
+is backed by The Document Foundation, which represents a large
+independent community of enterprises, developers and other volunteers
+moved by the common goal of bringing to the market the best software
+for personal productivity. LibreOffice is open source, and free to
+download, use and distribute.
+
 A quick overview of the LibreOffice code structure.
 
 ## Overview
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: README.md

2015-05-24 Thread Adolfo Jayme Barrientos
 README.md |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit b9630867d17c01ec41f6461b1e96288f3932248c
Author: Adolfo Jayme Barrientos fit...@ubuntu.com
Date:   Sun May 24 19:42:51 2015 -0500

README.md: Add a pretty Coverity badge

Change-Id: Iee62ae710487df67016e48664585bfdff8ccaf75

diff --git a/README.md b/README.md
index 501c4a0..64aab9b 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,6 @@
+# LibreOffice
+[![Coverity Scan Build 
Status](https://scan.coverity.com/projects/211/badge.svg)](https://scan.coverity.com/projects/211)
+
 A quick overview of the LibreOffice code structure.
 
 ## Overview
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits