1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
WANT_LIBTOOL="none"
inherit autotools eutils flag-o-matic pax-utils python-utils-r1 toolchain-funcs
MY_P="Python-${PV}"
PATCHSET_VERSION="2.7.16"
PREFIX_PATCHREV="r0"
CYGWINPORTS_GITREV="7be648659ef46f33db6913ca0ca5a809219d5629"
DESCRIPTION="An interpreted, interactive, object-oriented programming language"
HOMEPAGE="https://www.python.org/"
SRC_URI="https://www.python.org/ftp/python/${PV}/${MY_P}.tar.xz
https://dev.gentoo.org/~floppym/python/python-gentoo-patches-${PATCHSET_VERSION}.tar.xz
https://dev.gentoo.org/~grobian/distfiles/python-prefix-${PV}-gentoo-patches-${PREFIX_PATCHREV}.tar.xz"
[[ -n ${CYGWINPORTS_GITREV} ]] &&
SRC_URI+=" elibc_Cygwin? (
https://github.com/cygwinports/python2/archive/${CYGWINPORTS_GITREV}.zip
-> python2-cygwinports-${CYGWINPORTS_GITREV}.zip )"
LICENSE="PSF-2"
SLOT="2.7"
KEYWORDS="~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="aqua -berkdb bluetooth build doc elibc_uclibc examples gdbm hardened ipv6 +ncurses +readline sqlite +ssl +threads tk +wide-unicode wininst +xml"
# Do not add a dependency on dev-lang/python to this ebuild.
# If you need to apply a patch which requires python for bootstrapping, please
# run the bootstrap code on your dev box and include the results in the
# patchset. See bug 447752.
RDEPEND="app-arch/bzip2:0=
>=sys-libs/zlib-1.1.3:0=
virtual/libffi
virtual/libintl
berkdb? ( || (
sys-libs/db:5.3
sys-libs/db:5.1
sys-libs/db:4.8
sys-libs/db:4.7
sys-libs/db:4.6
sys-libs/db:4.5
sys-libs/db:4.4
sys-libs/db:4.3
sys-libs/db:4.2
) )
gdbm? ( sys-libs/gdbm:0=[berkdb] )
ncurses? ( >=sys-libs/ncurses-5.2:0= )
readline? ( >=sys-libs/readline-4.1:0= )
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
ssl? ( dev-libs/openssl:0= )
tk? (
>=dev-lang/tcl-8.0:0=
>=dev-lang/tk-8.0:0=[-aqua]
dev-tcltk/blt:0=
dev-tcltk/tix
)
xml? ( >=dev-libs/expat-2.1 )
!!<sys-apps/portage-2.1.9"
# bluetooth requires headers from bluez
DEPEND="${RDEPEND}
bluetooth? ( net-wireless/bluez )
virtual/pkgconfig
>=sys-devel/autoconf-2.65
!sys-devel/gcc[libffi(-)]"
RDEPEND+=" !build? ( app-misc/mime-types )
doc? ( dev-python/python-docs:${SLOT} )"
PDEPEND=">=app-eselect/eselect-python-20140125-r1"
[[ -n ${CYGWINPORTS_GITREV} ]] &&
DEPEND+=" elibc_Cygwin? ( app-arch/unzip )"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
if use berkdb; then
ewarn "'bsddb' module is out-of-date and no longer maintained inside"
ewarn "dev-lang/python. 'bsddb' and 'dbhash' modules have been additionally"
ewarn "removed in Python 3. A maintained alternative of 'bsddb3' module"
ewarn "is provided by dev-python/bsddb3."
else
if has_version "=${CATEGORY}/${PN}-${PV%%.*}*[berkdb]"; then
ewarn "You are migrating from =${CATEGORY}/${PN}-${PV%%.*}*[berkdb]"
ewarn "to =${CATEGORY}/${PN}-${PV%%.*}*[-berkdb]."
ewarn "You might need to migrate your databases."
fi
fi
}
src_prepare() {
# Ensure that internal copies of expat, libffi and zlib are not used.
rm -r Modules/expat || die
rm -r Modules/_ctypes/libffi* || die
rm -r Modules/zlib || die
if tc-is-cross-compiler; then
rm "${WORKDIR}/patches/0006-Regenerate-platform-specific-modules.patch" || die
fi
local PATCHES=(
"${WORKDIR}/patches"
# Fix for cross-compiling.
"${FILESDIR}/python-2.7.5-nonfatal-compileall.patch"
"${FILESDIR}/python-2.7.9-ncurses-pkg-config.patch"
"${FILESDIR}/python-2.7.10-cross-compile-warn-test.patch"
"${FILESDIR}/python-2.7.10-system-libffi.patch"
)
default
# Prefix' round of patches
EPATCH_EXCLUDE="${excluded_patches}" EPATCH_SUFFIX="patch" \
epatch "${WORKDIR}"/python-prefix-${PV}-gentoo-patches-${PREFIX_PATCHREV}
epatch "${FILESDIR}/python-3.4-pyfpe-dll.patch" # Cygwin: --with-fpectl
# Make sure python doesn't use the host libffi.
use prefix && epatch "${FILESDIR}/python-2.7.14-libffi-pkgconfig.patch"
if use aqua ; then
# make sure we don't get a framework reference here
sed -i -e '/-DPREFIX=/s:$(prefix):$(FRAMEWORKUNIXTOOLSPREFIX):' \
-e '/-DEXEC_PREFIX=/s:$(exec_prefix):$(FRAMEWORKUNIXTOOLSPREFIX):' \
Makefile.pre.in || die
# Python upstream refuses to listen to configure arguments
sed -i -e '/FRAMEWORKINSTALLAPPSPREFIX=/s:="[^"]*":="${prefix}/../Applications":' \
configure.ac configure || die
# we handle creation of symlinks in src_install
sed -i -e '/ln -fs .*PYTHONFRAMEWORK/d' Makefile.pre.in || die
# build the Python framework without DESTDIR in install_name
sed -i -e '/-install_name/s/$(DESTDIR)//' Makefile.pre.in || die
fi
# don't try to do fancy things on Darwin
sed -i -e 's/__APPLE__/__NO_MUCKING_AROUND__/g' Modules/readline.c || die
# fix header standards conflicts on Solaris
if [[ ${CHOST} == *-solaris* ]] ; then
# GCC5 switched the default from gnu89 to gnu11, a standards
# conflict arises from that, which can be solved by upgrading
# _XOPEN_SOURCE from 500 to 600, but since it is compiler
# version specific, just force the old standard onto the
# compiler. Python 3 properly detects this.
CC="$(tc-getCC) -std=gnu89"
fi
if [[ -n ${CYGWINPORTS_GITREV} ]] && use elibc_Cygwin; then
local p d="${WORKDIR}/python2-${CYGWINPORTS_GITREV}"
for p in $(
eval "$(sed -ne '/PATCH_URI="/,/"/p' < "${d}"/python.cygport)"
echo ${PATCH_URI}
); do
# dropped by 01_all_prefix-no-patch-invention.patch
[[ ${p} == *-tkinter-* ]] && continue
epatch "${d}/${p}"
done
fi
sed -i -e "s:@@GENTOO_LIBDIR@@:$(get_libdir):g" \
Lib/distutils/command/install.py \
Lib/distutils/sysconfig.py \
Lib/site.py \
Lib/sysconfig.py \
Lib/test/test_site.py \
Makefile.pre.in \
Modules/Setup.dist \
Modules/getpath.c \
setup.py || die "sed failed to replace @@GENTOO_LIBDIR@@"
eautoreconf
}
src_configure() {
# dbm module can be linked against berkdb or gdbm.
# Defaults to gdbm when both are enabled, #204343.
local disable
use berkdb || use gdbm || disable+=" dbm"
use berkdb || disable+=" _bsddb"
# disable automagic bluetooth headers detection
use bluetooth || export ac_cv_header_bluetooth_bluetooth_h=no
use gdbm || disable+=" gdbm"
use ncurses || disable+=" _curses _curses_panel"
use readline || disable+=" readline"
use sqlite || disable+=" _sqlite3"
use ssl || export PYTHON_DISABLE_SSL="1"
use tk || disable+=" _tkinter"
use xml || disable+=" _elementtree pyexpat" # _elementtree uses pyexpat.
[[ ${CHOST} == *64-apple-darwin* ]] && disable+=" Nav _Qt" # Carbon
[[ ${CHOST} == *-apple-darwin11 ]] && disable+=" _Fm _Qd _Qdoffs"
export PYTHON_DISABLE_MODULES="${disable}"
if ! use xml; then
ewarn "You have configured Python without XML support."
ewarn "This is NOT a recommended configuration as you"
ewarn "may face problems parsing any XML documents."
fi
if [[ -n "${PYTHON_DISABLE_MODULES}" ]]; then
einfo "Disabled modules: ${PYTHON_DISABLE_MODULES}"
fi
if [[ "$(gcc-major-version)" -ge 4 ]]; then
append-flags -fwrapv
fi
filter-flags -malign-double
# https://bugs.gentoo.org/show_bug.cgi?id=50309
if is-flagq -O3; then
is-flagq -fstack-protector-all && replace-flags -O3 -O2
use hardened && replace-flags -O3 -O2
fi
if tc-is-cross-compiler; then
# Force some tests that try to poke fs paths.
export ac_cv_file__dev_ptc=no
export ac_cv_file__dev_ptmx=yes
fi
# http://bugs.gentoo.org/show_bug.cgi?id=302137
if [[ ${CHOST} == powerpc-*-darwin* ]] && \
( is-flag "-mtune=*" || is-flag "-mcpu=*" ) || \
[[ ${CHOST} == powerpc64-*-darwin* ]];
then
replace-flags -O2 -O3
replace-flags -Os -O3 # comment #14
fi
# Export CC so even AIX will use gcc instead of xlc_r.
# Export CXX so it ends up in /usr/lib/python2.X/config/Makefile.
tc-export CC CXX
# The configure script fails to use pkg-config correctly.
# http://bugs.python.org/issue15506
export ac_cv_path_PKG_CONFIG=$(tc-getPKG_CONFIG)
# Set LDFLAGS so we link modules with -lpython2.7 correctly.
# Needed on FreeBSD unless Python 2.7 is already installed.
# Please query BSD team before removing this!
# On AIX this is not needed, but would record '.' as runpath.
append-ldflags "-L."
if use prefix ; then
# for Python's setup.py not to do false assumptions (only looking in
# host paths) we need to make explicit where Prefix stuff is
append-cppflags -I"${EPREFIX}"/usr/include
append-ldflags -L"${EPREFIX}"/$(get_libdir)
append-ldflags -L"${EPREFIX}"/usr/$(get_libdir)
# fix compilation on some Linux hosts, #381163, #473520
if use elibc_glibc ; then
for hostlibdir in /usr/lib32 /usr/lib64 /usr/lib /lib32 /lib64; do
[[ -d ${hostlibdir} ]] || continue
append-ldflags -L${hostlibdir}
done
fi
# Have to move $(CPPFLAGS) to before $(CFLAGS) to ensure that
# local include paths - set in $(CPPFLAGS) - are searched first.
sed -i -e "/^PY_CFLAGS[ \\t]*=/s,\\\$(CFLAGS)[ \\t]*\\\$(CPPFLAGS),\$(CPPFLAGS) \$(CFLAGS)," Makefile.pre.in || die
fi
local dbmliborder
if use gdbm; then
dbmliborder+="${dbmliborder:+:}gdbm"
fi
if use berkdb; then
dbmliborder+="${dbmliborder:+:}bdb"
fi
# we need this to get pythonw, the GUI version of python
# --enable-framework and --enable-shared are mutually exclusive:
# http://bugs.python.org/issue5809
local myshared=
use aqua \
&& myshared="--enable-framework=${EPREFIX}/usr/lib" \
|| myshared="--enable-shared"
# note: for a framework build we need to use ucs2 because macOS
# uses that internally too:
# http://bugs.python.org/issue763708
local myeconfargs=(
--with-fpectl
${myshared}
$(use_enable ipv6)
$(use_with threads)
$( (use wide-unicode && use !aqua) && echo "--enable-unicode=ucs4" || echo "--enable-unicode=ucs2") \
--infodir='${prefix}/share/info'
--mandir='${prefix}/share/man'
--with-computed-gotos
--with-dbmliborder="${dbmliborder}"
--with-libc=
--enable-loadable-sqlite-extensions
--with-system-expat
--with-system-ffi
--without-ensurepip
)
# we need to build in a separate dir to avoid problems due to
# case-insensitivity on Darwin
BUILD_DIR="${WORKDIR}/${CHOST}"
mkdir -p "${BUILD_DIR}" || die
cd "${BUILD_DIR}" || die
ECONF_SOURCE="${S}" OPT= econf "${myeconfargs[@]}"
if use threads && grep -q "#define POSIX_SEMAPHORES_NOT_ENABLED 1" pyconfig.h; then
eerror "configure has detected that the sem_open function is broken."
eerror "Please ensure that /dev/shm is mounted as a tmpfs with mode 1777."
die "Broken sem_open function (bug 496328)"
fi
}
src_compile() {
# Avoid invoking pgen for cross-compiles.
touch Include/graminit.h Python/graminit.c
cd "${BUILD_DIR}" || die
emake
# Work around bug 329499. See also bug 413751 and 457194.
if has_version dev-libs/libffi[pax_kernel]; then
pax-mark E python
else
pax-mark m python
fi
}
src_test() {
# Tests will not work when cross compiling.
if tc-is-cross-compiler; then
elog "Disabling tests due to crosscompiling."
return
fi
cd "${BUILD_DIR}" || die
# Skip failing tests.
local skipped_tests="distutils gdb"
for test in ${skipped_tests}; do
mv "${S}"/Lib/test/test_${test}.py "${T}"
done
# bug 660358
local -x COLUMNS=80
# Daylight saving time problem
# https://bugs.python.org/issue22067
# https://bugs.gentoo.org/610628
local -x TZ=UTC
# Rerun failed tests in verbose mode (regrtest -w).
emake test EXTRATESTOPTS="-w" < /dev/tty
local result="$?"
for test in ${skipped_tests}; do
mv "${T}/test_${test}.py" "${S}"/Lib/test
done
elog "The following tests have been skipped:"
for test in ${skipped_tests}; do
elog "test_${test}.py"
done
elog "If you would like to run them, you may:"
elog "cd '${EPREFIX}/usr/$(get_libdir)/python${SLOT}/test'"
elog "and run the tests separately."
if [[ "${result}" -ne 0 ]]; then
die "emake test failed"
fi
}
src_install() {
local libdir=${ED}/usr/$(get_libdir)/python${SLOT}
cd "${BUILD_DIR}" || die
if use aqua ; then
local fwdir="${EPREFIX}"/usr/$(get_libdir)/Python.framework
# do not make multiple targets in parallel when there are broken
# sharedmods (during bootstrap), would build them twice in parallel.
# Python_Launcher is kind of a wrapper, and we should fix it for
# Prefix (it uses /usr/bin/pythonw) so useless
# IDLE doesn't run, no idea, but definitely not used
sed -i -e 's/install_\(BuildApplet\|PythonLauncher\|IDLE\)[^:]//g' \
Mac/Makefile || die
# let the makefiles do their thing
emake -j1 CC="$(tc-getCC)" DESTDIR="${D}" STRIPFLAG= altinstall
rmdir "${ED}"/Applications/Python* || die
rmdir "${ED}"/Applications || die
# avoid framework incompatibility, degrade to a normal UNIX lib
mkdir -p "${ED}"/usr/$(get_libdir)
cp "${D}${fwdir}"/Versions/${SLOT}/Python \
"${ED}"/usr/$(get_libdir)/libpython${SLOT}.dylib || die
chmod u+w "${ED}"/usr/$(get_libdir)/libpython${SLOT}.dylib
install_name_tool \
-id "${EPREFIX}"/usr/$(get_libdir)/libpython${SLOT}.dylib \
"${ED}"/usr/$(get_libdir)/libpython${SLOT}.dylib
chmod u-w "${ED}"/usr/$(get_libdir)/libpython${SLOT}.dylib
cp libpython${SLOT}.a "${ED}"/usr/$(get_libdir)/ || die
# rebuild python executable to be the non-pythonw (python wrapper)
# version so we don't get framework crap
rm "${ED}"/usr/bin/python${SLOT} # drop existing symlink, bug #390861
$(tc-getCC) "${ED}"/usr/$(get_libdir)/libpython${SLOT}.dylib \
-o "${ED}"/usr/bin/python${SLOT} \
Modules/python.o || die
# don't install the "Current" symlink, will always conflict
rm "${D}${fwdir}"/Versions/Current || die
# update whatever points to it, eselect-python sets them
rm "${D}${fwdir}"/{Headers,Python,Resources} || die
# remove unversioned files (that are not made versioned below)
pushd "${ED}"/usr/bin > /dev/null
rm -f python python-config python${SLOT}-config
# python${SLOT} was created above
for f in pythonw smtpd${SLOT}.py pydoc idle ; do
rm -f ${f} ${f}${SLOT}
done
# pythonw needs to remain in the framework (that's the whole
# reason we go through this framework hassle)
ln -s ../lib/Python.framework/Versions/${SLOT}/bin/pythonw${SLOT} || die
# copy the scripts to we can fix their shebangs
for f in 2to3 pydoc${SLOT} idle${SLOT} python${SLOT}-config ; do
# for some reason sometimes they already exist, bug #347321
rm -f ${f}
cp "${D}${fwdir}"/Versions/${SLOT}/bin/${f} . || die
sed -i -e '1c\#!'"${EPREFIX}"'/usr/bin/python'"${SLOT}" \
${f} || die
done
# "fix" to have below collision fix not to bail
mv pydoc${SLOT} pydoc || die
mv idle${SLOT} idle || die
popd > /dev/null
# basically we don't like the framework stuff at all, so just move
# stuff around or add some symlinks to make our life easier
mkdir -p "${ED}"/usr
mv "${D}${fwdir}"/Versions/${SLOT}/share \
"${ED}"/usr/ || die "can't move share"
# get includes just UNIX style
mkdir -p "${ED}"/usr/include
mv "${D}${fwdir}"/Versions/${SLOT}/include/python${SLOT} \
"${ED}"/usr/include/ || die "can't move include"
pushd "${D}${fwdir}"/Versions/${SLOT}/include > /dev/null
ln -s ../../../../../include/python${SLOT} || die
popd > /dev/null
rm -f "${ED}"/usr/share/man/man1/python{,2}.1
# same for libs
# NOTE: can't symlink the entire dir, because a real dir already exists
# on upgrade (site-packages), however since we h4x0rzed python to
# actually look into the UNIX-style dir, we just switch them around.
mkdir -p "${ED}"/usr/$(get_libdir)/python${SLOT}
mv "${D}${fwdir}"/Versions/${SLOT}/lib/python${SLOT}/* \
"${ED}"/usr/$(get_libdir)/python${SLOT}/ \
|| die "can't move python${SLOT}"
rmdir "${D}${fwdir}"/Versions/${SLOT}/lib/python${SLOT} || die
pushd "${D}${fwdir}"/Versions/${SLOT}/lib > /dev/null
ln -s ../../../../python${SLOT} || die
popd > /dev/null
# fix up Makefile
sed -i \
-e '/^LINKFORSHARED=/s/-u _PyMac_Error.*$//' \
-e '/^LDFLAGS=/s/=.*$/=/' \
-e '/^prefix=/s:=.*$:= '"${EPREFIX}"'/usr:' \
-e '/^PYTHONFRAMEWORK=/s/=.*$/=/' \
-e '/^PYTHONFRAMEWORKDIR=/s/=.*$/= no-framework/' \
-e '/^PYTHONFRAMEWORKPREFIX=/s/=.*$/=/' \
-e '/^PYTHONFRAMEWORKINSTALLDIR=/s/=.*$/=/' \
-e '/^LDLIBRARY=/s:=.*$:libpython$(VERSION).dylib:' \
"${libdir}"/config/Makefile || die
# and sysconfigdata likewise
sed -i \
-e "/'LINKFORSHARED'/s/-u _PyMac_Error[^']*'/'/" \
-e "/'LDFLAGS'/s/:.*$/:'',/" \
-e "/'prefix'/s|:.*$|:'${EPREFIX}/usr',|" \
-e "/'PYTHONFRAMEWORK'/s/:.*$/:'',/" \
-e "/'PYTHONFRAMEWORKDIR'/s/:.*$/:'no-framework',/" \
-e "/'PYTHONFRAMEWORKPREFIX'/s/:.*$/:'',/" \
-e "/'PYTHONFRAMEWORKINSTALLDIR'/s/:.*$/:'',/" \
-e "/'LDLIBRARY'/s|:.*$|:'libpython${SLOT}.dylib',|" \
"${libdir}"/_sysconfigdata.py || die
# add missing version.plist file
mkdir -p "${D}${fwdir}"/Versions/${SLOT}/Resources
cat > "${D}${fwdir}"/Versions/${SLOT}/Resources/version.plist << EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildVersion</key>
<string>1</string>
<key>CFBundleShortVersionString</key>
<string>${PV}</string>
<key>CFBundleVersion</key>
<string>${PV}</string>
<key>ProjectName</key>
<string>Python</string>
<key>SourceVersion</key>
<string>${PV}</string>
</dict>
</plist>
EOF
else
emake DESTDIR="${D}" altinstall
fi
sed -e "s/\(LDFLAGS=\).*/\1/" -i "${libdir}/config/Makefile" || die "sed failed"
# Fix collisions between different slots of Python.
mv "${ED}usr/bin/2to3" "${ED}usr/bin/2to3-${SLOT}"
mv "${ED}usr/bin/pydoc" "${ED}usr/bin/pydoc${SLOT}"
mv "${ED}usr/bin/idle" "${ED}usr/bin/idle${SLOT}"
rm -f "${ED}usr/bin/smtpd.py"
# http://src.opensolaris.org/source/xref/jds/spec-files/trunk/SUNWPython.spec
# These #defines cause problems when building c99 compliant python modules
# http://bugs.python.org/issue1759169
[[ ${CHOST} == *-solaris* ]] && sed -i -e \
's:^\(^#define \(_POSIX_C_SOURCE\|_XOPEN_SOURCE\|_XOPEN_SOURCE_EXTENDED\).*$\):/* \1 */:' \
"${ED}"/usr/include/python${SLOT}/pyconfig.h
use berkdb || rm -r "${libdir}/"{bsddb,dbhash.py*,test/test_bsddb*} || die
use sqlite || rm -r "${libdir}/"{sqlite3,test/test_sqlite*} || die
use tk || rm -r "${ED}usr/bin/idle${SLOT}" "${libdir}/"{idlelib,lib-tk} || die
use elibc_uclibc && rm -fr "${libdir}/"{bsddb/test,test}
use threads || rm -r "${libdir}/multiprocessing" || die
use wininst || rm -r "${libdir}/distutils/command/"wininst-*.exe || die
dodoc "${S}"/Misc/{ACKS,HISTORY,NEWS}
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins -r "${S}"/Tools
fi
insinto /usr/share/gdb/auto-load/usr/$(get_libdir) #443510
local libname
if use aqua ; then
# we do framework, so the emake trick below returns a pathname
# since that won't work here, use a (cheap) trick instead
libname=libpython${SLOT}
else
libname=$(printf 'e:\n\t@echo $(INSTSONAME)\ninclude Makefile\n' | \
emake --no-print-directory -s -f - 2>/dev/null)
fi
newins "${S}"/Tools/gdb/libpython.py "${libname}"-gdb.py
newconfd "${FILESDIR}/pydoc.conf" pydoc-${SLOT}
newinitd "${FILESDIR}/pydoc.init" pydoc-${SLOT}
sed \
-e "s:@PYDOC_PORT_VARIABLE@:PYDOC${SLOT/./_}_PORT:" \
-e "s:@PYDOC@:pydoc${SLOT}:" \
-i "${ED}etc/conf.d/pydoc-${SLOT}" "${ED}etc/init.d/pydoc-${SLOT}" || die "sed failed"
# for python-exec
local vars=( EPYTHON PYTHON_SITEDIR PYTHON_SCRIPTDIR )
# if not using a cross-compiler, use the fresh binary
if ! tc-is-cross-compiler; then
local -x PYTHON=./python$(sed -n '/BUILDEXE=/s/^.*=\s\+//p' Makefile)
local -x LD_LIBRARY_PATH=${LD_LIBRARY_PATH+${LD_LIBRARY_PATH}:}${PWD}
local -x DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH+${DYLD_LIBRARY_PATH}:}${PWD}
local -x DYLD_FRAMEWORK_PATH="${WORKDIR}/${CHOST}"
else
vars=( PYTHON "${vars[@]}" )
fi
python_export "python${SLOT}" "${vars[@]}"
echo "EPYTHON='${EPYTHON}'" > epython.py || die
python_domodule epython.py
# python-exec wrapping support
local pymajor=${SLOT%.*}
mkdir -p "${D}${PYTHON_SCRIPTDIR}" || die
# python and pythonX
ln -s "../../../bin/python${SLOT}" "${D}${PYTHON_SCRIPTDIR}/python${pymajor}" || die
ln -s "python${pymajor}" "${D}${PYTHON_SCRIPTDIR}/python" || die
# python-config and pythonX-config
ln -s "../../../bin/python${SLOT}-config" "${D}${PYTHON_SCRIPTDIR}/python${pymajor}-config" || die
ln -s "python${pymajor}-config" "${D}${PYTHON_SCRIPTDIR}/python-config" || die
# 2to3, pydoc, pyvenv
ln -s "../../../bin/2to3-${SLOT}" "${D}${PYTHON_SCRIPTDIR}/2to3" || die
ln -s "../../../bin/pydoc${SLOT}" "${D}${PYTHON_SCRIPTDIR}/pydoc" || die
# idle
if use tk; then
ln -s "../../../bin/idle${SLOT}" "${D}${PYTHON_SCRIPTDIR}/idle" || die
fi
}
eselect_python_update() {
if [[ -z "$(eselect python show)" || ! -f "${EROOT}usr/bin/$(eselect python show)" ]]; then
eselect python update
fi
if [[ -z "$(eselect python show --python${PV%%.*})" || ! -f "${EROOT}usr/bin/$(eselect python show --python${PV%%.*})" ]]; then
eselect python update --python${PV%%.*}
fi
}
pkg_postinst() {
eselect_python_update
}
pkg_postrm() {
eselect_python_update
}
|