]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Debian pkg: updates from upstream.
authorAndrea Zagli <azagli@libero.it>
Thu, 12 Jul 2018 07:18:29 +0000 (09:18 +0200)
committerAndrea Zagli <azagli@libero.it>
Thu, 12 Jul 2018 07:18:29 +0000 (09:18 +0200)
debian/changelog
debian/patches/0005-No-python-pkg-config.patch

index 70dd0d4da28e3279c0376f03b5d0fcc05c83285c..e506be052932d7030ea916a3c16f6b1237f5e53b 100644 (file)
@@ -1,6 +1,6 @@
-libsolipa (0.5.0-2~7.gbpe7dc42) UNRELEASED; urgency=medium
+libsolipa (0.5.0-2~8.gbp775309) UNRELEASED; urgency=medium
 
-  ** SNAPSHOT build @e7dc42380a01c9632a502a508e71eebb44f6d80d **
+  ** SNAPSHOT build @77530913ef12b64c87d870f742fab0266c6245b6 **
 
   [ Andrea Zagli ]
   * Initial release
@@ -365,5 +365,16 @@ libsolipa (0.5.0-2~7.gbpe7dc42) UNRELEASED; urgency=medium
   * Debian pkg: updates from upstream.
   * Aggiunta la funzione Solipa::gtk_tree_model_get_value_boolean.
   * Debian pkg: updated from stream.
+  * Debian pkg: rebuild.
+  * Utilizzo di python3 se presente.
+  * Aggiustamenti di ooo per funzionare senza finestre gtk.
+  * Aggiunte funzioni OOO::[get|set]_[path|version|port|soffice].
+  * Aggiunta funzione OOO::get_cmd_apri_openoffice.
+  * Aggiunte le funzioni OOO::[g|s]et_transient.
+  * Nelle funzioni OOO::[s|g]et_* se il parametro รจ NULL deve reimpostare il default.
+  * OOO pubblicizzata la funzione per l'inizializzazione del python.
+  * Aggiunto il test ooo_no_aprichiudi.
+  * Esportazione variabile python per pkg-config.
+  * Aggiunta la funzione OOO::openoffice_in_esecuzione.
 
- -- tux <tux@develop64.example.tst>  Tue, 12 Jun 2018 09:51:19 +0200
+ -- tux <tux@develop64.example.tst>  Thu, 12 Jul 2018 09:08:35 +0200
index 3a606b7be90231b829c926a6bc22b1bbd7f762ba..32aa23dd9231b72231351c043c12f085ad52bede 100644 (file)
@@ -10,13 +10,19 @@ diff --git a/configure.ac b/configure.ac
 index f6a0719..259be59 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -57,7 +57,8 @@ PKG_CHECK_MODULES(CTPL, [ctpl])
+@@ -57,13 +57,14 @@ PKG_CHECK_MODULES(CTPL, [ctpl])
  AC_SUBST(CTPL_CFLAGS)
  AC_SUBST(CTPL_LIBS)
  
--PKG_CHECK_MODULES(PYTHON, [python])
+ PKG_CHECK_MODULES(PYTHON, [python-3.6], [python36_found=yes], [python36_found=no])
+ if test x$python36_found = xno; then
+-   PKG_CHECK_MODULES(PYTHON, [python])
 +AC_CHECK_PROG(PYTHON_CFLAGS, [python-config], `python-config --cflags`, [-I/c/Python26/include])
 +AC_CHECK_PROG(PYTHON_LIBS, [python-config], `python-config --libs`, [-lpthread -lm -L/c/Python26/libs -lpython26])
+    PYTHON_PKGCONFIG="python"
+ else
+    PYTHON_PKGCONFIG="python-3.6"
+ fi
  AC_SUBST(PYTHON_CFLAGS)
  AC_SUBST(PYTHON_LIBS)