[Python-modules-commits] [pysodium] 03/12: Create debian folder
Christopher Stuart Hoskin
mans0954 at moszumanska.debian.org
Tue Jun 6 09:03:29 UTC 2017
This is an automated email from the git hooks/post-receive script.
mans0954 pushed a commit to branch master
in repository pysodium.
commit 2d65309da3eed24291dd3a52e295780afe3c6b68
Author: Christopher Hoskin <mans0954 at debian.org>
Date: Tue Jun 6 07:56:53 2017 +0100
Create debian folder
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
debian/rules | 8 ++++++++
4 files changed, 72 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..169c7d4
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pysodium (0.6.11-1) unstable; urgency=low
+
+ * source package automatically created by stdeb 0.8.5
+
+ -- Christopher Hoskin <mans0954 at debian.org> Tue, 06 Jun 2017 07:55:24 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..36eb871
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,58 @@
+Source: pysodium
+Maintainer: Christopher Hoskin <mans0954 at debian.org>
+Section: python
+Priority: optional
+Build-Depends: dh-python, python-setuptools (>= 0.6b3), python3-setuptools, python-all (>= 2.6.6-3), python3-all, debhelper (>= 9)
+Standards-Version: 3.9.6
+Homepage: https://github.com/stef/pysodium
+
+Package: python-pysodium
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: python libsodium wrapper
+ This is a very simple wrapper around libsodium masquerading as nacl.
+ .
+ [](https://travis-ci.org/stef/pysodium)
+ .
+ This wrapper requires a pre-installed libsodium from:
+ .
+ https://github.com/jedisct1/libsodium
+ .
+ then it provides access to the following functions:
+ .
+ ```
+ crypto_aead_chacha20poly1305_decrypt(ciphertext, ad, nonce, key)
+ crypto_aead_chacha20poly1305_decrypt_detached(ciphertext, mac, ad, nonce, key)
+ crypto_aead_chacha20poly1305_encrypt_detached(message, ad, nonce, key)
+ crypto_aead_chacha20poly1305_encrypt(message, ad, nonce, key)
+ crypto_aead_chacha20poly1305_ietf_decrypt(ciphertext, ad, nonce, key)
+ crypto_aead_chacha20poly1305_ietf_encrypt(message, ad, nonce, key)
+ crypto_auth(message, key)
+ crypto_auth(tag, message, key)
+ crypto_auth_verify(h, m, k=b'')
+
+Package: python3-pysodium
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: python libsodium wrapper
+ This is a very simple wrapper around libsodium masquerading as nacl.
+ .
+ [](https://travis-ci.org/stef/pysodium)
+ .
+ This wrapper requires a pre-installed libsodium from:
+ .
+ https://github.com/jedisct1/libsodium
+ .
+ then it provides access to the following functions:
+ .
+ ```
+ crypto_aead_chacha20poly1305_decrypt(ciphertext, ad, nonce, key)
+ crypto_aead_chacha20poly1305_decrypt_detached(ciphertext, mac, ad, nonce, key)
+ crypto_aead_chacha20poly1305_encrypt_detached(message, ad, nonce, key)
+ crypto_aead_chacha20poly1305_encrypt(message, ad, nonce, key)
+ crypto_aead_chacha20poly1305_ietf_decrypt(ciphertext, ad, nonce, key)
+ crypto_aead_chacha20poly1305_ietf_encrypt(message, ad, nonce, key)
+ crypto_auth(message, key)
+ crypto_auth(tag, message, key)
+ crypto_auth_verify(h, m, k=b'')
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..656f2e1
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+# This file was automatically generated by stdeb 0.8.5 at
+# Tue, 06 Jun 2017 07:55:24 +0100
+export PYBUILD_NAME=pysodium
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
+
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pysodium.git
More information about the Python-modules-commits
mailing list