Fix Darwin build and update Shared

This commit is contained in:
j 2014-09-30 22:25:10 +02:00
commit 0ec7e7cc9e
97 changed files with 294 additions and 219 deletions

Binary file not shown.

View file

@ -69,7 +69,7 @@
#define HAVE_ATANH 1
/* Define to 1 if you have the `bind_textdomain_codeset' function. */
#define HAVE_BIND_TEXTDOMAIN_CODESET 1
/* #undef HAVE_BIND_TEXTDOMAIN_CODESET */
/* Define to 1 if you have the <bluetooth/bluetooth.h> header file. */
/* #undef HAVE_BLUETOOTH_BLUETOOTH_H */
@ -491,7 +491,7 @@
/* #undef HAVE_LIBIEEE */
/* Define to 1 if you have the <libintl.h> header file. */
#define HAVE_LIBINTL_H 1
/* #undef HAVE_LIBINTL_H */
/* Define if you have the readline library (-lreadline). */
#define HAVE_LIBREADLINE 1
@ -1335,7 +1335,7 @@
#define WITH_DYLD 1
/* Define to 1 if libintl is needed for locale functions. */
#define WITH_LIBINTL 1
/* #undef WITH_LIBINTL */
/* Define if you want to produce an OpenStep/Rhapsody framework (shared
library plus accessory files). */

Binary file not shown.

Binary file not shown.

View file

@ -90,7 +90,7 @@ build_time_vars = {'ABIFLAGS': 'm',
'HAVE_ASINH': 1,
'HAVE_ASM_TYPES_H': 0,
'HAVE_ATANH': 1,
'HAVE_BIND_TEXTDOMAIN_CODESET': 1,
'HAVE_BIND_TEXTDOMAIN_CODESET': 0,
'HAVE_BLUETOOTH_BLUETOOTH_H': 0,
'HAVE_BLUETOOTH_H': 0,
'HAVE_BROKEN_MBSTOWCS': 0,
@ -227,7 +227,7 @@ build_time_vars = {'ABIFLAGS': 'm',
'HAVE_LIBDL': 1,
'HAVE_LIBDLD': 0,
'HAVE_LIBIEEE': 0,
'HAVE_LIBINTL_H': 1,
'HAVE_LIBINTL_H': 0,
'HAVE_LIBREADLINE': 1,
'HAVE_LIBRESOLV': 0,
'HAVE_LIBSENDFILE': 0,
@ -482,7 +482,7 @@ build_time_vars = {'ABIFLAGS': 'm',
'LIBRARY': 'libpython3.4m.a',
'LIBRARY_OBJS': '\\',
'LIBRARY_OBJS_OMIT_FROZEN': '\\',
'LIBS': '-lintl -ldl -framework CoreFoundation',
'LIBS': '-ldl -framework CoreFoundation',
'LIBSUBDIRS': 'tkinter tkinter/test tkinter/test/test_tkinter \\',
'LINKCC': 'gcc',
'LINKFORSHARED': '-Wl,-stack_size,1000000 -framework CoreFoundation',
@ -582,7 +582,7 @@ build_time_vars = {'ABIFLAGS': 'm',
'SETPGRP_HAVE_ARG': 0,
'SGI_ABI': '',
'SHELL': '/bin/sh',
'SHLIBS': '-lintl -ldl -framework CoreFoundation',
'SHLIBS': '-ldl -framework CoreFoundation',
'SHLIB_SUFFIX': '.so',
'SIGNAL_OBJS': '',
'SIGNED_RIGHT_SHIFT_ZERO_FILLS': 0,
@ -639,7 +639,7 @@ build_time_vars = {'ABIFLAGS': 'm',
'WINDOW_HAS_FLAGS': 0,
'WITH_DOC_STRINGS': 1,
'WITH_DYLD': 1,
'WITH_LIBINTL': 1,
'WITH_LIBINTL': 0,
'WITH_NEXT_FRAMEWORK': 0,
'WITH_PYMALLOC': 1,
'WITH_THREAD': 1,

View file

@ -196,7 +196,7 @@ LDLIBRARYDIR=
INSTSONAME= $(LDLIBRARY)
LIBS= -lintl -ldl -framework CoreFoundation
LIBS= -ldl -framework CoreFoundation
LIBM=
LIBC=
SYSLIBS= $(LIBM) $(LIBC)

View file

@ -1,6 +1,6 @@
Metadata-Version: 1.0
Metadata-Version: 1.1
Name: ed25519
Version: 1.2-17-g3b12acf
Version: 1.3
Summary: Ed25519 public-key signatures
Home-page: https://github.com/warner/python-ed25519
Author: Brian Warner
@ -17,3 +17,12 @@ Description: Python bindings to the Ed25519 public-key signature system.
more details.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Security :: Cryptography

View file

@ -0,0 +1,38 @@
LICENSE
MANIFEST.in
Makefile
NEWS
README.md
kat-ed25519.txt
kat.py
test_ed25519_kat.py
versioneer.py
bin/edsig
ed25519.egg-info/PKG-INFO
ed25519.egg-info/SOURCES.txt
ed25519.egg-info/dependency_links.txt
ed25519.egg-info/top_level.txt
src/ed25519/__init__.py
src/ed25519/_version.py
src/ed25519/keys.py
src/ed25519/test_ed25519.py
src/ed25519-glue/ed25519module.c
src/ed25519-supercop-ref/Makefile
src/ed25519-supercop-ref/api.h
src/ed25519-supercop-ref/crypto_int32.h
src/ed25519-supercop-ref/crypto_sign.h
src/ed25519-supercop-ref/crypto_uint32.h
src/ed25519-supercop-ref/crypto_verify_32.h
src/ed25519-supercop-ref/ed25519.c
src/ed25519-supercop-ref/fe25519.c
src/ed25519-supercop-ref/fe25519.h
src/ed25519-supercop-ref/ge25519.c
src/ed25519-supercop-ref/ge25519.h
src/ed25519-supercop-ref/ge25519_base.data
src/ed25519-supercop-ref/sc25519.c
src/ed25519-supercop-ref/sc25519.h
src/ed25519-supercop-ref/sha512-blocks.c
src/ed25519-supercop-ref/sha512-hash.c
src/ed25519-supercop-ref/sha512.h
src/ed25519-supercop-ref/test.c
src/ed25519-supercop-ref/verify.c

View file

@ -0,0 +1,15 @@
../ed25519/__init__.py
../ed25519/_version.py
../ed25519/keys.py
../ed25519/test_ed25519.py
../ed25519/__init__.pyc
../ed25519/_version.pyc
../ed25519/keys.pyc
../ed25519/test_ed25519.pyc
../ed25519/_ed25519.so
./
dependency_links.txt
PKG-INFO
SOURCES.txt
top_level.txt
../../../../bin/edsig

View file

@ -1,2 +0,0 @@
/Users/build/platform_darwin/build/PythonPackages/src/ed25519
.

View file

@ -4,8 +4,8 @@
# unpacked source archive. Distribution tarballs contain a pre-generated copy
# of this file.
version_version = '1.2-17-g3b12acf'
version_full = '3b12acf095b5b402bef69e0bfa8832410b68854a'
version_version = '1.3'
version_full = '06c43e2d15ba45dbcfda780a81e9b49c199bce16'
def get_versions(default={}, verbose=False):
return {'version': version_version, 'full': version_full}