Initial packaging

This commit is contained in:
Benjamin Dauvergne 2015-01-22 14:42:28 +01:00
commit fe26729dc5
5 changed files with 39 additions and 0 deletions

5
changelog Normal file
View File

@ -0,0 +1,5 @@
rfc3161 (1.0.4-1) unstable; urgency=low
* source package automatically created by stdeb 0.7.1
-- Benjamin Dauvergne <bdauvergne@entrouvert.com> Fri, 16 May 2014 11:38:55 +0200

1
compat Normal file
View File

@ -0,0 +1 @@
7

23
control Normal file
View File

@ -0,0 +1,23 @@
Source: rfc3161
Maintainer: Benjamin Dauvergne <bdauvergne@entrouvert.com>
Section: python
Priority: optional
Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7)
Standards-Version: 3.9.1
Package: python-rfc3161
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-pyasn1, python-pyasn1-modules, python-m2crypto
Description: Python implementation of the RFC3161 specification
A simple client library for cryptographic timestamping service implementing the
protocol from RFC3161.
.
>>> import rfc3161
>>> certificate = file('data/certum_certificate.crt').read()
>>> rt = rfc3161.RemoteTimestamper('http://time.certum.pl', certificate=certificate)
>>> rt.timestamp(data='John Doe')
('...', '')
>>> rt.check(tst, data='John Doe')
(True, '')
>>> rfc3161.get_timestamp(tst)
datetime.datetime(2014, 4, 25, 9, 34, 16)

9
rules Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/make -f
# This file was automatically generated by stdeb 0.7.1 at
# Fri, 16 May 2014 11:38:55 +0200
%:
dh $@ --with python2 --buildsystem=python_distutils

1
source/format Normal file
View File

@ -0,0 +1 @@
1.0