Skip to Content.
Sympa Menu

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

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 (1ff30441096911058fc686b006f10c3eb97fa3db)
  • Date: Tue, 25 May 2010 06:03:27 -0500

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

dev/null |binary
editors/medit/BUILD | 1 +
editors/medit/DEPENDS | 22 +++++++++++++---------
editors/medit/DETAILS | 29 ++++++++++++++++++++---------
editors/medit/HISTORY | 8 +++++++-
editors/medit/PRE_BUILD | 4 ++++
editors/medit/medit-0.9.4.tar.bz2.sig | 0
editors/medit/python.patch | 13 +++++++++++++
8 files changed, 58 insertions(+), 19 deletions(-)

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

medit: => 0.10.4

diff --git a/editors/medit/BUILD b/editors/medit/BUILD
new file mode 100755
index 0000000..e013b8d
--- /dev/null
+++ b/editors/medit/BUILD
@@ -0,0 +1 @@
+cmake_build
diff --git a/editors/medit/DEPENDS b/editors/medit/DEPENDS
index d949614..184e43c 100755
--- a/editors/medit/DEPENDS
+++ b/editors/medit/DEPENDS
@@ -1,9 +1,13 @@
-depends gtk+2 &&
-optional_depends "libxml2" \
- "--with-xml" \
- "--without-xml" \
- "to enable syntax highlighting" &&
-optional_depends "pygtk2" \
- "--with-python" \
- "--without-python" \
- "to enable Python plugins"
+depends cmake &&
+depends gtk+2 &&
+depends libxml2 &&
+
+optional_depends gettext \
+ "-DENABLE_NLS=1" \
+ "-DENABLE_NLS=0" \
+ "for Native Language Support" &&
+
+optional_depends pygtk2 \
+ "-DMOO_ENABLE_PYTHON=1" \
+ "-DMOO_ENABLE_PYTHON=0" \
+ "to enable Python plugins"
diff --git a/editors/medit/DETAILS b/editors/medit/DETAILS
index ff63a3a..e9aa37f 100755
--- a/editors/medit/DETAILS
+++ b/editors/medit/DETAILS
@@ -1,14 +1,25 @@
SPELL=medit
- VERSION=0.9.4
- SOURCE="${SPELL}-${VERSION}.tar.bz2"
- SOURCE_GPG=gurus.gpg:${SOURCE}.sig:WORKS_FOR_ME
- SOURCE_URL[0]=$SOURCEFORGE_URL/mooedit/${SOURCE}
-SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
- WEB_SITE="http://mooedit.sourceforge.net/";
+ VERSION=0.10.4
+ SOURCE=$SPELL-$VERSION.tar.bz2
+
SOURCE_HASH=sha512:7d9dbaa5bd436f81cd88405f05bc9b0c9ae5015422626cc9833e2e0a823bf279c1e6d142cdd4dfffa01ea42e82c1bedbb94065fedd80d631a5c6eb2f0ab09d8e
+ SOURCE_URL[0]=$SOURCEFORGE_URL/mooedit/$SOURCE
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE=http://mooedit.sourceforge.net/
LICENSE[0]=GPL
ENTERED=20080629
- SHORT="a lightweight text editor for GTK."
+ SHORT="lightweight text editor for GTK"
cat << EOF
-medit is a text editor started originally as a simple built-in editor
component in GGAP.
-The intention now is to make it a useful programming and around-programming
text editor.
+medit is a text editor started originally as a simple built-in editor
component
+in GGAP. The intention now is to make it a useful programming and
+around-programming text editor.
+
+Features:
+ * Configurable syntax highlighting.
+ * Configurable keyboard accelerators.
+ * Multiplatform - works both on unix and windows.
+ * Plugins: can be written in C or Python.
+ * Configurable tools available from the main and context menus. They can be
+ written in Python or Lua, or it can be a shell script.
+ * Regular expression search/replace, grep and find frontends, builtin file
+ selector, etc.
EOF
diff --git a/editors/medit/HISTORY b/editors/medit/HISTORY
index dffeaac..f5cb8ab 100644
--- a/editors/medit/HISTORY
+++ b/editors/medit/HISTORY
@@ -1,3 +1,10 @@
+2010-05-24 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 0.10.4; cleaned up
+ * DEPENDS: fixed dependencies
+ * BUILD: added, to use cmake
+ * PRE_BUILD: added, to apply a patch
+ * python.patch: added, to fix python plugins install
+
2008-09-21 Pieter Lenaerts <e-type AT sourcemage.org>
* DETAILS: updated to 0.9.4

@@ -6,4 +13,3 @@

2008-06-29 Jaeic Lee <zeraxeal AT gmail.com>
* DEPENDS, DETAILS, HISTORY: spell created
-
diff --git a/editors/medit/PRE_BUILD b/editors/medit/PRE_BUILD
new file mode 100755
index 0000000..cd86bc0
--- /dev/null
+++ b/editors/medit/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+patch -p0 < "$SPELL_DIRECTORY/python.patch"
diff --git a/editors/medit/medit-0.9.4.tar.bz2.sig
b/editors/medit/medit-0.9.4.tar.bz2.sig
deleted file mode 100644
index 4060e31..0000000
Binary files a/editors/medit/medit-0.9.4.tar.bz2.sig and /dev/null differ
diff --git a/editors/medit/python.patch b/editors/medit/python.patch
new file mode 100644
index 0000000..eee83f4
--- /dev/null
+++ b/editors/medit/python.patch
@@ -0,0 +1,13 @@
+--- cmake/modules/FindMooPython.cmake.orig 2010-04-29 10:43:21.000000000
+0400
++++ cmake/modules/FindMooPython.cmake 2010-05-25 14:40:05.155318044 +0400
+@@ -1,5 +1,10 @@
+ MOO_OPTION(MOO_ENABLE_PYTHON TRUE "Enable Python" HEADER TRUE)
+
++FIND_PACKAGE(PythonInterp)
++IF(NOT PYTHONINTERP_FOUND)
++ MESSAGE(FATAL_ERROR "Python not found")
++ENDIF(NOT PYTHONINTERP_FOUND)
++
+ SET(PYTHON_DEV_FOUND FALSE)
+
+ MACRO(MOO_GET_PYTHON_SYSCONFIG_VAR var value error)



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (1ff30441096911058fc686b006f10c3eb97fa3db), Vlad Glagolev, 05/25/2010

Archive powered by MHonArc 2.6.24.

Top of Page