Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (1f9991d681eea0012e93cf0fe512acfc29de3ad9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (1f9991d681eea0012e93cf0fe512acfc29de3ad9)
  • Date: Fri, 5 Sep 2008 09:31:47 -0500

GIT changes to master grimoire by Ladislav Hagara <ladislav.hagara AT unob.cz>:

net/mtr/DETAILS | 6 ++--
net/mtr/HISTORY | 4 +++
net/mtr/PRE_BUILD | 3 --
net/mtr/mtr.patch | 66
------------------------------------------------------
4 files changed, 7 insertions(+), 72 deletions(-)

New commits:
commit 1f9991d681eea0012e93cf0fe512acfc29de3ad9
Author: Ladislav Hagara <ladislav.hagara AT unob.cz>
Commit: Ladislav Hagara <ladislav.hagara AT unob.cz>

mtr 0.74

diff --git a/net/mtr/DETAILS b/net/mtr/DETAILS
index 314f2c3..6c05710 100755
--- a/net/mtr/DETAILS
+++ b/net/mtr/DETAILS
@@ -1,12 +1,12 @@
SPELL=mtr
- VERSION=0.70
+ VERSION=0.74
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=ftp://ftp.bitwizard.nl/mtr/$SOURCE
-
SOURCE_HASH=sha512:c97edb374169f1f89c4eea140f075c6f050fa4f1e1a991961868c963ef70a26ce7eb7627bcecd8d7913e2790f45447b0db3e1edfcb4b37ffac900c3394faa104
+
SOURCE_HASH=sha512:bf7ef4b60ed18898c6bbb878442e2f43a8dce2334d886517eea4df68ecd364823cc958ab21e42e2bcdaad9772a1e8cd5abee5dfb76682f5a476bfa20038c223b
WEB_SITE=http://www.bitwizard.nl/mtr/
ENTERED=20010922
- PATCHLEVEL=1
+ PATCHLEVEL=0
KEYWORDS="net"
SHORT="mtr combines the functionality of 'traceroute' and 'ping'"
cat << EOF
diff --git a/net/mtr/HISTORY b/net/mtr/HISTORY
index c827b1d..dc8b07e 100644
--- a/net/mtr/HISTORY
+++ b/net/mtr/HISTORY
@@ -1,3 +1,7 @@
+2008-09-05 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 0.74
+ * PRE_BUILD, mtr.patch: removed patch
+
2006-11-19 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* CONFIGURE: added to query for suid #11860
* INSTALL: respect suid; use the provided install and install
everything
diff --git a/net/mtr/PRE_BUILD b/net/mtr/PRE_BUILD
deleted file mode 100755
index 1566b81..0000000
--- a/net/mtr/PRE_BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-patch -p1 < $SCRIPT_DIRECTORY/mtr.patch
diff --git a/net/mtr/mtr.patch b/net/mtr/mtr.patch
deleted file mode 100644
index 3c34a6c..0000000
--- a/net/mtr/mtr.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-diff -ur mtr-0.69.orig/curses.c mtr-0.69/curses.c
---- mtr-0.69.orig/curses.c 2005-02-14 16:02:21.000000000 +0100
-+++ mtr-0.69/curses.c 2005-02-14 16:03:19.000000000 +0100
-@@ -122,7 +122,7 @@
- mvprintw(3, 0, "Size Range: %d-%d, <0 random.\n", MINPACKET, MAXPACKET);
- move(2,20);
- refresh();
-- while ( (c=getch ()) != '\n' && i < MAXFLD ) {
-+ while ( (c=getch ()) != '\n' && i < MAXFLD-1 ) {
- attron(A_BOLD); printw("%c", c); attroff(A_BOLD); refresh ();
- buf[i++] = c; /* need more checking on 'c' */
- }
-@@ -143,7 +143,7 @@
- mvprintw(3, 0, "Pattern Range: 0(0x00)-255(0xff), <0 random.\n");
- move(2,18);
- refresh();
-- while ( (c=getch ()) != '\n' && i < MAXFLD ) {
-+ while ( (c=getch ()) != '\n' && i < MAXFLD-1 ) {
- attron(A_BOLD); printw("%c", c); attroff(A_BOLD); refresh ();
- buf[i++] = c; /* need more checking on 'c' */
- }
-@@ -157,7 +157,7 @@
- mvprintw(3, 0, "default 0x00, min cost 0x02, rel 0x04,, thr 0x08, low
del 0x10...\n");
- move(2,22);
- refresh();
-- while ( (c=getch ()) != '\n' && i < MAXFLD ) {
-+ while ( (c=getch ()) != '\n' && i < MAXFLD-1 ) {
- attron(A_BOLD); printw("%c", c); attroff(A_BOLD); refresh();
- buf[i++] = c; /* need more checking on 'c' */
- }
-@@ -172,7 +172,7 @@
- mvprintw(2, 0, "Interval : %0.0f\n\n", WaitTime );
- move(2,11);
- refresh();
-- while ( (c=getch ()) != '\n' && i < MAXFLD ) {
-+ while ( (c=getch ()) != '\n' && i < MAXFLD-1 ) {
- attron(A_BOLD); printw("%c", c); attroff(A_BOLD); refresh();
- buf[i++] = c; /* need more checking on 'c' */
- }
-@@ -188,7 +188,7 @@
- mvprintw(2, 0, "First TTL: %d\n\n", fstTTL );
- move(2,11);
- refresh();
-- while ( (c=getch ()) != '\n' && i < MAXFLD ) {
-+ while ( (c=getch ()) != '\n' && i < MAXFLD-1 ) {
- attron(A_BOLD); printw("%c", c); attroff(A_BOLD); refresh();
- buf[i++] = c; /* need more checking on 'c' */
- }
-@@ -204,7 +204,7 @@
- mvprintw(2, 0, "Max TTL: %d\n\n", maxTTL );
- move(2,9);
- refresh();
-- while ( (c=getch ()) != '\n' && i < MAXFLD ) {
-+ while ( (c=getch ()) != '\n' && i < MAXFLD-1 ) {
- attron(A_BOLD); printw("%c", c); attroff(A_BOLD); refresh();
- buf[i++] = c; /* need more checking on 'c' */
- }
-@@ -229,7 +229,7 @@
- refresh();
-
- i = 0;
-- while ( (c=getch ()) != '\n' && i < MAXFLD ) {
-+ while ( (c=getch ()) != '\n' && i < MAXFLD-1 ) {
- if( strchr(available_options, c) ) {
- attron(A_BOLD); printw("%c", c); attroff(A_BOLD); refresh();
- buf[i++] = c; /* Only permit values in "available_options" be
entered */



  • [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (1f9991d681eea0012e93cf0fe512acfc29de3ad9), Ladislav Hagara, 09/05/2008

Archive powered by MHonArc 2.6.24.

Top of Page