]> git.pld-linux.org Git - packages/python3.git/blob - python3.spec
f4f4d108cfb39acac560261b778bf5952d2dda7a
[packages/python3.git] / python3.spec
1 #
2 # Conditional build:
3 %bcond_with     info                    # info pages (requires emacs)
4 %bcond_without  system_mpdecimal        # system libmpdec library
5 %bcond_without  tkinter                 # disables tkinter module building
6 %bcond_without  tests                   # disables Python testing
7 %bcond_with     verbose_tests           # runs tests in verbose mode
8 #
9 # tests which will not work on 64-bit platforms
10 %define         no64bit_tests   test_audioop test_rgbimg test_imageop
11 # tests which may fail because of builder environment limitations (no /proc or /dev/pts)
12 %define         nobuilder_tests test_resource test_openpty test_socket test_nis test_posix test_locale test_pty test_asyncio test_os
13
14 # tests which fail because of some unknown/unresolved reason (this list should be %{nil})
15 #   test_site: fails because our site.py is patched to include both /usr/share/... and /usr/lib...
16 #   test_gdb: fails, as the gdb uses old python version
17 %define         broken_tests    test_nntplib test_gdb test_site
18
19 %define py_ver          3.5
20 %define py_abi          %{py_ver}m
21 %define py_prefix       %{_prefix}
22 %define py_libdir       %{py_prefix}/%{_lib}/python%{py_ver}
23 %define py_incdir       %{_includedir}/python%{py_abi}
24 %define py_sitedir      %{py_libdir}/site-packages
25 %define py_dyndir       %{py_libdir}/lib-dynload
26
27 Summary:        Very high level scripting language with X interface
28 Summary(es.UTF-8):      Lenguaje script de alto nivel con interfaz X
29 Summary(fr.UTF-8):      Langage de script de très haut niveau avec interface X
30 Summary(pl.UTF-8):      Python - język obiektowy wysokiego poziomu
31 Summary(pt_BR.UTF-8):   Linguagem de programação interpretada de alto nível
32 Summary(ru.UTF-8):      Язык программирования очень высокого уровня с X-интерфейсом
33 Summary(tr.UTF-8):      X arayüzlü, yüksek düzeyli, kabuk yorumlayıcı dili
34 Summary(uk.UTF-8):      Мова програмування дуже високого рівня з X-інтерфейсом
35 Name:           python3
36 Version:        %{py_ver}.1
37 Release:        1
38 Epoch:          1
39 License:        PSF
40 Group:          Development/Languages/Python
41 Source0:        https://www.python.org/ftp/python/%{version}/Python-%{version}.tar.xz
42 # Source0-md5:  e9ea6f2623fffcdd871b7b19113fde80
43 Source1:        pyconfig.h.in
44 Patch0:         %{name}-pythonpath.patch
45 Patch1:         %{name}-ac_fixes.patch
46 Patch2:         %{name}-multilib.patch
47 Patch3:         %{name}-no_cmdline_tests.patch
48 Patch4:         %{name}-makefile-location.patch
49 Patch6:         python-distro.patch
50 Patch7:         %{name}-db.patch
51 Patch8:         %{name}-install_prefix.patch
52 Patch9:         %{name}-tests_with_pythonpath.patch
53 Patch10:        %{name}-bdist_rpm.patch
54 Patch11:        %{name}-installcompile.patch
55 URL:            https://www.python.org/
56 BuildRequires:  autoconf >= 2.65
57 BuildRequires:  automake
58 BuildRequires:  bluez-libs-devel
59 BuildRequires:  bzip2-devel
60 BuildRequires:  db-devel >= 4
61 %{?with_info:BuildRequires:     emacs >= 21}
62 BuildRequires:  expat-devel >= 1:1.95.7
63 BuildRequires:  file
64 BuildRequires:  gdbm-devel >= 1.8.3
65 BuildRequires:  gmp-devel >= 4.0
66 BuildRequires:  libffi-devel
67 BuildRequires:  libstdc++-devel
68 %{?with_system_mpdecimal:BuildRequires: mpdecimal-devel >= 2.4.1}
69 BuildRequires:  ncurses-ext-devel >= 5.2
70 BuildRequires:  openssl-devel >= 0.9.7
71 BuildRequires:  pkgconfig
72 BuildRequires:  readline-devel >= 5.0
73 BuildRequires:  rpm-pythonprov
74 BuildRequires:  sed >= 4.0
75 BuildRequires:  sqlite3-devel >= 3.3.5
76 BuildRequires:  tar >= 1:1.22
77 %{?with_info:BuildRequires:     tetex-makeindex}
78 %{?with_tkinter:BuildRequires:  tix-devel >= 1:8.1.4-4}
79 %{?with_tkinter:BuildRequires:  tk-devel >= 8.4.3}
80 BuildRequires:  xz-devel
81 BuildRequires:  zlib-devel
82 Requires:       %{name}-libs = %{epoch}:%{version}-%{release}
83 Suggests:       pip
84 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
85
86 %define         specflags_ppc   -D__ppc__=1
87 %define         specflags_ppc64 -D__ppc64__=1
88
89 %if %{with verbose_tests}
90 %define test_flags -v -x
91 %else
92 %define test_flags -w -x
93 %endif
94
95 %ifarch alpha ia64 ppc64 sparc64 ppc64 %{x8664}
96 %define test_list %{nobuilder_tests} %{broken_tests} %{no64bit_tests}
97 %else
98 %define test_list %{nobuilder_tests} %{broken_tests}
99 %endif
100
101 %ifarch sparc
102 %define test_list %{nobuilder_tests} %{broken_tests} test_fcntl test_ioctl
103 %endif
104
105 %description
106 Python is an interpreted, interactive, object-oriented programming
107 language. It incorporates modules, exceptions, dynamic typing, very
108 high level dynamic data types, and classes. Python combines remarkable
109 power with very clear syntax. It has interfaces to many system calls
110 and libraries, as well as to various window systems, and is extensible
111 in C or C++. It is also usable as an extension language for
112 applications that need a programmable interface. Finally, Python is
113 portable: it runs on many brands of UNIX, on the Mac, and on PCs under
114 MS-DOS, Windows, Windows NT, and OS/2.
115
116 This package contains the Python binary.
117
118 %description -l de.UTF-8
119 Python ist eine interpretierte, interaktive, objektorientierte
120 Programmiersprache, vergleichbar zu Tcl, Perl, Scheme oder Java.
121 Python enthält Module, Klassen, Exceptions, High-Level dynamische
122 Datentypen und dynamisches Typisieren. Python unterstützt Interfaces
123 zu vielen Systemaufrufen und Libraries, sowie verschiedene
124 Fenstersysteme (X11, Motif, Tk, Mac und MFC)
125
126 Programmierer können neue built-in-Module für Python in C oder C++
127 schreiben. Python kann auch als Erweiterungssprache für Applikationen
128 benutzt werden, die ein programmierbares Interface brauchen. Dieses
129 Paket enthält die meisten Standard-Python-Module, und Module zum
130 Ansprechen von Tix (Tk-widget set) und RPM.
131
132 %description -l es.UTF-8
133 Python es un lenguaje de scripts interpretado orientado a objetos.
134 Contiene soporte para carga dinámica de objetos, clases, módulos y
135 excepciones.
136
137 Es sencillo adicionar interfaces para nuevos sistemas de biblioteca a
138 través de código C, tornando Python fácil de usar en ambientes
139 particulares/personalizados. Este paquete Python incluye la mayoría de
140 los módulos padrón Python, junto con módulos para crear interfaces
141 para el conjunto de componentes Tix para Tk y RPM.
142
143 %description -l fr.UTF-8
144 Python est un langage de script interprété et orienté objet. Il gère
145 le chargement dynamique des objets, les classes, les modules et les
146 exceptions. L'ajout d'interfaces aux nouvelles bibliothèques systèmes
147 avec du code C est simple, ce qui rend Python facile à utiliser dans
148 des configs personnalisées.
149
150 Ce paquetage Python contient la plupart des modules Python standards,
151 ainsi que ceux permettant l'interfaçage avec les widgets Tix pour Tk
152 et RPM.
153
154 %description -l pl.UTF-8
155 Python jest interpretowanym, interaktywnym i zorientowanym obiektowo
156 językiem programowania. Jest modularny, obsługuje wyjątki, dynamiczne
157 typy, zaawansowane dynamiczne struktury danych i klasy. Python łączy w
158 sobie duże możliwości i przejrzystą składnię. Posiada interfejsy do
159 wielu wywołań systemowych i bibliotek, w tym również do różnych
160 bibliotek okienkowych. Możliwości jego można jeszcze rozszerzać
161 poprzez odpowiednie moduły pisane w C lub C++. Python może być również
162 użyty jako element aplikacji, którym potrzebny jest interpreter do
163 skryptów. I wreszcie, Python jest wieloplatformowy, działa na wielu
164 odmianach UNIX-a, Macu oraz PC pod DOS-em, Windows, WindowsNT oraz
165 OS/2.
166
167 Ten pakiet zawiera binarkę Pythona.
168
169 %description -l pt_BR.UTF-8
170 Python é uma linguagem de scripts interpretada orientada a objetos.
171 Contém suporte para carga dinâmica de objetos, classes, módulos e
172 exceções. Adicionar interfaces para novos sistemas de biblioteca
173 através de código C é simples, tornando Python fácil de usar em
174 ambientes particulares/personalizados.
175
176 Este pacote Python inclui a maioria do módulos padrão Python, junto
177 com módulos para interfaceamento para o conjunto de componentes Tix
178 para Tk e RPM.
179
180 %description -l ru.UTF-8
181 Python - это интерпретируемый, объектно-ориентированный язык
182 программирования. Он поддерживает динамическую загрузку объектов,
183 классы, модули и обработку исключительных ситуаций (exceptions).
184 Простота добавления интерфейсов к новым системным библиотекам через
185 код на языке C делает Python хорошим выбором для использования в
186 специальных конфигурациях.
187
188 %description -l tr.UTF-8
189 Python, nesneye yönelik bir kabuk yorumlayıcıdır. Nesnelerin,
190 sınıfların, modüllerin ve aykırı durumların dinamik yüklenmelerine
191 destek verir. C koduyla birlikte kullanımı son derece kolaydır. Bu
192 paket, standart Python birimlerinin çoğunun yanısıra Tk ve RPM için
193 arayüz birimlerini de içerir.
194
195 %description -l uk.UTF-8
196 Python - це інтерпретована, об'єктно-орієнтована мова програмування.
197 Він підтримує динамічну загрузку об'єктів, класи, модулі та обробку
198 виключних ситуацій (exceptions). Простота додавання інтерфейсів для
199 нових системних бібліотек через код на мові C робить Python добрим
200 вибором для використання в спеціальних конфігураціях.
201
202 %package libs
203 Summary:        Python library
204 Summary(pl.UTF-8):      Biblioteka języka Python
205 Group:          Libraries/Python
206 # broken detection in rpm/pythondeps.sh
207 Provides:       python(abi) = %{py_ver}
208 # for compatibility with existing Ac packages
209 Provides:       python(bytecode) = %{py_ver}
210 %{!?with_info:Obsoletes: python3-doc-info}
211
212 %description libs
213 Python shared library and very essental modules for Python binary.
214
215 %description libs -l pl.UTF-8
216 Biblioteka współdzielona języka Python oraz bardzo podstawowe moduły
217 dla Pythona.
218
219 %package modules
220 Summary:        Python modules
221 Summary(pl.UTF-8):      Moduły języka Python
222 Group:          Libraries/Python
223 Requires:       %{name}-libs = %{epoch}:%{version}-%{release}
224 %{?with_system_mpdecimal:Requires:      mpdecimal >= 2.4.1}
225 Provides:       python3-enum
226 Obsoletes:      python3-enum
227 Obsoletes:      python3-modules-sqlite
228 %requires_eq_to openssl openssl-devel
229
230 %description modules
231 Python officially distributed modules.
232
233 %description modules -l pl.UTF-8
234 Oficjalnie rozprowadzane moduły języka Python.
235
236 %package -n pydoc3
237 Summary:        Python interactive module documentation access support
238 Summary(pl.UTF-8):      Interaktywne korzystanie z dokumentacji modułów języka Python
239 Group:          Applications
240 Requires:       %{name}-modules = %{epoch}:%{version}-%{release}
241
242 %description -n pydoc3
243 Python interactive module documentation access support.
244
245 %description -n pydoc3 -l pl.UTF-8
246 Interaktywne korzystanie z dokumentacji modułów języka Python.
247
248 %package -n idle3
249 Summary:        IDE for Python language
250 Summary(pl.UTF-8):      IDE dla języka Python
251 Group:          Applications
252 Requires:       %{name}-tkinter = %{epoch}:%{version}-%{release}
253
254 %description -n idle3
255 IDE for Python language.
256
257 %description -n idle3 -l pl.UTF-8
258 IDE dla języka Python.
259
260 %package devel
261 Summary:        Libraries and header files for building python code
262 Summary(de.UTF-8):      Libraries und Header-Dateien zum Erstellen von Python-Code
263 Summary(es.UTF-8):      Bibliotecas y archivos de inclusión para construir programas en python
264 Summary(fr.UTF-8):      Bibliothèques et en-têtes pour construire du code python
265 Summary(pl.UTF-8):      Pliki nagłówkowe i biblioteki Pythona
266 Summary(pt_BR.UTF-8):   Bibliotecas e arquivos de inclusão para o Python
267 Summary(ru.UTF-8):      Библиотеки и хедеры для построения кода на языке Python
268 Summary(tr.UTF-8):      Python ile geliştirme yapmak için gerekli dosyalar
269 Summary(uk.UTF-8):      Бібліотеки та хедери для програмування на мові Python
270 Group:          Development/Languages/Python
271 Requires:       %{name}-libs = %{epoch}:%{version}-%{release}
272
273 %description devel
274 The Python interpreter is relatively easy to extend with dynamically
275 loaded extensions and to embed in other programs. This package
276 contains the header files and libraries which are needed to do both of
277 these tasks.
278
279 %description devel -l de.UTF-8
280 Der Python-Interpretierer ist relativ einfach anhand von dynamisch
281 ladbaren Erweiterungen auszubauen und läßt sich in andere Programme
282 integrieren. Dieses Paket enthält die Header-Dateien und Libraries,
283 die für beide Aufgaben erforderlich sind.
284
285 %description devel -l es.UTF-8
286 El interpretador Python permite incluir con facilidad extensiones
287 cargadas dinámicamente. Python es también fácil de ser empotrado en
288 otros programas. Este paquete contiene los archivos de inclusión y
289 bibliotecas necesarios para estas dos tareas.
290
291 %description devel -l fr.UTF-8
292 L'interpréteur Python est relativement facile à étendre avec des
293 extensions chargées dynamiquement et à insérer dans d'autres
294 programmes. Ce paquetage contient les en-têtes et les bibliothèques
295 nécessaires à ces deux tâches.
296
297 %description devel -l pl.UTF-8
298 Interpreter Pythona jest w miarę łatwy do rozszerzania przy pomocy
299 dynamicznie ładowanych rozszerzeń napisanych w C lub C++ oraz
300 osadzania w innych programach. Ten pakiet zawiera pliki nagłówkowe i
301 wszystko inne co potrzebne do tych celów.
302
303 %description devel -l pt_BR.UTF-8
304 O interpretador Python permite incluir com facilidade extensões
305 carregadas dinamicamente. Python é também fácil de ser embutido em
306 outros programas. Este pacote contém os arquivos de inclusão e
307 bibliotecas necessários para estas duas tarefas.
308
309 %description devel -l ru.UTF-8
310 Интерпретатор Python относительно легко расширяется при помощи
311 динамически загружаемых расширений и встраивается в другие программы.
312 Этот пакет содержит хедеры и библиотеки, необходимые для обеих этих
313 задач.
314
315 %description devel -l tr.UTF-8
316 Bu paket, Python ile geliştirme yapılabilmesi için gerekli başlık
317 dosyalarını ve kitaplıkları içerir.
318
319 %description devel -l uk.UTF-8
320 Інтерпретатор Python відносно легко розширюється за допомогою
321 розширень з динамічною загрузкою та вбудовується в інші програми. Цей
322 пакет містить хедери та бібліотеки, необхідні для обох цих задач.
323
324 %package devel-src
325 Summary:        Python module sources
326 Summary(pl.UTF-8):      Pliki źródłowe modułów Pythona
327 Group:          Development/Languages/Python
328 Requires:       %{name}-modules = %{epoch}:%{version}-%{release}
329
330 %description devel-src
331 Python module sources.
332
333 %description devel-src -l pl.UTF-8
334 Pliki źródłowe modułów Pythona.
335
336 %package devel-tools
337 Summary:        Python development tools
338 Summary(pl.UTF-8):      Narzędzia programistyczne języka Python
339 Group:          Development/Languages/Python
340 Requires:       %{name}-modules = %{epoch}:%{version}-%{release}
341
342 %description devel-tools
343 Python development tools such as profilers and debugger.
344
345 %description devel-tools -l pl.UTF-8
346 Narzędzia programistyczne języka Python takie jak profiler oraz
347 debugger.
348
349 %package 2to3
350 Summary:        Automated Python 2 to 3 code translation
351 Summary(pl.UTF-8):      Automatyczne tłumaczenie kodu Pythona 2 do 3
352 Group:          Development/Languages/Python
353
354 %description 2to3
355 2to3 is a Python program that reads Python 2.x source code and applies
356 a series of fixers to transform it into valid Python 3.x code. The
357 standard library contains a rich set of fixers that will handle almost
358 all code. 2to3 supporting library lib2to3 is, however, a flexible and
359 generic library, so it is possible to write your own fixers for 2to3.
360 lib2to3 could also be adapted to custom applications in which Python
361 code needs to be edited automatically.
362
363 %description 2to3 -l pl.UTF-8
364 2to3 to program w Pythonie czytający od źródłowy w Pythonie 2.x i
365 aplikujący serię poprawek przekształcających go w poprawny kod w
366 Pythonie 3.x. Biblioteka standardowa zawiera duży zbiór poprawek
367 obsługujących większość kodu. Biblioteka wspierająca 2to3 (lib2to3)
368 jest jednak elastyczną i ogólną biblioteką, więc można pisać własne
369 poprawki dla 2to3. lib2to3 można także zaadaptować na potrzeby
370 własnych zastosowań, w których kod w Pythonie musi być modyfikowany
371 automatycznie.
372
373 %package static
374 Summary:        Static python library
375 Summary(pl.UTF-8):      Statyczna biblioteka Pythona
376 Group:          Development/Languages/Python
377 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
378
379 %description static
380 Static python library.
381
382 %description static -l pl.UTF-8
383 Statyczna biblioteka Pythona.
384
385 %package doc-info
386 Summary:        Documentation on Python in texinfo format
387 Summary(pl.UTF-8):      Dokumentacja do Pythona w formacie texinfo
388 Group:          Documentation
389
390 %description doc-info
391 Documentation on Python in texinfo format.
392
393 %description doc-info -l pl.UTF-8
394 Dokumentacja do Pythona w formacie texinfo.
395
396 %package tkinter
397 Summary:        Standard Python interface to the Tk GUI toolkit
398 Summary(de.UTF-8):      Grafische Tk-Schnittstelle für Python
399 Summary(es.UTF-8):      Interfaz de GUI Tk para Python
400 Summary(fr.UTF-8):      Interface graphique Tk pour Python
401 Summary(pl.UTF-8):      Standardowy interfejs Pythona do biblioteki Tk
402 Summary(pt_BR.UTF-8):   Interface GUI Tk para Phyton
403 Summary(tr.UTF-8):      Python için grafik kullanıcı arayüzü
404 Group:          Libraries/Python
405 Requires:       %{name}-modules = %{epoch}:%{version}-%{release}
406 Requires:       tcl >= 8.4.3
407 Requires:       tix >= 1:8.1.4-4
408 Requires:       tk >= 8.4.3
409
410 %description tkinter
411 Standard Python interface to the Tk GUI toolkit.
412
413 %description tkinter -l de.UTF-8
414 Eine grafische Schnittstelle für Python, basierend auf Tcl/Tk, und von
415 vielen Konfigurations-Tools genutzt.
416
417 %description tkinter -l es.UTF-8
418 Una interfaz gráfica para Python, basada en Tcl/Tk, y usada por muchas
419 herramientas de configuración.
420
421 %description tkinter -l fr.UTF-8
422 Interface graphique pour Python, basée sur Tcl/Tk et utilisée par
423 beaucoup des outils de configuration.
424
425 %description tkinter -l pl.UTF-8
426 Standardowy interfejs Pythona do biblioteki Tk.
427
428 %description tkinter -l pt_BR.UTF-8
429 Uma interface gráfica para Python, baseada em Tcl/Tk, e usada por
430 muitas ferramentas de configuração.
431
432 %description tkinter -l ru.UTF-8
433 Графический интерфейс (GUI) для Python, построенный на Tcl/Tk.
434
435 %description tkinter -l tr.UTF-8
436 Python için Tcl/Tk'ye dayalı ve pek çok ayarlama aracı tarafından
437 kullanılan grafik bir arayüzdür.
438
439 %description tkinter -l uk.UTF-8
440 Графічний інтерфейс (GUI) для Python, побудований на Tcl/Tk.
441
442 %package examples
443 Summary:        Example programs in Python
444 Summary(pl.UTF-8):      Przykładowe programy w Pythonie
445 Group:          Development/Languages/Python
446
447 %description examples
448 Example programs in Python.
449
450 These are for Python 2.3.4, not %{version}.
451
452 %description examples -l pl.UTF-8
453 Przykładowe programy w Pythonie.
454
455 Przykłady te są dla Pythona 2.3.4, nie %{version}.
456
457 %package test
458 Summary:        Test modules for Python
459 Summary(pl.UTF-8):      Moduły testowe dla Pythona
460 Group:          Development/Languages/Python
461
462 %description test
463 Test modules for Python.
464
465 %description test -l pl.UTF-8
466 Moduły testowe dla Pythona.
467
468 %prep
469 %setup -q -n Python-%{version}
470 %patch0 -p1
471 %patch1 -p1
472 %patch2 -p1
473 %patch3 -p1
474 %patch4 -p1
475 %patch6 -p1
476 %patch7 -p1
477 %patch8 -p1
478 %patch9 -p1
479 %patch10 -p1
480 %patch11 -p1
481
482 %{__rm} -r Modules/zlib
483 %{__rm} -r Modules/expat
484
485 for SUBDIR in darwin libffi libffi_arm_wince libffi_msvc libffi_osx; do
486         %{__rm} -r Modules/_ctypes/$SUBDIR/*
487 done
488
489 %if "%{pld_release}" == "ac"
490 files="md5module.c sha1module.c"
491 files="$files sha256module.c sha512module.c"
492 for f in $files; do
493         %{__rm} Modules/$f
494 done
495 %endif
496
497 find . -name '*.py' | xargs -r grep -El '^#! */usr/bin/env python3?' | xargs %{__sed} -i -e '1s,^#! */usr/bin/env python3\?,#!/usr/bin/python3,'
498
499 %build
500 if ! grep -q "tmpfs" /proc/self/mounts; then
501         echo "You need to have /dev/shm mounted in order to build this package!" >&2
502         echo "(Or any other tmpfs mounted and accessible to the rpmbuild process)" >&2
503         exit 1
504 fi
505
506 %{__aclocal}
507 %{__autoconf}
508 %configure \
509         CC="%{__cc}" \
510         OPT="%{rpmcflags} -fno-caller-saves" \
511         CPPFLAGS="%{rpmcppflags}" \
512         LDFLAGS="%{rpmldflags}" \
513         ac_cv_posix_semaphores_enabled=yes \
514         ac_cv_broken_sem_getvalue=no \
515         --enable-ipv6 \
516         --enable-shared \
517         --with-computed-gotos \
518         --with-dbmliborder=gdbm:bdb \
519         --with-doc-strings \
520         --without-ensurepip \
521         --with-fpectl \
522         %{?with_debug:--with-pydebug} \
523         --with-signal-module \
524         --with-system-expat \
525         --with-system-ffi \
526         %{?with_system_mpdecimal:--with-system-libmpdec} \
527         --with-threads \
528 %ifarch %{ix86} %{x8664} ppc ppc64
529         --with-tsc
530 %endif
531
532 %{__make} 2>&1 | awk '
533 BEGIN { fail = 0; logmsg = ""; }
534 {
535                 if ($0 ~ /\*\*\* WARNING:/) {
536                                 fail = 1;
537                                 logmsg = logmsg $0;
538                 }
539                 print $0;
540 }
541 END { if (fail) { print "\nPROBLEMS FOUND:"; print logmsg; exit(1); } }'
542
543 LC_ALL=C
544 export LC_ALL
545 %if %{with tests}
546 binlibdir=`echo build/lib.*`
547 # -l and -j don't go together! and -j is brought up by Tools/scripts/run_tests.py
548 WITHIN_PYTHON_RPM_BUILD=1 %{__make} test \
549         TESTOPTS="%{test_flags} %{test_list}" \
550         TESTPYTHON="LD_LIBRARY_PATH=`pwd` PYTHONHOME=`pwd` PYTHONPATH=`pwd`/Lib:`pwd`/$binlibdir ./python -tt"
551 %endif
552
553 %install
554 rm -rf $RPM_BUILD_ROOT
555 install -d $RPM_BUILD_ROOT{%{_bindir},%{_libdir},%{_pkgconfigdir}} \
556         $RPM_BUILD_ROOT{%{py_sitedir},%{py_sitescriptdir}}/__pycache__ \
557         $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version} \
558         $RPM_BUILD_ROOT{%{_infodir},%{_mandir}/man1} \
559         $RPM_BUILD_ROOT/etc/shrc.d
560
561 %{__make} install \
562         DESTDIR=$RPM_BUILD_ROOT
563
564 %if %{with info}
565 %{__make} -C Doc/info
566 cp -p Doc/info/python*info* $RPM_BUILD_ROOT%{_infodir}
567 %endif
568
569 install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
570 cp -a Tools $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
571
572 # make libpython3.so simply symlink to real lib
573 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libpython3.so
574 ln -s libpython%{py_abi}.so $RPM_BUILD_ROOT%{_libdir}/libpython3.so
575
576 #
577 # create several useful aliases, such as timeit.py, profile.py, pdb.py, smtpd.py
578 #
579
580 # for python devel tools
581 for script in timeit profile pdb pstats; do
582         echo "alias ${script}%{py_ver}.py='python%{py_ver} -m ${script}'"
583 done > $RPM_BUILD_ROOT/etc/shrc.d/python%{py_ver}-devel.sh
584
585 echo "alias pygettext%{py_ver}.py='pygettext%{py_ver}'" \
586         >> $RPM_BUILD_ROOT/etc/shrc.d/python%{py_ver}-devel.sh
587
588 sed 's/=/ /' \
589         < $RPM_BUILD_ROOT/etc/shrc.d/python%{py_ver}-devel.sh \
590         > $RPM_BUILD_ROOT/etc/shrc.d/python%{py_ver}-devel.csh
591
592 # for python modules
593 for script in smtpd webbrowser; do
594         echo "alias ${script}%{py_ver}.py='python%{py_ver} -m ${script}'"
595 done > $RPM_BUILD_ROOT/etc/shrc.d/python%{py_ver}-modules.sh
596
597 sed 's/=/ /' \
598         < $RPM_BUILD_ROOT/etc/shrc.d/python%{py_ver}-modules.sh \
599         > $RPM_BUILD_ROOT/etc/shrc.d/python%{py_ver}-modules.csh
600
601 # xgettext specific for Python code
602 #
603 # we will have two commands: pygettext.py (an alias) and pygettext;
604 # this way there are no import (which is impossible now) conflicts and
605 # pygettext.py is provided for compatibility
606 install -p Tools/i18n/pygettext.py $RPM_BUILD_ROOT%{_bindir}/pygettext%{py_ver}
607
608 # reindent python code
609 install -p Tools/scripts/reindent.py $RPM_BUILD_ROOT%{_bindir}/pyreindent%{py_ver}
610
611 # just to cut the noise, as they are not packaged (now)
612 %{__rm} $RPM_BUILD_ROOT%{py_libdir}/ctypes/macholib/fetch_macholib*
613 %{__rm} $RPM_BUILD_ROOT%{py_libdir}/distutils/command/wininst*.exe
614 %{__rm} $RPM_BUILD_ROOT%{py_libdir}/idlelib/*.bat
615 %{__rm} $RPM_BUILD_ROOT%{py_libdir}/idlelib/*.pyw
616 %{__rm} $RPM_BUILD_ROOT%{py_libdir}/idlelib/help.html
617 %{__rm} $RPM_BUILD_ROOT%{py_libdir}/plat-*/regen
618 %{__rm} $RPM_BUILD_ROOT%{py_libdir}/site-packages/README
619
620 # currently provided by python-2to3, consider switching to this one
621 %{__rm} $RPM_BUILD_ROOT%{_bindir}/2to3
622
623 # that seems to be only an empty extension template,
624 # which seems to be built only {with tests}
625 %{__rm} -f $RPM_BUILD_ROOT%{py_dyndir}/xxlimited.*.so
626
627 # already in %%doc
628 %{__rm} $RPM_BUILD_ROOT%{py_libdir}/LICENSE.txt
629
630 %{__mv} $RPM_BUILD_ROOT%{py_incdir}/pyconfig.h $RPM_BUILD_ROOT%{py_libdir}/config-%{py_abi}/pyconfig.h
631 %{__sed} -e's#@PREFIX@#%{_prefix}#g;s#@PY_VER@#%{py_ver}#g;s#@PY_ABI@#%{py_abi}#g' %{SOURCE1} > $RPM_BUILD_ROOT%{py_incdir}/pyconfig.h
632
633 %clean
634 rm -rf $RPM_BUILD_ROOT
635
636 %post   libs -p /sbin/ldconfig
637 %postun libs -p /sbin/ldconfig
638
639 %post   doc-info -p /sbin/postshell
640 -/usr/sbin/fix-info-dir -c %{_infodir}
641
642 %postun doc-info -p /sbin/postshell
643 -/usr/sbin/fix-info-dir -c %{_infodir}
644
645 %files
646 %defattr(644,root,root,755)
647 %attr(755,root,root) %{_bindir}/python%{py_ver}
648 %attr(755,root,root) %{_bindir}/python%{py_abi}
649 %attr(755,root,root) %{_bindir}/python3
650 %{_mandir}/man1/python%{py_ver}.1*
651 %{_mandir}/man1/python3.1*
652
653 %files libs
654 %defattr(644,root,root,755)
655 %doc LICENSE
656 %attr(755,root,root) %{_libdir}/libpython%{py_abi}.so.*.*
657
658 %dir %{py_incdir}
659 %{py_incdir}/pyconfig.h
660
661 %dir %{py_libdir}
662 %dir %{py_dyndir}
663 %dir %{py_sitedir}
664 %dir %{py_sitedir}/__pycache__
665 %dir %{py_libdir}/__pycache__
666 %dir %{py_scriptdir}
667 %dir %{py_sitescriptdir}
668 %dir %{py_sitescriptdir}/__pycache__
669
670 # shared modules required by python library
671 %attr(755,root,root) %{py_dyndir}/_struct.cpython-*.so
672
673 # modules required by python library
674 %{py_libdir}/_collections_abc.py
675 %{py_libdir}/_sitebuiltins.py
676 %{py_libdir}/_sysconfigdata.py
677 %{py_libdir}/_weakrefset.py
678 %{py_libdir}/abc.py
679 %{py_libdir}/bisect.py
680 %{py_libdir}/codecs.py
681 %{py_libdir}/copyreg.py
682 %{py_libdir}/functools.py
683 %{py_libdir}/genericpath.py
684 %{py_libdir}/heapq.py
685 %{py_libdir}/keyword.py
686 %{py_libdir}/linecache.py
687 %{py_libdir}/locale.py
688 %{py_libdir}/io.py
689 %{py_libdir}/posixpath.py
690 %{py_libdir}/re.py
691 %{py_libdir}/reprlib.py
692 %{py_libdir}/site.py
693 %{py_libdir}/sre_*.py
694 %{py_libdir}/stat.py
695 %{py_libdir}/sysconfig.py
696 %{py_libdir}/token.py
697 %{py_libdir}/tokenize.py
698 %{py_libdir}/traceback.py
699 %{py_libdir}/weakref.py
700 %{py_libdir}/os.py
701 # needed by the dynamic sys.lib patch
702 %{py_libdir}/types.py
703 %{py_libdir}/__pycache__/_sitebuiltins.cpython-*.py[co]
704 %{py_libdir}/__pycache__/_sysconfigdata.cpython-*.py[co]
705 %{py_libdir}/__pycache__/_weakrefset.cpython-*.py[co]
706 %{py_libdir}/__pycache__/abc.cpython-*.py[co]
707 %{py_libdir}/__pycache__/bisect.cpython-*.py[co]
708 %{py_libdir}/__pycache__/codecs.cpython-*.py[co]
709 %{py_libdir}/__pycache__/_collections_abc.cpython-*.py[co]
710 %{py_libdir}/__pycache__/copyreg.cpython-*.py[co]
711 %{py_libdir}/__pycache__/functools.cpython-*.py[co]
712 %{py_libdir}/__pycache__/genericpath.cpython-*.py[co]
713 %{py_libdir}/__pycache__/heapq.cpython-*.py[co]
714 %{py_libdir}/__pycache__/keyword.cpython-*.py[co]
715 %{py_libdir}/__pycache__/linecache.cpython-*.py[co]
716 %{py_libdir}/__pycache__/locale.cpython-*.py[co]
717 %{py_libdir}/__pycache__/io.cpython-*.py[co]
718 %{py_libdir}/__pycache__/posixpath.cpython-*.py[co]
719 %{py_libdir}/__pycache__/re.cpython-*.py[co]
720 %{py_libdir}/__pycache__/reprlib.cpython-*.py[co]
721 %{py_libdir}/__pycache__/site.cpython-*.py[co]
722 %{py_libdir}/__pycache__/sre_*.cpython-*.py[co]
723 %{py_libdir}/__pycache__/stat.cpython-*.py[co]
724 %{py_libdir}/__pycache__/sysconfig.cpython-*.py[co]
725 %{py_libdir}/__pycache__/token.cpython-*.py[co]
726 %{py_libdir}/__pycache__/tokenize.cpython-*.py[co]
727 %{py_libdir}/__pycache__/traceback.cpython-*.py[co]
728 %{py_libdir}/__pycache__/weakref.cpython-*.py[co]
729 %{py_libdir}/__pycache__/os.cpython-*.py[co]
730 %{py_libdir}/__pycache__/types.cpython-*.py[co]
731
732 %{py_libdir}/collections
733
734 # encodings required by python library
735 %dir %{py_libdir}/encodings
736 %{py_libdir}/encodings/__pycache__
737 %{py_libdir}/encodings/*.py
738
739 %dir %{py_libdir}/config-%{py_abi}
740 %{py_libdir}/config-%{py_abi}/Makefile
741 %{py_libdir}/config-%{py_abi}/Setup
742 %{py_libdir}/config-%{py_abi}/Setup.config
743 %{py_libdir}/config-%{py_abi}/Setup.local
744 %{py_libdir}/config-%{py_abi}/pyconfig.h
745
746 %files modules
747 %defattr(644,root,root,755)
748 /etc/shrc.d/python*-modules*
749 %attr(755,root,root) %{_bindir}/pyvenv
750 %attr(755,root,root) %{_bindir}/pyvenv-%{py_ver}
751 %{py_libdir}/__future__.py
752 %{py_libdir}/__phello__.foo.py
753 %{py_libdir}/_bootlocale.py
754 %{py_libdir}/_compat_pickle.py
755 %{py_libdir}/_compression.py
756 %{py_libdir}/_dummy_thread.py
757 %{py_libdir}/_markupbase.py
758 %{py_libdir}/_osx_support.py
759 %{py_libdir}/_pydecimal.py
760 %{py_libdir}/_pyio.py
761 %{py_libdir}/_strptime.py
762 %{py_libdir}/_threading_local.py
763 %{py_libdir}/aifc.py
764 %{py_libdir}/antigravity.py
765 %{py_libdir}/argparse.py
766 %{py_libdir}/ast.py
767 %{py_libdir}/asynchat.py
768 %{py_libdir}/asyncore.py
769 %{py_libdir}/base64.py
770 %{py_libdir}/bdb.py
771 %{py_libdir}/binhex.py
772 %{py_libdir}/bz2.py
773 %{py_libdir}/cProfile.py
774 %{py_libdir}/calendar.py
775 %{py_libdir}/cgi.py
776 %{py_libdir}/cgitb.py
777 %{py_libdir}/chunk.py
778 %{py_libdir}/cmd.py
779 %{py_libdir}/code.py
780 %{py_libdir}/codeop.py
781 %{py_libdir}/colorsys.py
782 %{py_libdir}/compileall.py
783 %{py_libdir}/configparser.py
784 %{py_libdir}/contextlib.py
785 %{py_libdir}/copy.py
786 %{py_libdir}/crypt.py
787 %{py_libdir}/csv.py
788 %{py_libdir}/datetime.py
789 %{py_libdir}/decimal.py
790 %{py_libdir}/difflib.py
791 %{py_libdir}/dis.py
792 %{py_libdir}/doctest.py
793 %{py_libdir}/dummy_threading.py
794 %{py_libdir}/enum.py
795 %{py_libdir}/filecmp.py
796 %{py_libdir}/fileinput.py
797 %{py_libdir}/fnmatch.py
798 %{py_libdir}/formatter.py
799 %{py_libdir}/fractions.py
800 %{py_libdir}/ftplib.py
801 %{py_libdir}/getopt.py
802 %{py_libdir}/getpass.py
803 %{py_libdir}/gettext.py
804 %{py_libdir}/glob.py
805 %{py_libdir}/gzip.py
806 %{py_libdir}/hashlib.py
807 %{py_libdir}/hmac.py
808 %{py_libdir}/imaplib.py
809 %{py_libdir}/imghdr.py
810 %{py_libdir}/imp.py
811 %{py_libdir}/inspect.py
812 %{py_libdir}/ipaddress.py
813 %{py_libdir}/lzma.py
814 %{py_libdir}/macpath.py
815 %{py_libdir}/macurl2path.py
816 %{py_libdir}/mailbox.py
817 %{py_libdir}/mailcap.py
818 %{py_libdir}/mimetypes.py
819 %{py_libdir}/modulefinder.py
820 %{py_libdir}/netrc.py
821 %{py_libdir}/nntplib.py
822 %{py_libdir}/ntpath.py
823 %{py_libdir}/nturl2path.py
824 %{py_libdir}/numbers.py
825 %{py_libdir}/opcode.py
826 %{py_libdir}/operator.py
827 %{py_libdir}/optparse.py
828 %{py_libdir}/pathlib.py
829 %{py_libdir}/pickle.py
830 %{py_libdir}/pickletools.py
831 %{py_libdir}/pipes.py
832 %{py_libdir}/pkgutil.py
833 %{py_libdir}/platform.py
834 %{py_libdir}/plistlib.py
835 %{py_libdir}/poplib.py
836 %{py_libdir}/pprint.py
837 %{py_libdir}/pty.py
838 %{py_libdir}/py_compile.py
839 %{py_libdir}/pyclbr.py
840 %{py_libdir}/queue.py
841 %{py_libdir}/quopri.py
842 %{py_libdir}/random.py
843 %{py_libdir}/rlcompleter.py
844 %{py_libdir}/runpy.py
845 %{py_libdir}/signal.py
846 %{py_libdir}/sched.py
847 %{py_libdir}/selectors.py
848 %{py_libdir}/shelve.py
849 %{py_libdir}/shlex.py
850 %{py_libdir}/shutil.py
851 %{py_libdir}/smtpd.py
852 %{py_libdir}/smtplib.py
853 %{py_libdir}/sndhdr.py
854 %{py_libdir}/socket.py
855 %{py_libdir}/socketserver.py
856 %{py_libdir}/ssl.py
857 %{py_libdir}/statistics.py
858 %{py_libdir}/string.py
859 %{py_libdir}/stringprep.py
860 %{py_libdir}/struct.py
861 %{py_libdir}/subprocess.py
862 %{py_libdir}/sunau.py
863 %{py_libdir}/symbol.py
864 %{py_libdir}/symtable.py
865 %{py_libdir}/tabnanny.py
866 %{py_libdir}/tarfile.py
867 %{py_libdir}/telnetlib.py
868 %{py_libdir}/tempfile.py
869 %{py_libdir}/textwrap.py
870 %{py_libdir}/this.py
871 %{py_libdir}/threading.py
872 %{py_libdir}/trace.py
873 %{py_libdir}/tracemalloc.py
874 %{py_libdir}/tty.py
875 %{py_libdir}/turtle.py
876 %{py_libdir}/typing.py
877 %{py_libdir}/uu.py
878 %{py_libdir}/uuid.py
879 %{py_libdir}/warnings.py
880 %{py_libdir}/wave.py
881 %{py_libdir}/webbrowser.py
882 %{py_libdir}/xdrlib.py
883 %{py_libdir}/zipapp.py
884 %{py_libdir}/zipfile.py
885 %{py_libdir}/__pycache__/__future__.cpython-*.py[co]
886 %{py_libdir}/__pycache__/__phello__.foo.cpython-*.py[co]
887 %{py_libdir}/__pycache__/_bootlocale.cpython-*.py[co]
888 %{py_libdir}/__pycache__/_compat_pickle.cpython-*.py[co]
889 %{py_libdir}/__pycache__/_compression.cpython-*.py[co]
890 %{py_libdir}/__pycache__/_dummy_thread.cpython-*.py[co]
891 %{py_libdir}/__pycache__/_markupbase.cpython-*.py[co]
892 %{py_libdir}/__pycache__/_osx_support.cpython-*.py[co]
893 %{py_libdir}/__pycache__/_pydecimal.cpython-*.py[co]
894 %{py_libdir}/__pycache__/_pyio.cpython-*.py[co]
895 %{py_libdir}/__pycache__/_strptime.cpython-*.py[co]
896 %{py_libdir}/__pycache__/_threading_local.cpython-*.py[co]
897 %{py_libdir}/__pycache__/aifc.cpython-*.py[co]
898 %{py_libdir}/__pycache__/antigravity.cpython-*.py[co]
899 %{py_libdir}/__pycache__/argparse.cpython-*.py[co]
900 %{py_libdir}/__pycache__/ast.cpython-*.py[co]
901 %{py_libdir}/__pycache__/asynchat.cpython-*.py[co]
902 %{py_libdir}/__pycache__/asyncore.cpython-*.py[co]
903 %{py_libdir}/__pycache__/base64.cpython-*.py[co]
904 %{py_libdir}/__pycache__/bdb.cpython-*.py[co]
905 %{py_libdir}/__pycache__/binhex.cpython-*.py[co]
906 %{py_libdir}/__pycache__/bz2.cpython-*.py[co]
907 %{py_libdir}/__pycache__/cProfile.cpython-*.py[co]
908 %{py_libdir}/__pycache__/calendar.cpython-*.py[co]
909 %{py_libdir}/__pycache__/cgi.cpython-*.py[co]
910 %{py_libdir}/__pycache__/cgitb.cpython-*.py[co]
911 %{py_libdir}/__pycache__/chunk.cpython-*.py[co]
912 %{py_libdir}/__pycache__/cmd.cpython-*.py[co]
913 %{py_libdir}/__pycache__/code.cpython-*.py[co]
914 %{py_libdir}/__pycache__/codeop.cpython-*.py[co]
915 %{py_libdir}/__pycache__/colorsys.cpython-*.py[co]
916 %{py_libdir}/__pycache__/compileall.cpython-*.py[co]
917 %{py_libdir}/__pycache__/configparser.cpython-*.py[co]
918 %{py_libdir}/__pycache__/contextlib.cpython-*.py[co]
919 %{py_libdir}/__pycache__/copy.cpython-*.py[co]
920 %{py_libdir}/__pycache__/crypt.cpython-*.py[co]
921 %{py_libdir}/__pycache__/csv.cpython-*.py[co]
922 %{py_libdir}/__pycache__/datetime.cpython-*.py[co]
923 %{py_libdir}/__pycache__/decimal.cpython-*.py[co]
924 %{py_libdir}/__pycache__/difflib.cpython-*.py[co]
925 %{py_libdir}/__pycache__/dis.cpython-*.py[co]
926 %{py_libdir}/__pycache__/doctest.cpython-*.py[co]
927 %{py_libdir}/__pycache__/dummy_threading.cpython-*.py[co]
928 %{py_libdir}/__pycache__/enum.cpython-*.py[co]
929 %{py_libdir}/__pycache__/filecmp.cpython-*.py[co]
930 %{py_libdir}/__pycache__/fileinput.cpython-*.py[co]
931 %{py_libdir}/__pycache__/fnmatch.cpython-*.py[co]
932 %{py_libdir}/__pycache__/formatter.cpython-*.py[co]
933 %{py_libdir}/__pycache__/fractions.cpython-*.py[co]
934 %{py_libdir}/__pycache__/ftplib.cpython-*.py[co]
935 %{py_libdir}/__pycache__/getopt.cpython-*.py[co]
936 %{py_libdir}/__pycache__/getpass.cpython-*.py[co]
937 %{py_libdir}/__pycache__/gettext.cpython-*.py[co]
938 %{py_libdir}/__pycache__/glob.cpython-*.py[co]
939 %{py_libdir}/__pycache__/gzip.cpython-*.py[co]
940 %{py_libdir}/__pycache__/hashlib.cpython-*.py[co]
941 %{py_libdir}/__pycache__/hmac.cpython-*.py[co]
942 %{py_libdir}/__pycache__/imaplib.cpython-*.py[co]
943 %{py_libdir}/__pycache__/imghdr.cpython-*.py[co]
944 %{py_libdir}/__pycache__/imp.cpython-*.py[co]
945 %{py_libdir}/__pycache__/inspect.cpython-*.py[co]
946 %{py_libdir}/__pycache__/ipaddress.cpython-*.py[co]
947 %{py_libdir}/__pycache__/lzma.cpython-*.py[co]
948 %{py_libdir}/__pycache__/macpath.cpython-*.py[co]
949 %{py_libdir}/__pycache__/macurl2path.cpython-*.py[co]
950 %{py_libdir}/__pycache__/mailbox.cpython-*.py[co]
951 %{py_libdir}/__pycache__/mailcap.cpython-*.py[co]
952 %{py_libdir}/__pycache__/mimetypes.cpython-*.py[co]
953 %{py_libdir}/__pycache__/modulefinder.cpython-*.py[co]
954 %{py_libdir}/__pycache__/netrc.cpython-*.py[co]
955 %{py_libdir}/__pycache__/nntplib.cpython-*.py[co]
956 %{py_libdir}/__pycache__/ntpath.cpython-*.py[co]
957 %{py_libdir}/__pycache__/nturl2path.cpython-*.py[co]
958 %{py_libdir}/__pycache__/numbers.cpython-*.py[co]
959 %{py_libdir}/__pycache__/opcode.cpython-*.py[co]
960 %{py_libdir}/__pycache__/operator.cpython-*.py[co]
961 %{py_libdir}/__pycache__/optparse.cpython-*.py[co]
962 %{py_libdir}/__pycache__/pathlib.cpython-*.py[co]
963 %{py_libdir}/__pycache__/pickle.cpython-*.py[co]
964 %{py_libdir}/__pycache__/pickletools.cpython-*.py[co]
965 %{py_libdir}/__pycache__/pipes.cpython-*.py[co]
966 %{py_libdir}/__pycache__/pkgutil.cpython-*.py[co]
967 %{py_libdir}/__pycache__/platform.cpython-*.py[co]
968 %{py_libdir}/__pycache__/plistlib.cpython-*.py[co]
969 %{py_libdir}/__pycache__/poplib.cpython-*.py[co]
970 %{py_libdir}/__pycache__/pprint.cpython-*.py[co]
971 %{py_libdir}/__pycache__/pty.cpython-*.py[co]
972 %{py_libdir}/__pycache__/py_compile.cpython-*.py[co]
973 %{py_libdir}/__pycache__/pyclbr.cpython-*.py[co]
974 %{py_libdir}/__pycache__/queue.cpython-*.py[co]
975 %{py_libdir}/__pycache__/quopri.cpython-*.py[co]
976 %{py_libdir}/__pycache__/random.cpython-*.py[co]
977 %{py_libdir}/__pycache__/rlcompleter.cpython-*.py[co]
978 %{py_libdir}/__pycache__/runpy.cpython-*.py[co]
979 %{py_libdir}/__pycache__/sched.cpython-*.py[co]
980 %{py_libdir}/__pycache__/selectors.cpython-*.py[co]
981 %{py_libdir}/__pycache__/shelve.cpython-*.py[co]
982 %{py_libdir}/__pycache__/shlex.cpython-*.py[co]
983 %{py_libdir}/__pycache__/shutil.cpython-*.py[co]
984 %{py_libdir}/__pycache__/signal.cpython-*.py[co]
985 %{py_libdir}/__pycache__/smtpd.cpython-*.py[co]
986 %{py_libdir}/__pycache__/smtplib.cpython-*.py[co]
987 %{py_libdir}/__pycache__/sndhdr.cpython-*.py[co]
988 %{py_libdir}/__pycache__/socket.cpython-*.py[co]
989 %{py_libdir}/__pycache__/socketserver.cpython-*.py[co]
990 %{py_libdir}/__pycache__/ssl.cpython-*.py[co]
991 %{py_libdir}/__pycache__/statistics.cpython-*.py[co]
992 %{py_libdir}/__pycache__/string.cpython-*.py[co]
993 %{py_libdir}/__pycache__/stringprep.cpython-*.py[co]
994 %{py_libdir}/__pycache__/struct.cpython-*.py[co]
995 %{py_libdir}/__pycache__/subprocess.cpython-*.py[co]
996 %{py_libdir}/__pycache__/sunau.cpython-*.py[co]
997 %{py_libdir}/__pycache__/symbol.cpython-*.py[co]
998 %{py_libdir}/__pycache__/symtable.cpython-*.py[co]
999 %{py_libdir}/__pycache__/tabnanny.cpython-*.py[co]
1000 %{py_libdir}/__pycache__/tarfile.cpython-*.py[co]
1001 %{py_libdir}/__pycache__/telnetlib.cpython-*.py[co]
1002 %{py_libdir}/__pycache__/tempfile.cpython-*.py[co]
1003 %{py_libdir}/__pycache__/textwrap.cpython-*.py[co]
1004 %{py_libdir}/__pycache__/this.cpython-*.py[co]
1005 %{py_libdir}/__pycache__/threading.cpython-*.py[co]
1006 %{py_libdir}/__pycache__/trace.cpython-*.py[co]
1007 %{py_libdir}/__pycache__/tracemalloc.cpython-*.py[co]
1008 %{py_libdir}/__pycache__/tty.cpython-*.py[co]
1009 %{py_libdir}/__pycache__/turtle.cpython-*.py[co]
1010 %{py_libdir}/__pycache__/typing.cpython-*.py[co]
1011 %{py_libdir}/__pycache__/uu.cpython-*.py[co]
1012 %{py_libdir}/__pycache__/uuid.cpython-*.py[co]
1013 %{py_libdir}/__pycache__/warnings.cpython-*.py[co]
1014 %{py_libdir}/__pycache__/wave.cpython-*.py[co]
1015 %{py_libdir}/__pycache__/webbrowser.cpython-*.py[co]
1016 %{py_libdir}/__pycache__/xdrlib.cpython-*.py[co]
1017 %{py_libdir}/__pycache__/zipapp.cpython-*.py[co]
1018 %{py_libdir}/__pycache__/zipfile.cpython-*.py[co]
1019
1020 #
1021 # list .so modules to be sure that all of them are built
1022 #
1023
1024 %attr(755,root,root) %{py_dyndir}/_bisect.cpython-*.so
1025 %attr(755,root,root) %{py_dyndir}/_bz2.cpython-*.so
1026 %attr(755,root,root) %{py_dyndir}/_codecs_cn.cpython-*.so
1027 %attr(755,root,root) %{py_dyndir}/_codecs_hk.cpython-*.so
1028 %attr(755,root,root) %{py_dyndir}/_codecs_iso2022.cpython-*.so
1029 %attr(755,root,root) %{py_dyndir}/_codecs_jp.cpython-*.so
1030 %attr(755,root,root) %{py_dyndir}/_codecs_kr.cpython-*.so
1031 %attr(755,root,root) %{py_dyndir}/_codecs_tw.cpython-*.so
1032 %attr(755,root,root) %{py_dyndir}/_crypt.cpython-*.so
1033 %attr(755,root,root) %{py_dyndir}/_csv.cpython-*.so
1034 %attr(755,root,root) %{py_dyndir}/_ctypes*.cpython-*.so
1035 %attr(755,root,root) %{py_dyndir}/_curses_panel.cpython-*.so
1036 %attr(755,root,root) %{py_dyndir}/_curses.cpython-*.so
1037 %attr(755,root,root) %{py_dyndir}/_datetime.cpython-*.so
1038 %ifnarch sparc64
1039 %attr(755,root,root) %{py_dyndir}/_dbm.cpython-*.so
1040 %endif
1041 %attr(755,root,root) %{py_dyndir}/_decimal.cpython-*.so
1042 %attr(755,root,root) %{py_dyndir}/_elementtree.cpython-*.so
1043 %attr(755,root,root) %{py_dyndir}/_gdbm.cpython-*.so
1044 %attr(755,root,root) %{py_dyndir}/_hashlib.cpython-*.so
1045 %attr(755,root,root) %{py_dyndir}/_heapq.cpython-*.so
1046 %attr(755,root,root) %{py_dyndir}/_json.cpython-*.so
1047 %attr(755,root,root) %{py_dyndir}/_lsprof.cpython-*.so
1048 %attr(755,root,root) %{py_dyndir}/_lzma.cpython-*.so
1049 %attr(755,root,root) %{py_dyndir}/_md5.cpython-*.so
1050 %attr(755,root,root) %{py_dyndir}/_multibytecodec.cpython-*.so
1051 %attr(755,root,root) %{py_dyndir}/_multiprocessing.cpython-*.so
1052 %attr(755,root,root) %{py_dyndir}/_opcode.cpython-*.so
1053 %attr(755,root,root) %{py_dyndir}/_pickle.cpython-*.so
1054 %attr(755,root,root) %{py_dyndir}/_posixsubprocess.cpython-*.so
1055 %attr(755,root,root) %{py_dyndir}/_random.cpython-*.so
1056 %attr(755,root,root) %{py_dyndir}/_sha1.cpython-*.so
1057 %attr(755,root,root) %{py_dyndir}/_socket.cpython-*.so
1058 %attr(755,root,root) %{py_dyndir}/_ssl.cpython-*.so
1059 %attr(755,root,root) %{py_dyndir}/_testbuffer.cpython-*.so
1060 %attr(755,root,root) %{py_dyndir}/_testcapi.cpython-*.so
1061 %attr(755,root,root) %{py_dyndir}/_testimportmultiple.cpython-*.so
1062 %attr(755,root,root) %{py_dyndir}/_testmultiphase.cpython-*.so
1063
1064 # for openssl < 0.9.8 package sha256 and sha512 modules
1065 %if "%{pld_release}" != "ac"
1066 %attr(755,root,root) %{py_dyndir}/_sha256.cpython-*.so
1067 %attr(755,root,root) %{py_dyndir}/_sha512.cpython-*.so
1068 %endif
1069
1070 %attr(755,root,root) %{py_dyndir}/array.cpython-*.so
1071 %attr(755,root,root) %{py_dyndir}/audioop.cpython-*.so
1072 %attr(755,root,root) %{py_dyndir}/binascii.cpython-*.so
1073 %attr(755,root,root) %{py_dyndir}/cmath.cpython-*.so
1074 %attr(755,root,root) %{py_dyndir}/fcntl.cpython-*.so
1075 %attr(755,root,root) %{py_dyndir}/grp.cpython-*.so
1076 %attr(755,root,root) %{py_dyndir}/math.cpython-*.so
1077 %attr(755,root,root) %{py_dyndir}/mmap.cpython-*.so
1078 %attr(755,root,root) %{py_dyndir}/nis.cpython-*.so
1079 %attr(755,root,root) %{py_dyndir}/ossaudiodev.cpython-*.so
1080 %attr(755,root,root) %{py_dyndir}/parser.cpython-*.so
1081 %attr(755,root,root) %{py_dyndir}/pyexpat.cpython-*.so
1082 %attr(755,root,root) %{py_dyndir}/readline.cpython-*.so
1083 %attr(755,root,root) %{py_dyndir}/resource.cpython-*.so
1084 %attr(755,root,root) %{py_dyndir}/select.cpython-*.so
1085 %attr(755,root,root) %{py_dyndir}/syslog.cpython-*.so
1086 %attr(755,root,root) %{py_dyndir}/termios.cpython-*.so
1087 %attr(755,root,root) %{py_dyndir}/spwd.cpython-*.so
1088 %attr(755,root,root) %{py_dyndir}/unicodedata.cpython-*.so
1089 %attr(755,root,root) %{py_dyndir}/zlib.cpython-*.so
1090
1091 %dir %{py_libdir}/plat-*
1092 %{py_libdir}/plat-*/__pycache__
1093 %{py_libdir}/plat-*/*.py
1094
1095 %dir %{py_libdir}/asyncio
1096 %{py_libdir}/asyncio/__pycache__
1097 %{py_libdir}/asyncio/*.py
1098
1099 %{py_libdir}/concurrent
1100
1101 %dir %{py_libdir}/ctypes
1102 %dir %{py_libdir}/ctypes/macholib
1103 %{py_libdir}/ctypes/__pycache__
1104 %{py_libdir}/ctypes/macholib/__pycache__
1105
1106 %{py_libdir}/ctypes/*.py
1107 %{py_libdir}/ctypes/macholib/*.py
1108 %doc %{py_libdir}/ctypes/macholib/README.ctypes
1109
1110 %dir %{py_libdir}/curses
1111 %{py_libdir}/curses/__pycache__
1112 %{py_libdir}/curses/*.py
1113
1114 %dir %{py_libdir}/dbm
1115 %{py_libdir}/dbm/__pycache__
1116 %{py_libdir}/dbm/*.py
1117
1118 %dir %{py_libdir}/distutils
1119 %dir %{py_libdir}/distutils/command
1120 %doc %{py_libdir}/distutils/README
1121 %{py_libdir}/distutils/__pycache__
1122 %{py_libdir}/distutils/command/__pycache__
1123 %{py_libdir}/distutils/*.py
1124 %{py_libdir}/distutils/command/*.py
1125 %{py_libdir}/distutils/command/command_template
1126
1127 %dir %{py_libdir}/email
1128 %dir %{py_libdir}/email/mime
1129 %{py_libdir}/email/__pycache__
1130 %{py_libdir}/email/mime/__pycache__
1131 %{py_libdir}/email/architecture.rst
1132 %{py_libdir}/email/*.py
1133 %{py_libdir}/email/mime/*.py
1134
1135 %dir %{py_libdir}/ensurepip
1136 %{py_libdir}/ensurepip/__pycache__
1137 %{py_libdir}/ensurepip/*.py
1138 %{py_libdir}/ensurepip/_bundled
1139
1140 %dir %{py_libdir}/html
1141 %{py_libdir}/html/*.py
1142 %{py_libdir}/html/__pycache__
1143
1144 %dir %{py_libdir}/http
1145 %{py_libdir}/http/__pycache__
1146 %{py_libdir}/http/*.py
1147
1148 %dir %{py_libdir}/idlelib
1149
1150 %dir %{py_libdir}/importlib
1151 %{py_libdir}/importlib/__pycache__
1152 %{py_libdir}/importlib/*.py
1153
1154 %dir %{py_libdir}/json
1155 %{py_libdir}/json/__pycache__
1156 %{py_libdir}/json/*.py
1157
1158 %dir %{py_libdir}/logging
1159 %{py_libdir}/logging/__pycache__
1160 %{py_libdir}/logging/*.py
1161
1162 %dir %{py_libdir}/multiprocessing
1163 %{py_libdir}/multiprocessing/__pycache__
1164 %{py_libdir}/multiprocessing/*.py
1165 %dir %{py_libdir}/multiprocessing/dummy
1166 %{py_libdir}/multiprocessing/dummy/__pycache__
1167 %{py_libdir}/multiprocessing/dummy/*.py
1168
1169 %{py_libdir}/turtledemo
1170
1171 %dir %{py_libdir}/unittest
1172 %{py_libdir}/unittest/__pycache__
1173 %{py_libdir}/unittest/*.py
1174
1175 %dir %{py_libdir}/urllib
1176 %{py_libdir}/urllib/__pycache__
1177 %{py_libdir}/urllib/*.py
1178
1179 %dir %{py_libdir}/venv
1180 %{py_libdir}/venv/__pycache__
1181 %{py_libdir}/venv/*.py
1182 %dir %{py_libdir}/venv/scripts
1183 %dir %{py_libdir}/venv/scripts/posix
1184 %{py_libdir}/venv/scripts/posix/activate
1185 %{py_libdir}/venv/scripts/posix/activate.csh
1186 %{py_libdir}/venv/scripts/posix/activate.fish
1187
1188 %dir %{py_libdir}/wsgiref
1189 %{py_libdir}/wsgiref/__pycache__
1190 %{py_libdir}/wsgiref/*.py
1191
1192 %dir %{py_libdir}/xml
1193 %dir %{py_libdir}/xml/dom
1194 %dir %{py_libdir}/xml/etree
1195 %dir %{py_libdir}/xml/parsers
1196 %dir %{py_libdir}/xml/sax
1197 %{py_libdir}/xml/__pycache__
1198 %{py_libdir}/xml/dom/__pycache__
1199 %{py_libdir}/xml/etree/__pycache__
1200 %{py_libdir}/xml/parsers/__pycache__
1201 %{py_libdir}/xml/sax/__pycache__
1202 %{py_libdir}/xml/*.py
1203 %{py_libdir}/xml/dom/*.py
1204 %{py_libdir}/xml/etree/*.py
1205 %{py_libdir}/xml/parsers/*.py
1206 %{py_libdir}/xml/sax/*.py
1207
1208 %dir %{py_libdir}/xmlrpc
1209 %{py_libdir}/xmlrpc/__pycache__
1210 %{py_libdir}/xmlrpc/*.py
1211
1212 %attr(755,root,root) %{py_dyndir}/_sqlite3.cpython-*.so
1213 %dir %{py_libdir}/sqlite3
1214 %{py_libdir}/sqlite3/__pycache__
1215 %{py_libdir}/sqlite3/*.py
1216
1217 %files -n pydoc3
1218 %defattr(644,root,root,755)
1219 %attr(755,root,root) %{_bindir}/pydoc3
1220 %attr(755,root,root) %{_bindir}/pydoc3.5
1221 %{py_libdir}/pydoc.py
1222 %{py_libdir}/__pycache__/pydoc.cpython-*.py[co]
1223 %dir %{py_libdir}/pydoc_data
1224 %{py_libdir}/pydoc_data/__pycache__
1225 %{py_libdir}/pydoc_data/*.py
1226 %{py_libdir}/pydoc_data/*.css
1227
1228 %files -n idle3
1229 %defattr(644,root,root,755)
1230 %attr(755,root,root) %{_bindir}/idle3
1231 %attr(755,root,root) %{_bindir}/idle3.5
1232 %dir %{py_libdir}/idlelib/Icons
1233 %{py_libdir}/idlelib/__pycache__
1234 %{py_libdir}/idlelib/*.py
1235 %doc %{py_libdir}/idlelib/*.txt
1236 %doc %{py_libdir}/idlelib/ChangeLog
1237 %{py_libdir}/idlelib/Icons/*
1238 %{py_libdir}/idlelib/*.def
1239
1240 %files devel
1241 %defattr(644,root,root,755)
1242 %doc Misc/{ACKS,NEWS,README,README.valgrind,valgrind-python.supp}
1243 %attr(755,root,root) %{_bindir}/python%{py_ver}-config
1244 %attr(755,root,root) %{_bindir}/python%{py_abi}-config
1245 %attr(755,root,root) %{_bindir}/python3-config
1246 %attr(755,root,root) %{_libdir}/libpython%{py_abi}.so
1247 %attr(755,root,root) %{_libdir}/libpython3.so
1248 %{py_incdir}/*.h
1249 %exclude %{py_incdir}/pyconfig.h
1250 %attr(755,root,root) %{py_libdir}/config-%{py_abi}/makesetup
1251 %attr(755,root,root) %{py_libdir}/config-%{py_abi}/install-sh
1252 %{py_libdir}/config-%{py_abi}/config.c
1253 %{py_libdir}/config-%{py_abi}/config.c.in
1254 %{py_libdir}/config-%{py_abi}/python.o
1255 %{py_libdir}/config-%{py_abi}/python-config.py
1256 %dir %{py_libdir}/config-%{py_abi}/__pycache__
1257 %{py_libdir}/config-%{py_abi}/__pycache__/python-config.*
1258 %{_pkgconfigdir}/python-%{py_ver}.pc
1259 %{_pkgconfigdir}/python-%{py_abi}.pc
1260 %{_pkgconfigdir}/python3.pc
1261
1262 %files devel-tools
1263 %defattr(644,root,root,755)
1264 /etc/shrc.d/python*-devel*
1265 %attr(755,root,root) %{_bindir}/pygettext%{py_ver}
1266 %attr(755,root,root) %{_bindir}/pyreindent%{py_ver}
1267 %{py_libdir}/pdb.py
1268 %{py_libdir}/profile.py
1269 %{py_libdir}/pstats.py
1270 %{py_libdir}/timeit.py
1271 %{py_libdir}/__pycache__/pdb.cpython-*.py[co]
1272 %{py_libdir}/__pycache__/profile.cpython-*.py[co]
1273 %{py_libdir}/__pycache__/pstats.cpython-*.py[co]
1274 %{py_libdir}/__pycache__/timeit.cpython-*.py[co]
1275
1276 %files 2to3
1277 %defattr(644,root,root,755)
1278 %attr(755,root,root) %{_bindir}/2to3-%{py_ver}
1279 %dir %{py_libdir}/lib2to3
1280 %{py_libdir}/lib2to3/__pycache__
1281 %{py_libdir}/lib2to3/*.txt
1282 %{py_libdir}/lib2to3/*.pickle
1283 %{py_libdir}/lib2to3/*.py
1284 %dir %{py_libdir}/lib2to3/fixes
1285 %{py_libdir}/lib2to3/fixes/__pycache__
1286 %{py_libdir}/lib2to3/fixes/*.py
1287 %dir %{py_libdir}/lib2to3/pgen2
1288 %{py_libdir}/lib2to3/pgen2/__pycache__
1289 %{py_libdir}/lib2to3/pgen2/*.py
1290
1291 %files static
1292 %defattr(644,root,root,755)
1293 %{_libdir}/libpython%{py_abi}.a
1294
1295 %files examples
1296 %defattr(644,root,root,755)
1297 %{_examplesdir}/%{name}-%{version}
1298
1299 %files test
1300 %defattr(644,root,root,755)
1301 %{py_libdir}/idlelib/idle_test
1302 %{py_libdir}/test
1303 %{py_libdir}/ctypes/test
1304 %{py_libdir}/distutils/tests
1305 %{py_libdir}/lib2to3/tests
1306 %{py_libdir}/sqlite3/test
1307 %{py_libdir}/tkinter/test
1308 %{py_libdir}/unittest/test
1309
1310 %if %{with info}
1311 %files doc-info
1312 %defattr(644,root,root,755)
1313 %{_infodir}/*.info*
1314 %endif
1315
1316 %if %{with tkinter}
1317 %files tkinter
1318 %defattr(644,root,root,755)
1319 %dir %{py_libdir}/tkinter
1320 %{py_libdir}/tkinter/__pycache__
1321 %{py_libdir}/tkinter/*.py
1322 %attr(755,root,root) %{py_dyndir}/_tkinter.cpython-*.so
1323 %endif
This page took 0.132615 seconds and 3 git commands to generate.