From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 334141382DE for ; Sat, 2 Jul 2016 21:16:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A8F41419A; Sat, 2 Jul 2016 21:16:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3854D14179 for ; Sat, 2 Jul 2016 21:16:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B987D340DCC for ; Sat, 2 Jul 2016 21:16:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A5302424 for ; Sat, 2 Jul 2016 21:16:02 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1467494152.89ec37fafb07e352a63157c08e1fbead95888059.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/libreoffice/libreoffice-5.1.9999.ebuild app-office/libreoffice/libreoffice-5.2.9999.ebuild app-office/libreoffice/libreoffice-9999.ebuild app-office/libreoffice/metadata.xml X-VCS-Directories: app-office/libreoffice/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 89ec37fafb07e352a63157c08e1fbead95888059 X-VCS-Branch: master Date: Sat, 2 Jul 2016 21:16:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8f4de712-66e0-483a-846d-bbf08369fc0b X-Archives-Hash: eebedab3ab9fcb5ef7d804e3bd3e75d7 commit: 89ec37fafb07e352a63157c08e1fbead95888059 Author: Andreas Sturmlechner gmail com> AuthorDate: Tue Jun 7 18:05:10 2016 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Sat Jul 2 21:15:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89ec37fa app-office/libreoffice: Add USE=google, GAPI auth for gdrive integration Existing ID and secret taken from www-client/chromium Gentoo-bug: 584168 app-office/libreoffice/libreoffice-5.1.9999.ebuild | 12 ++++++++++-- app-office/libreoffice/libreoffice-5.2.9999.ebuild | 12 ++++++++++-- app-office/libreoffice/libreoffice-9999.ebuild | 12 ++++++++++-- app-office/libreoffice/metadata.xml | 1 + 4 files changed, 31 insertions(+), 6 deletions(-) diff --git a/app-office/libreoffice/libreoffice-5.1.9999.ebuild b/app-office/libreoffice/libreoffice-5.1.9999.ebuild index 3111ec9..aba9c40 100644 --- a/app-office/libreoffice/libreoffice-5.1.9999.ebuild +++ b/app-office/libreoffice/libreoffice-5.1.9999.ebuild @@ -85,8 +85,8 @@ unset ADDONS_SRC # Extensions that need extra work: LO_EXTS="nlpsolver scripting-beanshell scripting-javascript wiki-publisher" -IUSE="bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome gstreamer -+gtk gtk3 jemalloc kde libressl mysql odk postgres telepathy test vlc +IUSE="bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome google +gstreamer +gtk gtk3 jemalloc kde libressl mysql odk postgres telepathy test vlc $(printf 'libreoffice_extensions_%s ' ${LO_EXTS})" LICENSE="|| ( LGPL-3 MPL-1.1 )" @@ -357,6 +357,12 @@ src_configure() { local internal_libs local ext_opts + # Set up Google API keys, see http://www.chromium.org/developers/how-tos/api-keys + # Note: these are for Gentoo use ONLY. For your own distribution, please get + # your own set of keys. Feel free to contact chromium@gentoo.org for more info. + local google_default_client_id="329227923882.apps.googleusercontent.com" + local google_default_client_secret="vgKG0NNv7GoDpbtoFNLxCUXu" + # optimization flags export GMAKE_OPTIONS="${MAKEOPTS}" # System python enablement: @@ -479,6 +485,8 @@ src_configure() { $(use_with coinmp system-coinmp) \ $(use_with collada system-opencollada) \ $(use_with gltf system-libgltf) \ + $(use_with google gdrive-client-id ${google_default_client_id}) \ + $(use_with google gdrive-client-secret ${google_default_client_secret}) \ $(use_with java) \ $(use_with mysql system-mysql-cppconn) \ $(use_with odk doxygen) \ diff --git a/app-office/libreoffice/libreoffice-5.2.9999.ebuild b/app-office/libreoffice/libreoffice-5.2.9999.ebuild index 7ae6ee1..40ef04b 100644 --- a/app-office/libreoffice/libreoffice-5.2.9999.ebuild +++ b/app-office/libreoffice/libreoffice-5.2.9999.ebuild @@ -84,8 +84,8 @@ unset ADDONS_SRC # Extensions that need extra work: LO_EXTS="nlpsolver scripting-beanshell scripting-javascript wiki-publisher" -IUSE="bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome gstreamer -+gtk gtk3 jemalloc kde libressl mysql odk postgres telepathy test vlc +IUSE="bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome google +gstreamer +gtk gtk3 jemalloc kde libressl mysql odk postgres telepathy test vlc $(printf 'libreoffice_extensions_%s ' ${LO_EXTS})" LICENSE="|| ( LGPL-3 MPL-1.1 )" @@ -354,6 +354,12 @@ src_configure() { local java_opts local ext_opts + # Set up Google API keys, see http://www.chromium.org/developers/how-tos/api-keys + # Note: these are for Gentoo use ONLY. For your own distribution, please get + # your own set of keys. Feel free to contact chromium@gentoo.org for more info. + local google_default_client_id="329227923882.apps.googleusercontent.com" + local google_default_client_secret="vgKG0NNv7GoDpbtoFNLxCUXu" + # optimization flags export GMAKE_OPTIONS="${MAKEOPTS}" # System python enablement: @@ -468,6 +474,8 @@ src_configure() { $(use_with coinmp system-coinmp) \ $(use_with collada system-opencollada) \ $(use_with gltf system-libgltf) \ + $(use_with google gdrive-client-id ${google_default_client_id}) \ + $(use_with google gdrive-client-secret ${google_default_client_secret}) \ $(use_with java) \ $(use_with mysql system-mysql-cppconn) \ $(use_with odk doxygen) \ diff --git a/app-office/libreoffice/libreoffice-9999.ebuild b/app-office/libreoffice/libreoffice-9999.ebuild index 7ae6ee1..40ef04b 100644 --- a/app-office/libreoffice/libreoffice-9999.ebuild +++ b/app-office/libreoffice/libreoffice-9999.ebuild @@ -84,8 +84,8 @@ unset ADDONS_SRC # Extensions that need extra work: LO_EXTS="nlpsolver scripting-beanshell scripting-javascript wiki-publisher" -IUSE="bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome gstreamer -+gtk gtk3 jemalloc kde libressl mysql odk postgres telepathy test vlc +IUSE="bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome google +gstreamer +gtk gtk3 jemalloc kde libressl mysql odk postgres telepathy test vlc $(printf 'libreoffice_extensions_%s ' ${LO_EXTS})" LICENSE="|| ( LGPL-3 MPL-1.1 )" @@ -354,6 +354,12 @@ src_configure() { local java_opts local ext_opts + # Set up Google API keys, see http://www.chromium.org/developers/how-tos/api-keys + # Note: these are for Gentoo use ONLY. For your own distribution, please get + # your own set of keys. Feel free to contact chromium@gentoo.org for more info. + local google_default_client_id="329227923882.apps.googleusercontent.com" + local google_default_client_secret="vgKG0NNv7GoDpbtoFNLxCUXu" + # optimization flags export GMAKE_OPTIONS="${MAKEOPTS}" # System python enablement: @@ -468,6 +474,8 @@ src_configure() { $(use_with coinmp system-coinmp) \ $(use_with collada system-opencollada) \ $(use_with gltf system-libgltf) \ + $(use_with google gdrive-client-id ${google_default_client_id}) \ + $(use_with google gdrive-client-secret ${google_default_client_secret}) \ $(use_with java) \ $(use_with mysql system-mysql-cppconn) \ $(use_with odk doxygen) \ diff --git a/app-office/libreoffice/metadata.xml b/app-office/libreoffice/metadata.xml index 2c92bb7..f2a30d6 100644 --- a/app-office/libreoffice/metadata.xml +++ b/app-office/libreoffice/metadata.xml @@ -14,6 +14,7 @@ version Use sci-libs/coinor-mp as alternative solver Enable Collada for rendering 3D models stored in *.dae and *.kmz format Use media-libs/libgltf for inserting 3D models in the glTF format into presentations + Enable support for remote files on Google Drive Enable highly experimental gtk3 frontend Use dev-libs/jemalloc for allocations Build the Office Development Kit