Skip to Content.
Sympa Menu

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

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 (441731c20a81c5ef679137437a079d1b78104811)
  • Date: Sat, 13 Feb 2010 16:56:05 -0600

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

dev/null |binary
editors/nano/DETAILS | 3 -
editors/nano/HISTORY | 4 ++
editors/nano/PRE_BUILD | 4 --
editors/nano/nano-2.2.0.tar.gz.sig | 0
editors/nano/nano-2.2.3.tar.gz.sig |binary
editors/nano/nowrap.patch | 64
-------------------------------------
7 files changed, 5 insertions(+), 70 deletions(-)

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

nano: => 2.2.3

diff --git a/editors/nano/DETAILS b/editors/nano/DETAILS
index 5389f83..83659be 100755
--- a/editors/nano/DETAILS
+++ b/editors/nano/DETAILS
@@ -1,6 +1,5 @@
SPELL=nano
- VERSION=2.2.0
- PATCHLEVEL=1
+ VERSION=2.2.3
BRANCH=`echo $VERSION | cut -d . -f 1,2`
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_GPG=gurus.gpg:${SOURCE}.sig:WORKS_FOR_ME
diff --git a/editors/nano/HISTORY b/editors/nano/HISTORY
index 03ce9e7..f1d30da 100644
--- a/editors/nano/HISTORY
+++ b/editors/nano/HISTORY
@@ -1,3 +1,7 @@
+2010-02-14 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 2.2.3
+ * PRE_BUILD, nowrap.patch: removed
+
2009-12-05 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: PATCHLEVEL=1
* PRE_BUILD: added, to apply the patch
diff --git a/editors/nano/PRE_BUILD b/editors/nano/PRE_BUILD
deleted file mode 100755
index f358167..0000000
--- a/editors/nano/PRE_BUILD
+++ /dev/null
@@ -1,4 +0,0 @@
-default_pre_build &&
-cd "$SOURCE_DIRECTORY" &&
-
-patch -p0 < "$SPELL_DIRECTORY/nowrap.patch"
diff --git a/editors/nano/nano-2.2.0.tar.gz.sig
b/editors/nano/nano-2.2.0.tar.gz.sig
deleted file mode 100644
index 15aee6b..0000000
Binary files a/editors/nano/nano-2.2.0.tar.gz.sig and /dev/null differ
diff --git a/editors/nano/nano-2.2.3.tar.gz.sig
b/editors/nano/nano-2.2.3.tar.gz.sig
new file mode 100644
index 0000000..a1e220a
Binary files /dev/null and b/editors/nano/nano-2.2.3.tar.gz.sig differ
diff --git a/editors/nano/nowrap.patch b/editors/nano/nowrap.patch
deleted file mode 100644
index a60a99d..0000000
--- a/editors/nano/nowrap.patch
+++ /dev/null
@@ -1,64 +0,0 @@
---- src/text.c.orig 2009-11-29 09:12:39.000000000 +0300
-+++ src/text.c 2009-12-05 23:23:22.373425488 +0300
-@@ -481,6 +481,7 @@
- if (u->xflags == UNDO_DEL_BACKSPACE)
- openfile->current_x += strlen(u->strdata);
- break;
-+#ifndef DISABLE_WRAPPING
- case SPLIT:
- undidmsg = _("line wrap");
- f->data = (char *) nrealloc(f->data, strlen(f->data) +
strlen(u->strdata) + 1);
-@@ -494,6 +495,7 @@
- }
- renumber(f);
- break;
-+#endif /* DISABLE_WRAPPING */
- case UNSPLIT:
- undidmsg = _("line join");
- t = make_new_node(f);
-@@ -618,6 +620,7 @@
- do_gotolinecolumn(u->lineno, u->begin+1, FALSE, FALSE, FALSE, FALSE);
- do_enter(TRUE);
- break;
-+#ifndef DISABLE_WRAPPING
- case SPLIT:
- undidmsg = _("line wrap");
- if (u->xflags & UNDO_SPLIT_MADENEW)
-@@ -625,6 +628,7 @@
- do_wrap(f, TRUE);
- renumber(f);
- break;
-+#endif /* DISABLE_WRAPPING */
- case UNSPLIT:
- undidmsg = _("line join");
- len = strlen(f->data) + strlen(u->strdata + 1);
-@@ -900,6 +904,7 @@
- u->strdata = data;
- }
- break;
-+#ifndef DISABLE_WRAPPING
- case SPLIT:
- wrap_loc = break_line(openfile->current->data, fill
- #ifndef DISABLE_HELP
-@@ -913,6 +918,7 @@
- u->strdata2 = mallocstrcpy(NULL, fs->current->next->data);
- u->begin = wrap_loc;
- break;
-+#endif /* DISABLE_WRAPPING */
- case INSERT:
- case REPLACE:
- data = mallocstrcpy(NULL, fs->current->data);
-@@ -1058,11 +1064,13 @@
- case INSERT:
- u->mark_begin_lineno = openfile->current->lineno;
- break;
-+#ifndef DISABLE_WRAPPING
- case SPLIT:
- /* This will only be called if we made a completely new line,
- and as such we should note that so we can destroy it later */
- u->xflags = UNDO_SPLIT_MADENEW;
- break;
-+#endif /* DISABLE_WRAPPING */
- case UNSPLIT:
- /* These cases are handled by the earlier check for a new line and
action */
- case ENTER:



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (441731c20a81c5ef679137437a079d1b78104811), Vlad Glagolev, 02/13/2010

Archive powered by MHonArc 2.6.24.

Top of Page