Skip to content

Commit bfd4d83

Browse files
committed
python_modules-58.0.1
1 parent 827cca3 commit bfd4d83

File tree

16,915 files changed

+731
-4387764
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

16,915 files changed

+731
-4387764
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
build
2+
.DS_Store
3+
*~
4+
*.rej
5+
*.orig
6+
cscope.*
7+
tags
8+
TAGS

2.6.inc

-15
This file was deleted.

2.7.inc

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MODULES = \
2-
setuptools-18.5 \
2+
setuptools-41.0.1 \
33
altgraph-0.10.2 \
44
modulegraph-0.10.4 \
55
macholib-1.5.1 \
@@ -10,8 +10,17 @@ MODULES = \
1010
bonjour-py-0.3 \
1111
scipy-0.13.0b1 \
1212
pytz-2013.7 \
13-
six-1.4.1 \
13+
six-1.12.0 \
14+
future-0.17.1 \
1415
python-dateutil-1.5 \
1516
pyparsing-2.0.1 \
1617
matplotlib-1.3.1 \
17-
pyOpenSSL-0.13.1
18+
cffi-1.12.2 \
19+
pycparser-2.19 \
20+
asn1crypto-0.24.0 \
21+
enum34-1.1.6 \
22+
ipaddress-1.0.22 \
23+
cryptography-2.6.1 \
24+
pyOpenSSL-19.0.0 \
25+
wheel-0.33.1 \
26+
recertifi-0.11.0

CMakeLists.txt

-59
This file was deleted.

Extras-2.6.pth

-2
This file was deleted.

Extras-2.7.pth

-2
This file was deleted.

GNUmakefile

+29-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ _VERSIONERDIR := /usr/local/versioner
88
# Look for /usr/local/versioner in $(SDKROOT), defaulting to /usr/local/versioner
99
VERSIONERDIR := $(or $(wildcard $(SDKROOT)$(_VERSIONERDIR)),$(_VERSIONERDIR))
1010
PYTHONVERSIONS = $(VERSIONERDIR)/$(PYTHONPROJECT)/versions
11-
INCOMPATIBLE =
11+
INCOMPATIBLE = 2.6
1212
DEFAULT := $(shell sed -n '/^DEFAULT = /s///p' $(PYTHONVERSIONS))
1313
KNOWNVERSIONS := $(filter-out $(INCOMPATIBLE), $(shell grep '^[0-9]' $(PYTHONVERSIONS)))
1414
BOOTSTRAPPYTHON =
1515
VERSIONS = $(sort $(KNOWNVERSIONS) $(BOOTSTRAPPYTHON))
16-
ORDEREDVERS := $(DEFAULT) $(filter-out $(DEFAULT),$(VERSIONS))
16+
OTHERVERSIONS = $(filter-out $(DEFAULT),$(VERSIONS))
17+
ORDEREDVERS := $(DEFAULT) $(OTHERVERSIONS)
1718
VERSIONERFLAGS = -std=gnu99 -Wall -mdynamic-no-pic -I$(VERSIONERDIR)/$(PYTHONPROJECT) -I$(MYFIX) -framework CoreFoundation
1819
OSV = OpenSourceVersions
1920
OSL = OpenSourceLicenses
@@ -45,7 +46,6 @@ build::
4546
(echo "######## Building $$vers:" `date` '########' > "$(SYMROOT)/$$vers/LOG" 2>&1 && \
4647
PATH="$(TMPPREFIX)/bin:$$PATH" \
4748
VERSIONER_PYTHON_VERSION=$$vers \
48-
VERSIONER_PYTHON_PREFER_32_BIT=yes \
4949
$(MAKE) -f Makefile install Project=$(Project) \
5050
OBJROOT="$(OBJROOT)/$$vers" \
5151
DSTROOT="$(OBJROOT)/$$vers/DSTROOT" \
@@ -90,6 +90,28 @@ mergebegin:
9090
@echo ####### Merging #######
9191

9292
MERGEBIN = /usr/bin
93+
94+
# This causes us to replace the versioner stub with the default version of perl.
95+
# Since we are now only shipping one version (5.18) and one slice (x86_64), there
96+
# is no need for the re-exec stub. We are leaving the infrastructure in place
97+
# in case we ever ship a new version or a new architecture in the future.
98+
ifeq ($(OTHERVERSIONS),)
99+
mergebin:
100+
mkdir -p $(DSTROOT)$(MERGEBIN)
101+
cd $(OBJROOT)/$(DEFAULT)/DSTROOT$(MERGEBIN) && \
102+
for f in `find . -type f ! -name "*$(DEFAULT)*" | sed 's,^\./,,'`; do \
103+
fv=$$f-$(DEFAULT) && \
104+
ditto $$f $(DSTROOT)$(MERGEBIN)/$$fv && \
105+
sed -e 's/@SEP@/-/g' -e "s/@VERSION@/$(DEFAULT)/g" $(FIX)/scriptvers.ed | ed - $(DSTROOT)$(MERGEBIN)/$$fv && \
106+
if [ ! -e $(DSTROOT)$(MERGEBIN)/$$f ]; then \
107+
ln $(DSTROOT)$(MERGEBIN)/$$fv $(DSTROOT)$(MERGEBIN)/$$f; \
108+
fi || exit 1; \
109+
done && \
110+
cd $(DSTROOT)/System/Library/Frameworks/Python.framework/Versions/$(DEFAULT)/Extras/bin && \
111+
for f in *; do \
112+
sed -e '/^1a/,/^\./d' -e "s/@VERSION@/$(DEFAULT)/g" $(FIX)/scriptvers.ed | ed - $$f || exit 1; \
113+
done
114+
else
93115
DUMMY = dummy.py
94116
mergebin:
95117
mkdir -p $(DSTROOT)$(MERGEBIN)
@@ -111,14 +133,15 @@ mergebin:
111133
done || exit 1; \
112134
done
113135
rm -f $(DSTROOT)$(MERGEBIN)/$(DUMMY)
136+
endif
137+
114138

115-
MERGEVERSIONS = \
116-
System
117139
mergeversions:
118140
@set -x && \
119141
for vers in $(VERSIONS); do \
120142
cd $(OBJROOT)/$$vers/DSTROOT && \
121-
rsync -Ra $(MERGEVERSIONS) $(DSTROOT) || exit 1; \
143+
rsync -Ra System $(DSTROOT) || exit 1; \
144+
rsync -Ra AppleInternal/Library/Python $(DSTROOT) || exit 1; \
122145
done
123146

124147
MERGEMAN = usr/share/man

Modules/Makefile.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ install: realinstall postinstall
1818

1919
realinstall: $(DIR) custompatching
2020
cd $(DIR) && \
21-
ARCHFLAGS="$(RC_CFLAGS)" \
21+
ARCHFLAGS="$(RC_CFLAGS) -iwithsysroot /usr/local/libressl/include -L$(SDKROOT)/usr/local/libressl/lib" \
2222
python setup.py install --home="$(EXTRAS)" --root="$(DSTROOT)" $(SETUPARGS)
2323

2424
# allow custom patching before running setup.py

Modules/altgraph-0.10.1/MIT.license

-15
This file was deleted.

Modules/altgraph-0.10.1/Makefile

-8
This file was deleted.

Modules/altgraph-0.10.1/altgraph-0.10.1/MANIFEST.in

-9
This file was deleted.

0 commit comments

Comments
 (0)