Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (649fc579725005ca4fb2e2a8bcf86258de9fa12b)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (649fc579725005ca4fb2e2a8bcf86258de9fa12b)
  • Date: Sun, 5 Oct 2008 18:30:04 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

ChangeLog | 5 +++++
e-17/exalt-daemon/DEPENDS | 4 ++++
e-17/exalt-daemon/DETAILS | 19 +++++++++++++++++++
e-17/exalt-daemon/HISTORY | 3 +++
e-17/exalt-daemon/PREPARE | 2 ++
e-17/exalt-daemon/PRE_BUILD | 4 ++++
e-17/exalt-daemon/init.d/exaltd | 7 +++++++
e-17/exalt/DEPENDS | 4 ++++
e-17/exalt/DETAILS | 20 ++++++++++++++++++++
e-17/exalt/HISTORY | 3 +++
e-17/exalt/PREPARE | 2 ++
e-17/exalt/PRE_BUILD | 4 ++++
e-17/libexalt/DEPENDS | 11 +++++++++++
e-17/libexalt/DETAILS | 20 ++++++++++++++++++++
e-17/libexalt/HISTORY | 4 ++++
e-17/libexalt/PREPARE | 2 ++
e-17/libexalt/PRE_BUILD | 4 ++++
e-17/libexalt_dbus/DEPENDS | 4 ++++
e-17/libexalt_dbus/DETAILS | 20 ++++++++++++++++++++
e-17/libexalt_dbus/HISTORY | 3 +++
e-17/libexalt_dbus/PREPARE | 2 ++
e-17/libexalt_dbus/PRE_BUILD | 4 ++++
22 files changed, 151 insertions(+)

New commits:
commit 6b7e7cae20125a71fe41b98a0205087d46723ffb
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

exalt*: Use correct license

commit 8b775c0e0e70baf3c42a6a7d5af0e329052b79c6
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

exalt: Added an ETK interface for the Exalt daemon

commit 08ba787dd3df360830b2ccff61dfe208770aa593
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libexalt: Added a run-time dependency on exalt-daemon

commit 413f278818950421ea2bb5d2f2b430cafeeac4f0
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libexalt_dbus: Added a library for communication with the Exalt daemon

commit d10bc8419d30fcc658510d6e68f5c1479b66c0e6
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

exalt-daemon: Added a network daemon for Exalt

commit 828eb315bf8ecd893898409e2262ad9de90334cf
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libexalt: Added a network API written in C

diff --git a/ChangeLog b/ChangeLog
index bd6e702..1e48929 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2008-10-05 Eric Sandall <sandalle AT sourcemage.org>
* e-17/exchange: Added Enlightenment project exchange
+ * e-17/libexalt: Added a network API written in C
+ * e-17/exalt-daemon: Added a network daemon for Exalt
+ * e-17/libexalt_dbus: Added library for communication with the Exalt
+ daemon
+ * e-17/exalt: Added an ETK interface for the Exalt daemon

