Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master binary grimoire by Vlad Glagolev (a81ae3b4d0b6e684dd43d2d84fb8e6a4dd100786)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master binary grimoire by Vlad Glagolev (a81ae3b4d0b6e684dd43d2d84fb8e6a4dd100786)
  • Date: Sat, 24 Feb 2018 17:56:49 +0000

GIT changes to master binary grimoire by Vlad Glagolev
<stealth AT sourcemage.org>:

bin-editors/libreoffice-bin-help/CONFIGURE | 4 ++++
bin-editors/libreoffice-bin-help/DETAILS | 9 ++++++++-
bin-editors/libreoffice-bin-help/HISTORY | 4 ++++
bin-editors/libreoffice-bin-lang/CONFIGURE | 4 ++++
bin-editors/libreoffice-bin-lang/DETAILS | 9 ++++++++-
bin-editors/libreoffice-bin-lang/HISTORY | 4 ++++
bin-editors/libreoffice-bin/DETAILS | 14 ++++++++++----
bin-editors/libreoffice-bin/HISTORY | 4 ++++
8 files changed, 46 insertions(+), 6 deletions(-)

New commits:
commit a81ae3b4d0b6e684dd43d2d84fb8e6a4dd100786
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

libreoffice-bin-lang: => 6.0.1 (fresh), 5.4.5 (still)

commit dc91f19dc7ef85b3eb56da0d527a8396ad3619d0
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

libreoffice-bin-help: => 6.0.1 (fresh), 5.4.5 (still)

commit fe8caa2d6110ab4a3760fc179c8050afd4284435
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

libreoffice-bin: => 6.0.1 (fresh), 5.4.5 (still)

diff --git a/bin-editors/libreoffice-bin-help/CONFIGURE
b/bin-editors/libreoffice-bin-help/CONFIGURE
index 74107a7..e5c4a7f 100755
--- a/bin-editors/libreoffice-bin-help/CONFIGURE
+++ b/bin-editors/libreoffice-bin-help/CONFIGURE
@@ -1,5 +1,9 @@
source $GRIMOIRE/config_query_multi.function &&

+config_query_list LIBREOFFICE_BRANCH "Which branch do you want to install?" \
+ fresh \
+ still &&
+
local CFG=$SPELL_CONFIG

