Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (15173286639c7f42e2b151734f82de2f71fe4f7b)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (15173286639c7f42e2b151734f82de2f71fe4f7b)
  • Date: Sat, 21 Nov 2015 19:06:26 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

dev/null |binary
mobile/wavemon/BUILD | 2
mobile/wavemon/DETAILS | 10 ++--
mobile/wavemon/HISTORY | 8 +++
mobile/wavemon/PRE_BUILD | 5 --
mobile/wavemon/wavemon-gcc-fixes.patch | 70
---------------------------------
6 files changed, 15 insertions(+), 80 deletions(-)

New commits:
commit 15173286639c7f42e2b151734f82de2f71fe4f7b
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

wavemon 0.7.6

diff --git a/mobile/wavemon/BUILD b/mobile/wavemon/BUILD
new file mode 100755
index 0000000..d8cf986
--- /dev/null
+++ b/mobile/wavemon/BUILD
@@ -0,0 +1,2 @@
+# To fix build errors due to missing symbols
+LIBS="$LIBS -lpthread" default_build
diff --git a/mobile/wavemon/DETAILS b/mobile/wavemon/DETAILS
index 347475f..836058d 100755
--- a/mobile/wavemon/DETAILS
+++ b/mobile/wavemon/DETAILS
@@ -1,10 +1,10 @@
SPELL=wavemon
- VERSION=0.4.0b
- SOURCE=$SPELL-current.tar.gz
+ VERSION=0.7.6
+ SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=http://www.janmorgenstern.de/$SOURCE
- SOURCE_GPG=gurus.gpg:$SOURCE.sig
- WEB_SITE=http://www.janmorgenstern.de/projects-software.html
+ SOURCE_URL[0]=https://github.com/uoaerg/$SPELL/archive/v$VERSION.tar.gz
+
SOURCE_HASH=sha512:d5863bd5ea4ead763b07eb723a2017d1ad53708f5a92cd90522aa508e144f02b60a7ad1123291e635e83b2e88d03be09f54e1ea7e2c2831bd07dc907d2d621af
+ WEB_SITE=https://github.com/uoaerg/wavemon
ENTERED=20060302
LICENSE[0]=GPL
KEYWORDS="wireless mobile"
diff --git a/mobile/wavemon/HISTORY b/mobile/wavemon/HISTORY
index 90620fb..3b1301b 100644
--- a/mobile/wavemon/HISTORY
+++ b/mobile/wavemon/HISTORY
@@ -1,3 +1,11 @@
+2015-11-21 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: Fixed SOURCE_URL[0]
+ fixed WEB_SITE
+ updated spell to 0.7.6
+ * wavemon-current.tar.gz.sig: removed, switched to hash
+ * PRE_BUILD, wavemon-gcc-fixes.patch: removed, no longer needed
+ * BUILD: Added, fixes build error due to missing symbols
+
2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED.

diff --git a/mobile/wavemon/PRE_BUILD b/mobile/wavemon/PRE_BUILD
deleted file mode 100755
index 31177f0..0000000
--- a/mobile/wavemon/PRE_BUILD
+++ /dev/null
@@ -1,5 +0,0 @@
-default_pre_build &&
-
-cd $SOURCE_DIRECTORY &&
-# patch so it builds on recent gcc, courtesy of gentoo
-patch -p1 < $SCRIPT_DIRECTORY/wavemon-gcc-fixes.patch
diff --git a/mobile/wavemon/wavemon-current.tar.gz.sig
b/mobile/wavemon/wavemon-current.tar.gz.sig
deleted file mode 100644
index e3d5637..0000000
Binary files a/mobile/wavemon/wavemon-current.tar.gz.sig and /dev/null differ
diff --git a/mobile/wavemon/wavemon-gcc-fixes.patch
b/mobile/wavemon/wavemon-gcc-fixes.patch
deleted file mode 100644
index f89728a..0000000
--- a/mobile/wavemon/wavemon-gcc-fixes.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-diff -ur wavemon-0.4.0b-orig/conf.c wavemon-0.4.0b/conf.c
---- wavemon-0.4.0b-orig/conf.c 2005-07-08 23:49:09.000000000 -0400
-+++ wavemon-0.4.0b/conf.c 2005-07-08 23:48:05.000000000 -0400
-@@ -409,8 +409,8 @@
-
fatal_error("parse error in %s, line %d: '%s' is not a valid argument
here", cfname, lnum, rv);
- }
- break;
-- case t_sep: /* gcc -Wall sucks */
-- case t_func:
-+ case t_sep: ; /* gcc -Wall sucks */
-+ case t_func: ;
- }
- }
- }
-@@ -481,7 +481,7 @@
- break;
- case t_listval: sprintf(rv, "%s", (char
*)ci->v);
- case t_sep: break;
-- case t_func:
-+ case t_func: ;
- }
-
- add = 1;
-diff -ur wavemon-0.4.0b-orig/conf_scr.c wavemon-0.4.0b/conf_scr.c
---- wavemon-0.4.0b-orig/conf_scr.c 2005-07-08 23:49:09.000000000 -0400
-+++ wavemon-0.4.0b/conf_scr.c 2005-07-08 23:48:05.000000000 -0400
-@@ -63,7 +63,7 @@
- case t_listval: strncpy(s, (char *)item->v, 32);
- break;
- case t_sep: /* gcc -Wall sucks */
-- case t_func:
-+ case t_func: ;
- }
-
- if (!item->unit) {
-@@ -135,8 +135,8 @@
- }
- strncpy((char *)item->v,
ll_get(item->list, tmp), 32);
- break;
-- case t_sep: /* gcc -Wall sucks */
-- case t_func:
-+ case t_sep: ; /* gcc -Wall sucks */
-+ case t_func: ;
- }
- }
-
-diff -ur wavemon-0.4.0b-orig/llist.c wavemon-0.4.0b/llist.c
---- wavemon-0.4.0b-orig/llist.c 2005-07-08 23:46:09.000000000 -0400
-+++ wavemon-0.4.0b/llist.c 2005-07-08 23:47:28.000000000 -0400
-@@ -352,7 +352,7 @@
- *((int *)l->e) = va_arg(*ap, int);
- break;
- case 's': l->e = (void *)malloc(sizeof(char *));
-- (char *)l->e = strdup(va_arg(*ap,
char *));
-+ l->e = strdup(va_arg(*ap, char *));
- break;
- case 'f': l->e = (void *)malloc(sizeof(double));
- *((double *)l->e) = va_arg(*ap,
double);
-diff -ur wavemon-0.4.0b-orig/wavemon.c wavemon-0.4.0b/wavemon.c
---- wavemon-0.4.0b-orig/wavemon.c 2005-07-08 23:49:09.000000000 -0400
-+++ wavemon-0.4.0b/wavemon.c 2005-07-08 23:48:05.000000000 -0400
-@@ -170,7 +170,7 @@
-
- if (conf.dump == 1) {
- dump_parameters(&conf);
-- exit();
-+ exit(0);
- }
-
- /* initialize the ncurses interface */



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (15173286639c7f42e2b151734f82de2f71fe4f7b), Ismael Luceno, 11/21/2015

Archive powered by MHonArc 2.6.24.

Top of Page