2008-10-04 Eric Sandall <sandalle AT sourcemage.org>
* compiz-fusion/compiz-fusion: Removed renamed spell
diff --git a/e-17/exalt-daemon/DEPENDS b/e-17/exalt-daemon/DEPENDS
new file mode 100755
index 0000000..2efafaf
--- /dev/null
+++ b/e-17/exalt-daemon/DEPENDS
@@ -0,0 +1,4 @@
+depends e_dbus &&
+depends evas &&
+depends libexalt &&
+depends subversion
diff --git a/e-17/exalt-daemon/DETAILS b/e-17/exalt-daemon/DETAILS
new file mode 100755
index 0000000..a36efad
--- /dev/null
+++ b/e-17/exalt-daemon/DETAILS
@@ -0,0 +1,19 @@
+ SPELL=exalt-daemon
+if [ "$EXALTDAEMON_CVS_AUTOUPDATE" == "y" ]; then
+ VERSION=$(date +%Y%m%d)
+else
+ VERSION=svn
+fi
+ SOURCE=$SPELL-svn.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-svn
+ SOURCE_URL[0]=svn://svn.berlios.de/exalt/trunk/${SPELL/exalt-/}:$SPELL
+ FORCE_DOWNLOAD="on"
+ SOURCE_IGNORE=volatile
+ WEB_SITE=http://watchwolf.fr/wiki/doku.php?id=exalt
+ ENTERED=20081005
+ LICENSE[0]=GPL
+ KEYWORDS="network enlightenment"
+ SHORT='A network daemon for Exalt'
+cat << EOF
+The Exalt daemon manages the network configuration.
+EOF
diff --git a/e-17/exalt-daemon/HISTORY b/e-17/exalt-daemon/HISTORY
new file mode 100644
index 0000000..da7bfe3
--- /dev/null
+++ b/e-17/exalt-daemon/HISTORY
@@ -0,0 +1,3 @@
+2008-10-05 Eric Sandall <sandalle AT sourcemage.org>
+ * PREPARE, DETAILS, DEPENDS, PRE_BUILD: Created
+
diff --git a/e-17/exalt-daemon/PREPARE b/e-17/exalt-daemon/PREPARE
new file mode 100755
index 0000000..6557e40
--- /dev/null
+++ b/e-17/exalt-daemon/PREPARE
@@ -0,0 +1,2 @@
+config_query EXALTDAEMON_CVS_AUTOUPDATE \
+ "Automatically update on every system update?" n
diff --git a/e-17/exalt-daemon/PRE_BUILD b/e-17/exalt-daemon/PRE_BUILD
new file mode 100755
index 0000000..cf8ebf1
--- /dev/null
+++ b/e-17/exalt-daemon/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+touch ChangeLog &&
+NOCONFIGURE=ON ./autogen.sh
diff --git a/e-17/exalt-daemon/init.d/exaltd b/e-17/exalt-daemon/init.d/exaltd
new file mode 100755
index 0000000..39bc16a
--- /dev/null
+++ b/e-17/exalt-daemon/init.d/exaltd
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+PROGRAM=/usr/sbin/exalt-daemon
+RUNLEVEL=3
+NEEDS="smgl-messagebus hald"
+
+. /etc/init.d/smgl_init
diff --git a/e-17/exalt/DEPENDS b/e-17/exalt/DEPENDS
new file mode 100755
index 0000000..fc456cf
--- /dev/null
+++ b/e-17/exalt/DEPENDS
@@ -0,0 +1,4 @@
+depends ecore &&
+depends etk &&
+depends libexalt_dbus &&
+depends subversion
diff --git a/e-17/exalt/DETAILS b/e-17/exalt/DETAILS
new file mode 100755
index 0000000..ba2cb3a
--- /dev/null
+++ b/e-17/exalt/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=exalt
+if [ "$EXALT_CVS_AUTOUPDATE" == "y" ]; then
+ VERSION=$(date +%Y%m%d)
+else
+ VERSION=svn
+fi
+ SOURCE=$SPELL-svn.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-svn
+ SOURCE_URL[0]=svn://svn.berlios.de/$SPELL/trunk/$SPELL:$SPELL
+ FORCE_DOWNLOAD="on"
+ SOURCE_IGNORE=volatile
+ WEB_SITE=http://watchwolf.fr/wiki/doku.php?id=exalt
+ ENTERED=20081005
+ LICENSE[0]=GPL
+ KEYWORDS="network enlightenment"
+ SHORT='ETK interface for the Exalt daemon'
+cat << EOF
+Exalt is written in C and use ETK. This application allows the user to
+configure the network.
+EOF
diff --git a/e-17/exalt/HISTORY b/e-17/exalt/HISTORY
new file mode 100644
index 0000000..da7bfe3
--- /dev/null
+++ b/e-17/exalt/HISTORY
@@ -0,0 +1,3 @@
+2008-10-05 Eric Sandall <sandalle AT sourcemage.org>
+ * PREPARE, DETAILS, DEPENDS, PRE_BUILD: Created
+
diff --git a/e-17/exalt/PREPARE b/e-17/exalt/PREPARE
new file mode 100755
index 0000000..90b3ce0
--- /dev/null
+++ b/e-17/exalt/PREPARE
@@ -0,0 +1,2 @@
+config_query EXALT_CVS_AUTOUPDATE \
+ "Automatically update on every system update?" n
diff --git a/e-17/exalt/PRE_BUILD b/e-17/exalt/PRE_BUILD
new file mode 100755
index 0000000..cf8ebf1
--- /dev/null
+++ b/e-17/exalt/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+touch ChangeLog &&
+NOCONFIGURE=ON ./autogen.sh
diff --git a/e-17/libexalt/DEPENDS b/e-17/libexalt/DEPENDS
new file mode 100755
index 0000000..6f65a81
--- /dev/null
+++ b/e-17/libexalt/DEPENDS
@@ -0,0 +1,11 @@
+depends dbus &&
+depends e_dbus &&
+depends ecore &&
+depends hal &&
+depends subversion &&
+
+runtime_depends exalt-daemon &&
+
+optional_depends dhcp '' '' 'for DHCP support' &&
+optional_depends wpa_supplicant '' '' 'for WPA/WPA2 encryption' &&
+optional_depends vpnc '' '' 'for Cisco 3000 VPN support'
diff --git a/e-17/libexalt/DETAILS b/e-17/libexalt/DETAILS
new file mode 100755
index 0000000..00b3344
--- /dev/null
+++ b/e-17/libexalt/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=libexalt
+if [ "$LIBEXALT_CVS_AUTOUPDATE" == "y" ]; then
+ VERSION=$(date +%Y%m%d)
+else
+ VERSION=svn
+fi
+ SOURCE=$SPELL-svn.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-svn
+ SOURCE_URL[0]=svn://svn.berlios.de/exalt/trunk/$SPELL:$SPELL
+ FORCE_DOWNLOAD="on"
+ SOURCE_IGNORE=volatile
+ WEB_SITE=http://watchwolf.fr/wiki/doku.php?id=exalt
+ ENTERED=20081005
+ LICENSE[0]=GPL
+ KEYWORDS="network enlightenment"
+ SHORT='Network API written in C'
+cat << EOF
+A library written in C. libexalt allows to configure the network without need
+to use a low level API.
+EOF
diff --git a/e-17/libexalt/HISTORY b/e-17/libexalt/HISTORY
new file mode 100644
index 0000000..48a3186
--- /dev/null
+++ b/e-17/libexalt/HISTORY
@@ -0,0 +1,4 @@
+2008-10-05 Eric Sandall <sandalle AT sourcemage.org>
+ * PREPARE, DETAILS, DEPENDS, PRE_BUILD: Created
+ * DEPENDS: Added a run-time dependency on exalt-daemon
+
diff --git a/e-17/libexalt/PREPARE b/e-17/libexalt/PREPARE
new file mode 100755
index 0000000..910d1fc
--- /dev/null
+++ b/e-17/libexalt/PREPARE
@@ -0,0 +1,2 @@
+config_query LIBEXALT_CVS_AUTOUPDATE \
+ "Automatically update on every system update?" n
diff --git a/e-17/libexalt/PRE_BUILD b/e-17/libexalt/PRE_BUILD
new file mode 100755
index 0000000..cf8ebf1
--- /dev/null
+++ b/e-17/libexalt/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+touch ChangeLog &&
+NOCONFIGURE=ON ./autogen.sh
diff --git a/e-17/libexalt_dbus/DEPENDS b/e-17/libexalt_dbus/DEPENDS
new file mode 100755
index 0000000..c2e2878
--- /dev/null
+++ b/e-17/libexalt_dbus/DEPENDS
@@ -0,0 +1,4 @@
+depends dbus &&
+depends e_dbus &&
+depends libexalt &&
+depends subversion
diff --git a/e-17/libexalt_dbus/DETAILS b/e-17/libexalt_dbus/DETAILS
new file mode 100755
index 0000000..f5799cb
--- /dev/null
+++ b/e-17/libexalt_dbus/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=libexalt_dbus
+if [ "$LIBEXALT_DBUS_CVS_AUTOUPDATE" == "y" ]; then
+ VERSION=$(date +%Y%m%d)
+else
+ VERSION=svn
+fi
+ SOURCE=$SPELL-svn.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-svn
+ SOURCE_URL[0]=svn://svn.berlios.de/exalt/trunk/$SPELL:$SPELL
+ FORCE_DOWNLOAD="on"
+ SOURCE_IGNORE=volatile
+ WEB_SITE=http://watchwolf.fr/wiki/doku.php?id=exalt
+ ENTERED=20081005
+ LICENSE[0]=GPL
+ KEYWORDS="network enlightenment"
+ SHORT='Library for communication with the Exalt daemon'
+cat << EOF
+A library written in C. This library allows to communicate with the Exalt
+daemon.
+EOF
diff --git a/e-17/libexalt_dbus/HISTORY b/e-17/libexalt_dbus/HISTORY
new file mode 100644
index 0000000..da7bfe3
--- /dev/null
+++ b/e-17/libexalt_dbus/HISTORY
@@ -0,0 +1,3 @@
+2008-10-05 Eric Sandall <sandalle AT sourcemage.org>
+ * PREPARE, DETAILS, DEPENDS, PRE_BUILD: Created
+
diff --git a/e-17/libexalt_dbus/PREPARE b/e-17/libexalt_dbus/PREPARE
new file mode 100755
index 0000000..5ebd431
--- /dev/null
+++ b/e-17/libexalt_dbus/PREPARE
@@ -0,0 +1,2 @@
+config_query LIBEXALT_DBUS_CVS_AUTOUPDATE \
+ "Automatically update on every system update?" n
diff --git a/e-17/libexalt_dbus/PRE_BUILD b/e-17/libexalt_dbus/PRE_BUILD
new file mode 100755
index 0000000..cf8ebf1
--- /dev/null
+++ b/e-17/libexalt_dbus/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+touch ChangeLog &&
+NOCONFIGURE=ON ./autogen.sh



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (649fc579725005ca4fb2e2a8bcf86258de9fa12b), Eric Sandall, 10/05/2008

Archive powered by MHonArc 2.6.24.

Top of Page