get_libohelplanguages() {
diff --git a/bin-editors/libreoffice-bin-help/DETAILS
b/bin-editors/libreoffice-bin-help/DETAILS
index c7c7cf2..2b02e3f 100755
--- a/bin-editors/libreoffice-bin-help/DETAILS
+++ b/bin-editors/libreoffice-bin-help/DETAILS
@@ -1,6 +1,13 @@
+if [[ -z "${LIBREOFFICE_BRANCH}" ]]; then
+ LIBREOFFICE_BRANCH="fresh"
+fi
# the remaining details of this spell are provided by CONFIGURE
SPELL=libreoffice-bin-help
- VERSION=5.3.7
+if [[ "${LIBREOFFICE_BRANCH}" == "fresh" ]]; then
+ VERSION=6.0.1
+else
+ VERSION=5.4.5
+fi

SITE="http://download.documentfoundation.org/libreoffice/stable/$VERSION/rpm/";
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL
HELPLANG_LIST="en-US cs de es fi fr hr it ja nl pl pt ru sl tr"
diff --git a/bin-editors/libreoffice-bin-help/HISTORY
b/bin-editors/libreoffice-bin-help/HISTORY
index 3972712..8b410eb 100644
--- a/bin-editors/libreoffice-bin-help/HISTORY
+++ b/bin-editors/libreoffice-bin-help/HISTORY
@@ -1,3 +1,7 @@
+2018-02-24 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 6.0.1; added still branch
+ * CONFIGURE: added, for still branch
+
2017-12-18 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 5.3.7

diff --git a/bin-editors/libreoffice-bin-lang/CONFIGURE
b/bin-editors/libreoffice-bin-lang/CONFIGURE
index c297406..d9b54aa 100755
--- a/bin-editors/libreoffice-bin-lang/CONFIGURE
+++ b/bin-editors/libreoffice-bin-lang/CONFIGURE
@@ -1,5 +1,9 @@
source $GRIMOIRE/config_query_multi.function &&

+config_query_list LIBREOFFICE_BRANCH "Which branch do you want to install?" \
+ fresh \
+ still &&
+
local CFG=$SPELL_CONFIG

get_libolanguages() {
diff --git a/bin-editors/libreoffice-bin-lang/DETAILS
b/bin-editors/libreoffice-bin-lang/DETAILS
index 499c6a5..0340c2a 100755
--- a/bin-editors/libreoffice-bin-lang/DETAILS
+++ b/bin-editors/libreoffice-bin-lang/DETAILS
@@ -1,6 +1,13 @@
+if [[ -z "${LIBREOFFICE_BRANCH}" ]]; then
+ LIBREOFFICE_BRANCH="fresh"
+fi
# the remaining details of this spell are provided by CONFIGURE
SPELL=libreoffice-bin-lang
- VERSION=5.3.7
+if [[ "${LIBREOFFICE_BRANCH}" == "fresh" ]]; then
+ VERSION=6.0.1
+else
+ VERSION=5.4.5
+fi

SITE="http://download.documentfoundation.org/libreoffice/stable/$VERSION/rpm/";
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL
LANG_LIST="cs de es fi fr hr it ja nl pl pt ru sl tr"
diff --git a/bin-editors/libreoffice-bin-lang/HISTORY
b/bin-editors/libreoffice-bin-lang/HISTORY
index 721ac7c..1286378 100644
--- a/bin-editors/libreoffice-bin-lang/HISTORY
+++ b/bin-editors/libreoffice-bin-lang/HISTORY
@@ -1,3 +1,7 @@
+2018-02-24 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 6.0.1; added still branch
+ * CONFIGURE: added, for still branch
+
2017-12-18 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 5.3.7

diff --git a/bin-editors/libreoffice-bin/DETAILS
b/bin-editors/libreoffice-bin/DETAILS
index b264621..2e728f3 100755
--- a/bin-editors/libreoffice-bin/DETAILS
+++ b/bin-editors/libreoffice-bin/DETAILS
@@ -1,8 +1,16 @@
+if [[ -z "${LIBREOFFICE_BRANCH}" ]]; then
+ LIBREOFFICE_BRANCH="fresh"
+fi
SPELL=libreoffice-bin
SPELLX=libreoffice
+if [[ "${LIBREOFFICE_BRANCH}" == "fresh" ]]; then
+ VERSION=6.0.1
+ BUILD_VERSION=1
+else
+ VERSION=5.4.5
+ BUILD_VERSION=1
+fi
if [[ "${SMGL_COMPAT_ARCHS[1]}" == "x86_64" ]]; then
- VERSION=6.0.0
- BUILD_VERSION=2
SOURCE=LibreOffice_${VERSION}_Linux_x86-64_rpm.tar.gz
SOURCE2=$SOURCE.asc
SOURCE_GPG=libreoffice.gpg:$SOURCE2:UPSTREAM_KEY
@@ -10,8 +18,6 @@ if [[ "${SMGL_COMPAT_ARCHS[1]}" == "x86_64" ]]; then
URL_ARCH="x86_64"
LIBO_ARCH="x86_64"
else
- VERSION=6.0.0
- BUILD_VERSION=2
SOURCE=LibreOffice_${VERSION}_Linux_x86_rpm.tar.gz
SOURCE2=$SOURCE.asc
SOURCE_GPG=libreoffice.gpg:$SOURCE2:UPSTREAM_KEY
diff --git a/bin-editors/libreoffice-bin/HISTORY
b/bin-editors/libreoffice-bin/HISTORY
index e5f9d49..676f04d 100644
--- a/bin-editors/libreoffice-bin/HISTORY
+++ b/bin-editors/libreoffice-bin/HISTORY
@@ -1,3 +1,7 @@
+2018-02-24 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 6.0.1; added still branch
+ * CONFIGURE: added, for still branch
+
2018-02-08 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 6.0.0




  • [SM-Commit] GIT changes to master binary grimoire by Vlad Glagolev (a81ae3b4d0b6e684dd43d2d84fb8e6a4dd100786), Vlad Glagolev, 02/24/2018

Archive powered by MHonArc 2.6.24.

Top of Page