Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: third_party/tlslite/setup.py

Issue 210323002: Update tlslite to 0.4.6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Executable bit and --similarity=80 Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/tlslite/scripts/tlsdb.py ('k') | third_party/tlslite/test/clientCryptoIDChain.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/tlslite/setup.py
diff --git a/third_party/tlslite/setup.py b/third_party/tlslite/setup.py
old mode 100644
new mode 100755
index e3417c4ea496680a4df478daa58d8f760a10fdff..51ef011f1d1faa4cce922fe6abc4f578e36451aa
--- a/third_party/tlslite/setup.py
+++ b/third_party/tlslite/setup.py
@@ -1,26 +1,16 @@
#!/usr/bin/env python
-import sys
-from distutils.core import setup, Extension
+# Author: Trevor Perrin
+# See the LICENSE file for legal information regarding use of this file.
-if sys.version_info < (2, 2):
- raise AssertionError("Python 2.2 or later required")
-
-if sys.platform == "win32":
- ext = Extension("tlslite.utils.win32prng",
- sources=["tlslite/utils/win32prng.c"],
- libraries=["advapi32"])
- exts = [ext]
-else:
- exts = None
+from distutils.core import setup
setup(name="tlslite",
- version="0.3.8",
+ version="0.4.6",
author="Trevor Perrin",
- author_email="trevp@trevp.net",
+ author_email="tlslite@trevp.net",
url="http://trevp.net/tlslite/",
- description="tlslite implements SSL and TLS with SRP, shared-keys, cryptoID, or X.509 authentication.",
- license="public domain",
+ description="tlslite implements SSL and TLS.",
+ license="public domain and BSD",
scripts=["scripts/tls.py", "scripts/tlsdb.py"],
- packages=["tlslite", "tlslite.utils", "tlslite.integration"],
- ext_modules=exts)
+ packages=["tlslite", "tlslite.utils", "tlslite.integration"],)
« no previous file with comments | « third_party/tlslite/scripts/tlsdb.py ('k') | third_party/tlslite/test/clientCryptoIDChain.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698