Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (2c77f9b8875d5f77aad5b3a8bcdbc52a6b448db9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (2c77f9b8875d5f77aad5b3a8bcdbc52a6b448db9)
  • Date: Sat, 12 Jun 2010 04:45:45 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

http/tinyproxy/BUILD | 3 +++
http/tinyproxy/CONFIGURE | 21 +++++++++++++++++++++
http/tinyproxy/DEPENDS | 5 +++++
http/tinyproxy/DETAILS | 10 +++++-----
http/tinyproxy/HISTORY | 6 ++++++
http/tinyproxy/PRE_BUILD | 6 ++++++
http/tinyproxy/nodoc.patch | 10 ++++++++++
7 files changed, 56 insertions(+), 5 deletions(-)

New commits:
commit 2c77f9b8875d5f77aad5b3a8bcdbc52a6b448db9
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

tinyproxy: => 1.8.2

diff --git a/http/tinyproxy/BUILD b/http/tinyproxy/BUILD
new file mode 100755
index 0000000..b8ff48f
--- /dev/null
+++ b/http/tinyproxy/BUILD
@@ -0,0 +1,3 @@
+OPTS="$TINYPROXY_OPTS $OPTS" &&
+
+default_build
diff --git a/http/tinyproxy/CONFIGURE b/http/tinyproxy/CONFIGURE
new file mode 100755
index 0000000..ce1490a
--- /dev/null
+++ b/http/tinyproxy/CONFIGURE
@@ -0,0 +1,21 @@
+config_query TINYPROXY_DOCS "Build the documentation?" n &&
+
+config_query_option TINYPROXY_OPTS "Include the X-Tinyproxy header?" y \
+ "--enable-xtinyproxy" \
+ "--disable-xtinyproxy" &&
+
+config_query_option TINYPROXY_OPTS "Enable filtering of domains/URLs?" y \
+ "--enable-filter" \
+ "--disable-filter" &&
+
+config_query_option TINYPROXY_OPTS "Enable upstream proxying?" y \
+ "--enable-upstream" \
+ "--disable-upstream" &&
+
+config_query_option TINYPROXY_OPTS "Enable reverse proxying?" n \
+ "--enable-reverse" \
+ "--disable-reverse" &&
+
+config_query_option TINYPROXY_OPTS "Enable transparent proxying code?" n \
+ "--enable-transparent" \
+ "--disable-transparent"
diff --git a/http/tinyproxy/DEPENDS b/http/tinyproxy/DEPENDS
new file mode 100755
index 0000000..dac3b1b
--- /dev/null
+++ b/http/tinyproxy/DEPENDS
@@ -0,0 +1,5 @@
+if [[ $TINYPROXY_DOCS == y ]]; then
+ depends asciidoc &&
+ depends docbook-dtd &&
+ depends docbook-xsl
+fi
diff --git a/http/tinyproxy/DETAILS b/http/tinyproxy/DETAILS
index 239dc87..64ed414 100755
--- a/http/tinyproxy/DETAILS
+++ b/http/tinyproxy/DETAILS
@@ -1,13 +1,13 @@
SPELL=tinyproxy
- VERSION=1.6.3
- SOURCE="${SPELL}-${VERSION}.tar.gz"
+ VERSION=1.8.2
+ SOURCE=${SPELL}-${VERSION}.tar.gz
SOURCE_URL[0]=http://www.banu.com/pub/${SPELL}/${VERSION:0:3}/${SOURCE}
-
SOURCE_HASH=sha512:2029ebbad8f9720b0ef73f53e4f78b57dd51694036b578864f9e60073eeb2c1ff2ed7b360e26372c441b02126b18bd48d89ec5cfe15f90d18c9229b1d9a11eff
+
SOURCE_HASH=sha512:02d71d982dc291fe3e879ea6afb3f12a474de5ad143afc2b686bd8eb4540d02551c19132042624fd1bfd57536b37665f6a2bea0b6ebbb60255c7d034ca311f2b
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
- WEB_SITE="http://www.banu.com/tinyproxy/";
+ WEB_SITE=http://www.banu.com/tinyproxy/
LICENSE[0]=GPL
ENTERED=20080819
- SHORT="a fast light-weight http proxy server"
+ SHORT="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
diff --git a/http/tinyproxy/HISTORY b/http/tinyproxy/HISTORY
index cb5d8ff..5e544dd 100644
--- a/http/tinyproxy/HISTORY
+++ b/http/tinyproxy/HISTORY
@@ -1,2 +1,8 @@
+2010-06-11 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.8.2
+ * DEPENDS: added, for required dependencies
+ * BUILD, CONFIGURE: added, for build options
+ * PRE_BUILD, nodoc.patch: added for ability to build without docs
+
2008-08-19 Martin Spitzbarth <m.spitzbarth AT gmx.de>
* DETAILS: spell created
diff --git a/http/tinyproxy/PRE_BUILD b/http/tinyproxy/PRE_BUILD
new file mode 100755
index 0000000..3c6ea1c
--- /dev/null
+++ b/http/tinyproxy/PRE_BUILD
@@ -0,0 +1,6 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+if [[ $TINYPROXY_DOCS == n ]]; then
+ patch -p0 < "$SPELL_DIRECTORY/nodoc.patch"
+fi
diff --git a/http/tinyproxy/nodoc.patch b/http/tinyproxy/nodoc.patch
new file mode 100644
index 0000000..85bc96e
--- /dev/null
+++ b/http/tinyproxy/nodoc.patch
@@ -0,0 +1,10 @@
+--- Makefile.am.orig
++++ Makefile.am
+@@ -2,7 +2,6 @@
+ src \
+ data \
+ etc \
+- docs \
+ m4macros \
+ tests
+



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (2c77f9b8875d5f77aad5b3a8bcdbc52a6b448db9), Vlad Glagolev, 06/12/2010

Archive powered by MHonArc 2.6.24.

Top of Page