Skip to Content.
Sympa Menu

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

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 (d47ed873a813ccc551e767da71c827711f2012ad)
  • Date: Mon, 16 Mar 2015 04:28:27 -0500

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

ChangeLog | 7 +++++--
chat-im/gajim/DEPENDS | 1 +
chat-im/gajim/HISTORY | 3 +++
python-pypi/enum34/DEPENDS | 1 +
python-pypi/enum34/DETAILS | 14 ++++++++++++++
python-pypi/enum34/HISTORY | 2 ++
python-pypi/pyopenssl/DEPENDS | 5 ++++-
python-pypi/pyopenssl/HISTORY | 3 +++
python-pypi/python-cryptography/DEPENDS | 6 ++++++
python-pypi/python-cryptography/DETAILS | 23 +++++++++++++++++++++++
python-pypi/python-cryptography/HISTORY | 2 ++
11 files changed, 64 insertions(+), 3 deletions(-)

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

pyopenssl: added missing runtime dependency -- python-cryptography

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

python-cryptography: new spell, Python cryptographic recipes and
primitives

commit 732978f988e157973e0445f04f18d65a23395b26
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

enum34: new spell, support for enumerations

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

gajim: added missing suggest dependency -- bind-tools

diff --git a/ChangeLog b/ChangeLog
index ce74c43..6c93b53 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
2015-03-16 Vlad Glagolev <stealth AT sourcemage.org>
- net/isc.gpg: added 911A4C02 public key (Internet Systems Consortium,
- Inc. (Signing key, 2015-2016) <codesign AT isc.org>)
+ * net/isc.gpg: added 911A4C02 public key (Internet Systems Consortium,
+ Inc. (Signing key, 2015-2016) <codesign AT isc.org>)
+ * python-pypi/enum34: new spell, support for enumerations
+ * python-pypi/python-cryptography: new spell, Python cryptographic
+ recipes and primitives

2015-03-15 Ismael Luceno <ismael AT sourcemage.org>
* php-pear/pear-php_codesniffer: new spell, detects violations to a
diff --git a/chat-im/gajim/DEPENDS b/chat-im/gajim/DEPENDS
index 372bf0d..5b1396a 100755
--- a/chat-im/gajim/DEPENDS
+++ b/chat-im/gajim/DEPENDS
@@ -16,6 +16,7 @@ fi &&
suggest_depends pyopenssl "" "" "for secure connections support" &&
suggest_depends pyasn1 "" "" "to check SSL/TLS certificates" &&
suggest_depends dbus-python "" "" "to control Gajim via commandline" &&
+suggest_depends bind-tools "" "" "to get SRV records for Jabber servers" &&

if is_depends_enabled $SPELL dbus-python; then
suggest_depends upower "" "" "for UPower support"
diff --git a/chat-im/gajim/HISTORY b/chat-im/gajim/HISTORY
index 9eaa4a3..caec482 100644
--- a/chat-im/gajim/HISTORY
+++ b/chat-im/gajim/HISTORY
@@ -1,3 +1,6 @@
+2015-03-16 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: added missing suggest dependency -- bind-tools
+
2015-03-09 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 0.16.1

