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
|
Source: pypy
Section: python
Priority: optional
Maintainer: Stefano Rivera <stefanor@debian.org>
Build-Depends:
debhelper (>= 9.20141010~),
dh-exec,
dpkg-dev (>= 1.17.14~),
libbz2-dev,
libexpat1-dev,
libffi-dev,
libgdbm-dev,
libncurses-dev,
libsqlite3-dev,
libssl-dev,
netbase,
pkg-config,
procps,
pypy [any-amd64 any-i386 armhf ppc64 ppc64el s390x] <!stage1>,
python (>= 2.6.6-11~),
python-docutils,
python-pycparser,
python-sphinx (>= 1.0.7+dfsg),
python2.7-dev,
tcl-dev,
tk-dev,
valgrind [amd64 arm64 armhf i386 mips mips64el mipsel powerpc ppc64 ppc64el s390x],
zlib1g-dev
Build-Depends-Indep: graphviz
Standards-Version: 4.4.1
Homepage: http://pypy.org/
Vcs-Git: https://salsa.debian.org/debian/pypy.git
Vcs-Browser: https://salsa.debian.org/debian/pypy
Rules-Requires-Root: no
Package: pypy
Architecture: any
Depends: pypy-lib (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
Breaks:
pypy-backports.functools-lru-cache (<< 1.5-3~),
pypy-dev (<< ${source:Version})
Provides: ${pypy-abi}
Suggests: pypy-doc, pypy-tk (= ${binary:Version})
Description: fast alternative implementation of Python - PyPy interpreter
PyPy is a fast, compliant alternative implementation of the Python language
(2.7). It has several advantages and distinct features:
* Speed: thanks to its Just-in-Time compiler (on x86), Python programs often
run faster on PyPy.
* Memory usage: large, memory-hungry Python programs might end up taking less
space than they do in CPython.
* Compatibility: PyPy is highly compatible with existing Python code.
It supports ctypes and can run popular Python libraries like twisted and
django.
* Stackless: PyPy supports stackless mode on most platforms, providing
micro-threads for massive concurrency.
.
This package contains the PyPy interpreter.
Package: pypy-tk
Architecture: any
Depends: pypy (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
Replaces: pypy-lib (<< 2.2)
Description: Tkinter module for PyPy (an alternative Python interpreter)
A module for writing portable GUI applications with PyPy using Tk.
Also known as Tkinter.
.
PyPy is a fast, compliant alternative implementation of the Python language
(2.7).
Package: pypy-lib
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}
Provides: ${cffi:Provides}
Description: standard library for PyPy (an alternative Python interpreter)
The PyPy standard library. This is a combination of modules, copied directly
from cpython, modified cpython modules, and modules entirely re-implemented
(usually in pure Python, where they are C extensions in cpython).
.
PyPy is a fast, compliant alternative implementation of the Python language
(2.7).
Package: pypy-lib-testsuite
Architecture: all
Depends: pypy, pypy-lib (>= ${source:Version}), ${misc:Depends}
Replaces: pypy-lib (<< 2.2)
Description: standard library test suite for PyPy (an alternative Python interpreter)
The complete test suite for the PyPy standard library.
.
PyPy is a fast, compliant alternative implementation of the Python language
(2.7).
Package: pypy-doc
Section: doc
Architecture: all
Depends: ${misc:Depends}, ${sphinxdoc:Depends}
Suggests: python-doc
Description: developer Documentation for PyPy (an alternative Python interpreter)
The Developer documentation for PyPy. This mostly covers the internals of
PyPy, and development of PyPy itself.
.
PyPy is a fast, compliant alternative implementation of the Python language
(2.7).
Package: pypy-dev
Architecture: all
Depends: pypy (>= ${source:Version}), ${misc:Depends}
Provides: libpypy-dev
Description: header files for PyPy (an alternative Python interpreter)
Header files for compiling cpython C extension modules for use with PyPy.
Note that pure Python modules will probably perform better.
.
PyPy supports a subset of cpython's C API through its CPyExt subsystem.
.
Also included is PyPy.h, for embedding the PyPy interpreter.
.
PyPy is a fast, compliant alternative implementation of the Python language
(2.7).
|