--- /dev/null
+python-m2crypto (0.35.1.1) unstable; urgency=medium
+
+ * Add Debian
+
+ -- Biao Wang <biao716.wang@samsung.com> Tue, 26 May 2020 09:42:32 +0200
--- /dev/null
+Source: python-m2crypto
+Section: python
+Priority: optional
+Maintainer: Daniel Stender <stender@debian.org>
+Build-Depends:
+ debhelper (>= 11),
+ python-dev,
+ dh-python,
+ libssl-dev,
+ python-all-dev,
+ python-setuptools,
+ swig (>= 1.3.40),
+ openssl
+Standards-Version: 4.2.1
+Homepage: http://www.tizen.org
+
+Package: python-m2crypto
+Architecture: any
+Depends:
+ ${misc:Depends},
+ ${python:Depends},
+ ${shlibs:Depends}
+Provides:
+ m2crypto,
+ ${python:Provides}
+Description: Python wrapper for the OpenSSL library (Python 2 modules)
+ m2crypto features the following:
+ * RSA, DSA, DH, HMACs, message digests, symmetric ciphers (including AES).
+ * SSL functionality to implement clients and servers.
+ * HTTPS extensions to Python's httplib, urllib, and xmlrpclib.
+ * Unforgeable HMAC'ing AuthCookies for web session management.
+ * FTP/TLS client and server.
+ * S/MIME.
+ * ZServerSSL: A HTTPS server for Zope.
+ * ZSmime: An S/MIME messenger for Zope.
+ .
+ This package contains the modules for the Python 2 interpreter.
+
--- /dev/null
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ python setup.py build
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Installing package
+ mkdir -p $(CURDIR)/debian/tmp
+ python setup.py install --prefix=/usr --root=$(CURDIR)/debian/tmp
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_install
+ dh_installman
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_python2
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install