Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Martin Spitzbarth (a17105f7f510f64e267eeee5ecb9d6ba6f147878)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Martin Spitzbarth <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Martin Spitzbarth (a17105f7f510f64e267eeee5ecb9d6ba6f147878)
  • Date: Tue, 19 Aug 2008 13:38:49 -0500

GIT changes to master grimoire by Martin Spitzbarth <m.spitzbarth AT gmx.de>:

ChangeLog | 3 +++
ftp/wget/HISTORY | 3 +++
ftp/wget/PRE_SUB_DEPENDS | 5 +++++
ftp/wget/SUB_DEPENDS | 4 ++++
http/tinyproxy/DETAILS | 20 ++++++++++++++++++++
http/tinyproxy/HISTORY | 2 ++
smgl/quill/DEPENDS | 1 +
smgl/quill/HISTORY | 3 +++
8 files changed, 41 insertions(+)

New commits:
commit a17105f7f510f64e267eeee5ecb9d6ba6f147878
Author: Martin Spitzbarth <m.spitzbarth AT gmx.de>
Commit: Martin Spitzbarth <m.spitzbarth AT gmx.de>

quill: added wget with openssl as a sub_depend

commit 7ab5605ca1a2a76aa28035c6e33359752867c7c9
Author: Martin Spitzbarth <m.spitzbarth AT gmx.de>
Commit: Martin Spitzbarth <m.spitzbarth AT gmx.de>

wget: added openssl as a sub_depend target

commit 6f011b75a8d8aa1aa886547ffb00cb9467e217a5
Author: Martin Spitzbarth <m.spitzbarth AT gmx.de>
Commit: Martin Spitzbarth <m.spitzbarth AT gmx.de>

tinyproxy: new spell, a fast light-weight http proxy

diff --git a/ChangeLog b/ChangeLog
index 85ad0e5..d755a90 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2008-08-19 Martin Spitzbarth <m.spitzbarth AT gmx.de>
+ * http/tinyproxy: new spell, a fast light-weight http proxy
+
2008-08-19 Robert Figura <rfigura AT sourcemage.org>
* volatiles: fixed regex for perllocal.pod

diff --git a/ftp/wget/HISTORY b/ftp/wget/HISTORY
index 83df133..28f126a 100644
--- a/ftp/wget/HISTORY
+++ b/ftp/wget/HISTORY
@@ -1,3 +1,6 @@
+2008-18-19 Martin Spitzbarth <m.spitzbarth AT gmx.de>
+ * SUB_DEPENDS, PRE_SUB_DEPENDS: Added openssl as a sub_depend target
+
2008-06-30 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.11.4

diff --git a/ftp/wget/PRE_SUB_DEPENDS b/ftp/wget/PRE_SUB_DEPENDS
new file mode 100755
index 0000000..60262a7
--- /dev/null
+++ b/ftp/wget/PRE_SUB_DEPENDS
@@ -0,0 +1,5 @@
+case $THIS_SUB_DEPENDS in
+openssl) is_depends_enabled $SPELL openssl && return 0 ;;
+ *) echo "unknown sub_depends!" ;;
+esac
+return 1
diff --git a/ftp/wget/SUB_DEPENDS b/ftp/wget/SUB_DEPENDS
new file mode 100755
index 0000000..000017c
--- /dev/null
+++ b/ftp/wget/SUB_DEPENDS
@@ -0,0 +1,4 @@
+case $THIS_SUB_DEPENDS in
+openssl) depends openssl ;;
+ *) echo "unknown sub_depends $THIS_SUB_DEPENDS"; false ;;
+esac
diff --git a/http/tinyproxy/DETAILS b/http/tinyproxy/DETAILS
new file mode 100755
index 0000000..239dc87
--- /dev/null
+++ b/http/tinyproxy/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=tinyproxy
+ VERSION=1.6.3
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://www.banu.com/pub/${SPELL}/${VERSION:0:3}/${SOURCE}
+
SOURCE_HASH=sha512:2029ebbad8f9720b0ef73f53e4f78b57dd51694036b578864f9e60073eeb2c1ff2ed7b360e26372c441b02126b18bd48d89ec5cfe15f90d18c9229b1d9a11eff
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://www.banu.com/tinyproxy/";
+ LICENSE[0]=GPL
+ ENTERED=20080819
+ SHORT="a fast light-weight http proxy server"
+cat << EOF
+Tinyproxy is a fast light-weight HTTP proxy for POSIX operating systems,
+released under the GNU GPL license. Designed from the ground up to be fast
and
+yet small, it is an ideal solution for use cases such as embedded deployments
+where a full featured HTTP proxy is required, but the system resources for a
+larger proxy are unavailable.
+
+Tinyproxy is fully compatible with popular web browsers and has a number of
+useful features.
+EOF
diff --git a/http/tinyproxy/HISTORY b/http/tinyproxy/HISTORY
new file mode 100644
index 0000000..cb5d8ff
--- /dev/null
+++ b/http/tinyproxy/HISTORY
@@ -0,0 +1,2 @@
+2008-08-19 Martin Spitzbarth <m.spitzbarth AT gmx.de>
+ * DETAILS: spell created
diff --git a/smgl/quill/DEPENDS b/smgl/quill/DEPENDS
index 75b1f95..74295b6 100755
--- a/smgl/quill/DEPENDS
+++ b/smgl/quill/DEPENDS
@@ -1,3 +1,4 @@
+depends -sub openssl wget &&
if [[ $QUILL_GIT == y ]]
then
depends git
diff --git a/smgl/quill/HISTORY b/smgl/quill/HISTORY
index e29f273..98084f7 100644
--- a/smgl/quill/HISTORY
+++ b/smgl/quill/HISTORY
@@ -1,3 +1,6 @@
+2008-08-19 Martin Spitzbarth <m.spitzbarth AT gmx.de>
+ * DEPENDS: added wget with openssl as a sub_depend
+
2008-07-18 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* PREPARE: removed the paranoid warning




  • [SM-Commit] GIT changes to master grimoire by Martin Spitzbarth (a17105f7f510f64e267eeee5ecb9d6ba6f147878), Martin Spitzbarth, 08/19/2008

Archive powered by MHonArc 2.6.24.

Top of Page