Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Tommy Boatman (37c454a752eb82677a0a690ff4bd2ccd510ed6ba)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Tommy Boatman <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Tommy Boatman (37c454a752eb82677a0a690ff4bd2ccd510ed6ba)
  • Date: Wed, 21 Apr 2010 23:16:01 -0500

GIT changes to master grimoire by Tommy Boatman <tboatman AT sourcemage.org>:

ham/ax25-apps/BUILD | 17 -----------------
ham/ax25-apps/CONFIGURE | 1 +
ham/ax25-apps/DETAILS | 8 ++++----
ham/ax25-apps/HISTORY | 6 ++++++
ham/ax25-apps/INSTALL | 4 ++++
ham/ax25-tools/BUILD | 17 -----------------
ham/ax25-tools/CONFIGURE | 1 +
ham/ax25-tools/DETAILS | 8 ++++----
ham/ax25-tools/HISTORY | 6 ++++++
ham/ax25-tools/INSTALL | 4 ++++
ham/libax25/DETAILS | 8 ++++----
ham/libax25/HISTORY | 4 ++++
12 files changed, 38 insertions(+), 46 deletions(-)

New commits:
commit 37c454a752eb82677a0a690ff4bd2ccd510ed6ba
Author: Tommy Boatman <tboatman AT sourcemage.org>
Commit: Tommy Boatman <tboatman AT sourcemage.org>

ax25-tools: version 0.0.10-rc2, remove BUILD, CONFIGURE/INSTALL
for example configs

commit 29189705634ff5b379a9a692eb544864c43763f7
Author: Tommy Boatman <tboatman AT sourcemage.org>
Commit: Tommy Boatman <tboatman AT sourcemage.org>

ax25-apps: version 0.0.8-rc2, remove BUILD, add CONFIGURE/INSTALL
for example files

commit 917caec9f112075c9c1a59d9bfb9190aa03334e5
Author: Tommy Boatman <tboatman AT sourcemage.org>
Commit: Tommy Boatman <tboatman AT sourcemage.org>

libax25: version bump to 0.0.12-rc2 (latest release)
move WEB_SITE and SOURCE_URL

diff --git a/ham/ax25-apps/BUILD b/ham/ax25-apps/BUILD
deleted file mode 100755
index a43b6ce..0000000
--- a/ham/ax25-apps/BUILD
+++ /dev/null
@@ -1,17 +0,0 @@
-(
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- $OPTS &&
- make &&
- prepare_install &&
- make install-strip &&
-
-if query "Do you want the example config files?" n
- then make installconf
-fi
-
-) > $C_FIFO 2>&1
-
-
diff --git a/ham/ax25-apps/CONFIGURE b/ham/ax25-apps/CONFIGURE
new file mode 100755
index 0000000..ec11033
--- /dev/null
+++ b/ham/ax25-apps/CONFIGURE
@@ -0,0 +1 @@
+config_query CONFIGS "Install example config files?" n
diff --git a/ham/ax25-apps/DETAILS b/ham/ax25-apps/DETAILS
index 01bd099..6c23a97 100755
--- a/ham/ax25-apps/DETAILS
+++ b/ham/ax25-apps/DETAILS
@@ -1,12 +1,12 @@
SPELL=ax25-apps
- VERSION=0.0.6
+ VERSION=0.0.8-rc2
SOURCE=${SPELL}-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=${SOURCEFORGE_URL}/ax25/${SOURCE}
- WEB_SITE=http://ax25.sourceforge.net/
+ SOURCE_URL[0]=http://www.linux-ax25.org/pub/$SPELL/${SOURCE}
+ WEB_SITE=http://www.linux-ax25.org/
ENTERED=20020731
LICENSE=GPL
-
SOURCE_HASH=sha512:f9628fa3431896c7bda6d8b44cb1df2a29831ac77efa710de64a5963e7beb7f5c16d4e7a4bedaf3c907345224378d6290b7c86b677ef3f5fbb55812af09b871e
+
SOURCE_HASH=sha512:b001f201234f99951e076494f0eded512e5638f6e585892c38f3fdd465c09df073a5dff2898e340357f996fd4e97657e09a1d7f8bf7a05d9d33da38cf2d2bc60
KEYWORDS="ham"
BUILD_API=1
SHORT="Applications for AX.25"
diff --git a/ham/ax25-apps/HISTORY b/ham/ax25-apps/HISTORY
index b046e97..7289ad5 100644
--- a/ham/ax25-apps/HISTORY
+++ b/ham/ax25-apps/HISTORY
@@ -1,3 +1,9 @@
+2010-04-21 Tommy Boatman <tboatman AT sourcemage.org>
+ * DETAILS: version 0.0.8-rc2, move WEB_SITE and SOURCE_URL,
+ * INSTALL: create to allow for example installation
+ * CONFIGURE: create to allow for example installation
+ * BUILD: removed
+
2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED.