diff --git a/python-pypi/enum34/DEPENDS b/python-pypi/enum34/DEPENDS
new file mode 100755
index 0000000..48d8ddc
--- /dev/null
+++ b/python-pypi/enum34/DEPENDS
@@ -0,0 +1 @@
+. $SECTION_DIRECTORY/PY_DEPENDS
diff --git a/python-pypi/enum34/DETAILS b/python-pypi/enum34/DETAILS
new file mode 100755
index 0000000..8434802
--- /dev/null
+++ b/python-pypi/enum34/DETAILS
@@ -0,0 +1,14 @@
+ SPELL=enum34
+ VERSION=1.0.4
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_URL[0]=http://pypi.python.org/packages/source/e/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:21b91f1d0e15cc909e733473f603077eff7222c90da84b0a5f2db921ba41ac996b9237cc8adf1d07913b7eaf8f8e70ac6955abbb191f2e7cc54966710a1c96a9
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE=https://pypi.python.org/pypi/enum34
+ LICENSE[0]=BSD
+ ENTERED=20150316
+ KEYWORDS="python"
+ SHORT="support for enumerations"
+cat << EOF
+Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4.
+EOF
diff --git a/python-pypi/enum34/HISTORY b/python-pypi/enum34/HISTORY
new file mode 100644
index 0000000..181c340
--- /dev/null
+++ b/python-pypi/enum34/HISTORY
@@ -0,0 +1,2 @@
+2015-03-16 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS: created spell, version 1.0.4
diff --git a/python-pypi/pyopenssl/DEPENDS b/python-pypi/pyopenssl/DEPENDS
index d67b875..ff8375a 100755
--- a/python-pypi/pyopenssl/DEPENDS
+++ b/python-pypi/pyopenssl/DEPENDS
@@ -1,2 +1,5 @@
. $SECTION_DIRECTORY/PY_DEPENDS &&
-depends SSL
+
+depends SSL &&
+
+runtime_depends python-cryptography
diff --git a/python-pypi/pyopenssl/HISTORY b/python-pypi/pyopenssl/HISTORY
index 827ccaf..c807d83 100644
--- a/python-pypi/pyopenssl/HISTORY
+++ b/python-pypi/pyopenssl/HISTORY
@@ -1,3 +1,6 @@
+2015-03-16 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: added missing runtime dependency
+
2015-03-06 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: PATCHLEVEL=1
* PRE_BUILD: added, to optionally apply a patch
diff --git a/python-pypi/python-cryptography/DEPENDS
b/python-pypi/python-cryptography/DEPENDS
new file mode 100755
index 0000000..491f748
--- /dev/null
+++ b/python-pypi/python-cryptography/DEPENDS
@@ -0,0 +1,6 @@
+depends PYTHON &&
+depends SETUPTOOLS &&
+depends cffi &&
+depends enum34 &&
+depends pyasn1 &&
+depends six
diff --git a/python-pypi/python-cryptography/DETAILS
b/python-pypi/python-cryptography/DETAILS
new file mode 100755
index 0000000..7db409a
--- /dev/null
+++ b/python-pypi/python-cryptography/DETAILS
@@ -0,0 +1,23 @@
+ SPELL=python-cryptography
+ SPELLX=cryptography
+ VERSION=0.8
+ SOURCE=$SPELLX-$VERSION.tar.gz
+ SOURCE_URL[0]=https://pypi.python.org/packages/source/c/$SPELLX/$SOURCE
+ SOURCE_HINTS="no-check-certificate"
+
SOURCE_HASH=sha512:e17d2d31f1d6da782eb3531ca9dded14e137ddc61893ef17a8238997274a85e77e8a957e1eec3ed3960675694f97750ca1f6821a2e8d974795bca3b2be49e196
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELLX-$VERSION"
+ LICENSE[0]=BSD
+ LICENSE[1]=APACHE
+ WEB_SITE=https://cryptography.io/
+ ENTERED=20150316
+ SHORT="Python cryptographic recipes and primitives"
+cat << EOF
+cryptography is a package which provides cryptographic recipes and
primitives to
+Python developers.
+
+Our goal is for it to be your "cryptographic standard library".
+
+cryptography includes both high level recipes, and low level interfaces to
+common cryptographic algorithms such as symmetric ciphers, message digests
and
+key derivation functions.
+EOF
diff --git a/python-pypi/python-cryptography/HISTORY
b/python-pypi/python-cryptography/HISTORY
new file mode 100644
index 0000000..e591eb6
--- /dev/null
+++ b/python-pypi/python-cryptography/HISTORY
@@ -0,0 +1,2 @@
+2015-03-16 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS: created spell, version 0.8



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (d47ed873a813ccc551e767da71c827711f2012ad), Vlad Glagolev, 03/16/2015

Archive powered by MHonArc 2.6.24.

Top of Page