Skip to Content.
Sympa Menu

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

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 (2e8fa18ee01edfe8bf77fc804f4d4d2342e25511)
  • Date: Fri, 23 Jan 2015 07:13:13 -0600

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

ChangeLog | 6 ++++++
python-pypi/breach_buster/DEPENDS | 2 ++
python-pypi/breach_buster/DETAILS | 15 +++++++++++++++
python-pypi/breach_buster/HISTORY | 2 ++
python-pypi/wsgigzip/DEPENDS | 2 ++
python-pypi/wsgigzip/DETAILS | 15 +++++++++++++++
python-pypi/wsgigzip/HISTORY | 5 +++++
python-pypi/wsgigzip/PRE_BUILD | 8 ++++++++
8 files changed, 55 insertions(+)

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

breach_buster: new spell, BREACH-resistant gzip middleware for Django

commit 324db382f2cd12dc15d94b0acbedd890c3e23bb4
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

wsgigzip: new spell, decorator for flup's gzip compression WSGI middleware

diff --git a/ChangeLog b/ChangeLog
index 9a683a7..1f745c0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-01-23 Vlad Glagolev <stealth AT sourcemage.org>
+ * python-pypi/wsgigzip: new spell, decorator for flup's gzip
compression
+ WSGI middleware
+ * python-pypi/breach_buster: new spell, BREACH-resistant gzip
middleware
+ for Django
+
2015-01-23 Ismael Luceno <ismael AT sourcemage.org>
* editors/ired: new spell, minimalistic hexadecimal editor

diff --git a/python-pypi/breach_buster/DEPENDS
b/python-pypi/breach_buster/DEPENDS
new file mode 100755
index 0000000..e440941
--- /dev/null
+++ b/python-pypi/breach_buster/DEPENDS
@@ -0,0 +1,2 @@
+depends PYTHON &&
+depends SETUPTOOLS
diff --git a/python-pypi/breach_buster/DETAILS
b/python-pypi/breach_buster/DETAILS
new file mode 100755
index 0000000..9a33b14
--- /dev/null
+++ b/python-pypi/breach_buster/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=breach_buster
+ VERSION=0.0.4
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]=https://pypi.python.org/packages/source/b/${SPELL}/${SOURCE}
+
SOURCE_HASH=sha512:df24f14068d78c8a36787403cc08b332e01deaa94bf145d2d7ce8026f1aaabc7951be859ea94531bc0bdad07edacc3a47985e92538b6fbf50e7ccda944a909e4
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE=https://github.com/wnyc/breach_buster
+ LICENSE[0]=GPL
+ KEYWORDS="wsgi gzip"
+ ENTERED=20150123
+ SHORT="BREACH-resistant gzip middleware for Django"
+cat << EOF
+Replacement for Django's gzip middleware. Protects against BREACH (a
backronym
+Browser Reconnaissance and Exfiltration via Adaptive Compression of
Hypertext).
+EOF
diff --git a/python-pypi/breach_buster/HISTORY
b/python-pypi/breach_buster/HISTORY
new file mode 100644
index 0000000..8fe584d
--- /dev/null
+++ b/python-pypi/breach_buster/HISTORY
@@ -0,0 +1,2 @@
+2015-01-23 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS: created spell, version 0.0.4
diff --git a/python-pypi/wsgigzip/DEPENDS b/python-pypi/wsgigzip/DEPENDS
new file mode 100755
index 0000000..503782e
--- /dev/null
+++ b/python-pypi/wsgigzip/DEPENDS
@@ -0,0 +1,2 @@
+depends python &&
+depends SETUPTOOLS
diff --git a/python-pypi/wsgigzip/DETAILS b/python-pypi/wsgigzip/DETAILS
new file mode 100755
index 0000000..c4d8e86
--- /dev/null
+++ b/python-pypi/wsgigzip/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=wsgigzip
+ VERSION=0.1
+ SOURCE="${SPELL}-${VERSION}.tar.bz2"
+ SOURCE_URL[0]=https://pypi.python.org/packages/source/w/${SPELL}/${SOURCE}
+
SOURCE_HASH=sha512:97ff75bc49679c635075f7886434462a5f2ac32b60ccad661782fc45c5f51fc678132bbbdcc3623f564fa4a8909b4bbe0fd6e498312b947da71489744845ea9c
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE=https://bitbucket.org/lcrees/wsgigzip/
+ GATHER_DOCS=off
+ LICENSE[0]=BSD
+ KEYWORDS="wsgi gzip"
+ ENTERED=20150123
+ SHORT="decorator for flup's gzip compression WSGI middleware"
+cat << EOF
+wsgigzip is a decorator for flup's gzip compression WSGI middleware.
+EOF
diff --git a/python-pypi/wsgigzip/HISTORY b/python-pypi/wsgigzip/HISTORY
new file mode 100644
index 0000000..05c9078
--- /dev/null
+++ b/python-pypi/wsgigzip/HISTORY
@@ -0,0 +1,5 @@
+2015-01-23 Vlad Glagolev <stealth AT sourcemage.org>
+ * PRE_BUILD: added, to normalize permissions
+
+2015-01-22 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS: created spell, version 0.1
diff --git a/python-pypi/wsgigzip/PRE_BUILD b/python-pypi/wsgigzip/PRE_BUILD
new file mode 100755
index 0000000..fb7e15d
--- /dev/null
+++ b/python-pypi/wsgigzip/PRE_BUILD
@@ -0,0 +1,8 @@
+default_pre_build &&
+cd "${SOURCE_DIRECTORY}" &&
+
+# convert to UNIX newline
+sedit "s/\r//g" wsgigzip/__init__.py &&
+
+# normalize permissions (required for top_level.txt on import)
+chmod -R 755 .



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (2e8fa18ee01edfe8bf77fc804f4d4d2342e25511), Vlad Glagolev, 01/23/2015

Archive powered by MHonArc 2.6.24.

Top of Page