diff --git a/ham/ax25-apps/INSTALL b/ham/ax25-apps/INSTALL
new file mode 100755
index 0000000..a411889
--- /dev/null
+++ b/ham/ax25-apps/INSTALL
@@ -0,0 +1,4 @@
+if [[ $CONFIGS == y ]]; then
+ cd $SOURCE_DIRECTORY &&
+ make installconf
+fi
diff --git a/ham/ax25-tools/BUILD b/ham/ax25-tools/BUILD
deleted file mode 100755
index 658ce28..0000000
--- a/ham/ax25-tools/BUILD
+++ /dev/null
@@ -1,17 +0,0 @@
-(
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- $OPTS &&
- make &&
- prepare_install &&
-# make install-strip && #this is broken in the tools spell
-
-if query "Do you want the example config files?" n
- then make installconf
-fi
-
-) > $C_FIFO 2>&1
-
-
diff --git a/ham/ax25-tools/CONFIGURE b/ham/ax25-tools/CONFIGURE
new file mode 100755
index 0000000..ec11033
--- /dev/null
+++ b/ham/ax25-tools/CONFIGURE
@@ -0,0 +1 @@
+config_query CONFIGS "Install example config files?" n
diff --git a/ham/ax25-tools/DETAILS b/ham/ax25-tools/DETAILS
index fb73d38..74d54f2 100755
--- a/ham/ax25-tools/DETAILS
+++ b/ham/ax25-tools/DETAILS
@@ -1,12 +1,12 @@
SPELL=ax25-tools
- VERSION=0.0.8
+ VERSION=0.0.10-rc2
SOURCE=${SPELL}-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=${SOURCEFORGE_URL}/ax25/${SOURCE}
- WEB_SITE=http://ax25.sourceforge.net/
+ SOURCE_URL[0]=http://www.linux-ax25.org/pub/$SPELL/${SOURCE}
+ WEB_SITE=http://www.linux-ax25.org/
ENTERED=20020731
LICENSE=GPL
-
SOURCE_HASH=sha512:04165052d51711fca0348129a93e7f3d2319b0c06535d37323448b7126b7435e2fbefa388a7159546ca9eb18090fd02972440be64d6131d6541a1936594c98d6
+
SOURCE_HASH=sha512:ca6042682e8da9136edaefe7c137d8a1626a82ba4c1d5de98c37d0e9b9b2ee1934986b203bdf6d870152a0b778812731dc58b889b806cad8e30a102e702612ae
KEYWORDS="ham"
BUILD_API=1
SHORT="Configuration tools for AX.25"
diff --git a/ham/ax25-tools/HISTORY b/ham/ax25-tools/HISTORY
index b046e97..c8830b5 100644
--- a/ham/ax25-tools/HISTORY
+++ b/ham/ax25-tools/HISTORY
@@ -1,3 +1,9 @@
+2010-04-21 Tommy Boatman <tboatman AT sourcemage.org>
+ * DETAILS: version 0.0.10-rc2, move WEB_SITE and SOURCE_URL,
+ * INSTALL: create to allow for example installation
+ * CONFIGURE: create to allow for example installation
+ * BUILD: removed
+
2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED.

diff --git a/ham/ax25-tools/INSTALL b/ham/ax25-tools/INSTALL
new file mode 100755
index 0000000..a411889
--- /dev/null
+++ b/ham/ax25-tools/INSTALL
@@ -0,0 +1,4 @@
+if [[ $CONFIGS == y ]]; then
+ cd $SOURCE_DIRECTORY &&
+ make installconf
+fi
diff --git a/ham/libax25/DETAILS b/ham/libax25/DETAILS
index d02730c..a7e5f2c 100755
--- a/ham/libax25/DETAILS
+++ b/ham/libax25/DETAILS
@@ -1,12 +1,12 @@
SPELL=libax25
- VERSION=0.0.11
+ VERSION=0.0.12-rc2
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=$SOURCEFORGE_URL/ax25/$SOURCE
- WEB_SITE=http://ax25.sourceforge.net/
+ SOURCE_URL[0]=http://www.linux-ax25.org/pub/$SPELL/$SOURCE
+ WEB_SITE=http://www.linux-ax25.org/
ENTERED=20020731
LICENSE=GPL
-
SOURCE_HASH=sha512:c26e16659cc13e844a44a6978e89744eb0d3a2398c5e4cde5c84ec94fbaabe76d733e7b9da99087607edd0a4672c52689449548c5935ea59bc7bc5a24bf4ba6c
+
SOURCE_HASH=sha512:4ef09d9436b97685c9836403c9d86b66a4c555db72ffee5d512929014f0fe9fc75c893e9a65aa080d75beab440da75028d512f192a36d55b157c4bb92cbbadbe
KEYWORDS="ham"
SHORT="Libraries for AX.25"
cat << EOF
diff --git a/ham/libax25/HISTORY b/ham/libax25/HISTORY
index 6a11717..6927f60 100644
--- a/ham/libax25/HISTORY
+++ b/ham/libax25/HISTORY
@@ -1,3 +1,7 @@
+2010-04-21 Tommy Boatman <tboatman AT sourcemage.org>
+ * DETAILS: version 0.0.12-rc2,
+ move WEB_SITE and SOURCE_URL to www.linux-ax25.org
+
2007-05-17 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* DETAILS: removed BUILD_API=1 and some cosmetic changes
* INSTALL: added some BUILD remnants




Archive powered by MHonArc 2.6.24.

Top of Page