Skip to Content.
Sympa Menu

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

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 grimoire by Vlad Glagolev (59281b2c4ac2141ba7ecce6788772f45ec0264ad)
  • Date: Wed, 16 Apr 2014 05:35:31 -0500

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

devel/geany-plugins/CONFIGURE | 16 ++++++++++++++++
devel/geany-plugins/DEPENDS | 9 +++++++++
devel/geany-plugins/DETAILS | 2 +-
devel/geany-plugins/HISTORY | 4 ++++
devel/geany/DEPENDS | 10 +++++++++-
devel/geany/DETAILS | 2 +-
devel/geany/HISTORY | 4 ++++
7 files changed, 44 insertions(+), 3 deletions(-)

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

geany-plugins: => 1.24

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

geany: => 1.24

diff --git a/devel/geany-plugins/CONFIGURE b/devel/geany-plugins/CONFIGURE
index f7035ff..755d1ca 100755
--- a/devel/geany-plugins/CONFIGURE
+++ b/devel/geany-plugins/CONFIGURE
@@ -2,10 +2,18 @@ config_query_option GEANY_PLUGINS_OPTS "Build Addons plugin
(tasks, systray, etc
"--enable-addons" \
"--disable-addons" &&

+config_query_option GEANY_PLUGINS_OPTS "Build Autoclose plugin?" y \
+ "--enable-autoclose" \
+ "--disable-autoclose" &&
+
config_query_option GEANY_PLUGINS_OPTS "Build CodeNav plugin?" y \
"--enable-codenav" \
"--disable-codenav" &&

+config_query_option GEANY_PLUGINS_OPTS "Build Defineformat plugin?" y \
+ "--enable-defineformat" \
+ "--disable-defineformat" &&
+
config_query_option GEANY_PLUGINS_OPTS "Build GeanyDoc plugin?" y \
"--enable-geanydoc" \
"--disable-geanydoc" &&
@@ -46,6 +54,14 @@ config_query_option GEANY_PLUGINS_OPTS "Build GeanyVC
plugin?" y \
"--enable-geanyvc" \
"--disable-geanyvc" &&

+config_query_option GEANY_PLUGINS_OPTS "Build PairTagHighlighter plugin?" y \
+ "--enable-pairtaghighlighter" \
+ "--disable-pairtaghighlighter" &&
+
+config_query_option GEANY_PLUGINS_OPTS "Build PoHelper plugin?" y \
+ "--enable-pohelper" \
+ "--disable-pohelper" &&
+
config_query_option GEANY_PLUGINS_OPTS "Build pretty-printer plugin?" y \
"--enable-pretty_printer" \
"--disable-pretty_printer" &&
diff --git a/devel/geany-plugins/DEPENDS b/devel/geany-plugins/DEPENDS
index 855053e..b6adc51 100755
--- a/devel/geany-plugins/DEPENDS
+++ b/devel/geany-plugins/DEPENDS
@@ -10,6 +10,15 @@ optional_depends gtk+2 \
"--disable-commander" \
"to build Commander plugin" &&

+optional_depends pygtk2 \
+ "--enable-geanypy" \
+ "--disable-geanypy" \
+ "to build Geanypy (Python bindings) plugin" &&
+
+if is_depends_enabled $SPELL pygtk2; then
+ depends python
+fi &&
+
optional_depends lua51 \
"--enable-geanylua" \
"--disable-geanylua" \
diff --git a/devel/geany-plugins/DETAILS b/devel/geany-plugins/DETAILS
index 1adeaaf..19d4d50 100755
--- a/devel/geany-plugins/DETAILS
+++ b/devel/geany-plugins/DETAILS
@@ -1,5 +1,5 @@
SPELL=geany-plugins
- VERSION=1.23
+ VERSION=1.24
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE2=$SOURCE.sig
SOURCE_URL[0]=http://plugins.geany.org/$SPELL/$SOURCE
diff --git a/devel/geany-plugins/HISTORY b/devel/geany-plugins/HISTORY
index 9a0f057..f85d56d 100644
--- a/devel/geany-plugins/HISTORY
+++ b/devel/geany-plugins/HISTORY
@@ -1,3 +1,7 @@
+2014-04-16 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.24
+ * DEPENDS, CONFIGURE: added new plugins
+
2013-03-11 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.23
* DEPENDS: updated dependencies according to new/dropped plugins
diff --git a/devel/geany/DEPENDS b/devel/geany/DEPENDS
index 5a954a0..c54ea02 100755
--- a/devel/geany/DEPENDS
+++ b/devel/geany/DEPENDS
@@ -1,6 +1,14 @@
-depends gtk+2 &&
depends xml-parser-expat &&

+optional_depends gtk+3 \
+ "--enable-gtk3" \
+ "--disable-gtk3" \
+ "to compile with GTK+3 support
(${PROBLEM_COLOR}experimental${DEFAULT_COLOR})" &&
+
+if ! is_depends_enabled $SPELL gtk+3; then
+ depends gtk+2
+fi &&
+
optional_depends gettext \
"--enable-nls" \
"--disable-nls" \
diff --git a/devel/geany/DETAILS b/devel/geany/DETAILS
index 382cbe9..85410b0 100755
--- a/devel/geany/DETAILS
+++ b/devel/geany/DETAILS
@@ -1,5 +1,5 @@
SPELL=geany
- VERSION=1.23.1
+ VERSION=1.24
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE2=$SOURCE.sig
SOURCE_URL[0]=http://download.geany.org/$SOURCE
diff --git a/devel/geany/HISTORY b/devel/geany/HISTORY
index 55d7ffd..326a4c9 100644
--- a/devel/geany/HISTORY
+++ b/devel/geany/HISTORY
@@ -1,3 +1,7 @@
+2014-04-16 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.24
+ * DEPENDS: added optional gtk+3 dependency
+
2013-05-20 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.23.1




  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (59281b2c4ac2141ba7ecce6788772f45ec0264ad), Vlad Glagolev, 04/16/2014

Archive powered by MHonArc 2.6.24.

Top of Page