[pypy-commit] pypy improve-docs-fixes: move lzma instructions to dedicated Python 3.3 section

numerodix noreply at buildbot.pypy.org
Sun Aug 3 18:14:43 CEST 2014


Author: Martin Matusiak <numerodix at gmail.com>
Branch: improve-docs-fixes
Changeset: r72664:0c0a5730d7c7
Date: 2014-08-03 14:00 +0200
http://bitbucket.org/pypy/pypy/changeset/0c0a5730d7c7/

Log:	move lzma instructions to dedicated Python 3.3 section

diff --git a/pypy/doc/build.rst b/pypy/doc/build.rst
--- a/pypy/doc/build.rst
+++ b/pypy/doc/build.rst
@@ -61,9 +61,6 @@
 bz2
     libbz2
 
-lzma
-    liblzma
-
 sqlite3
     libsqlite3
 
@@ -82,12 +79,12 @@
 On Debian, this is the command to install all build-time dependencies::
 
     apt-get install gcc make libffi-dev pkg-config libz-dev libbz2-dev \
-    liblzma-dev libsqlite3-dev libncurses-dev libexpat1-dev libssl-dev
+    libsqlite3-dev libncurses-dev libexpat1-dev libssl-dev
 
 On Fedora::
 
     yum install gcc make libffi-devel pkgconfig zlib-devel bzip2-devel \
-    xz-devel lib-sqlite3-devel ncurses-devel expat-devel openssl-devel
+    lib-sqlite3-devel ncurses-devel expat-devel openssl-devel
 
 On Mac OS X, most of these build-time dependencies are installed alongside
 the Developer Tools. However, note that in order for the installation to
@@ -96,6 +93,26 @@
     xcode-select --install
 
 
+Python 3.3
+~~~~~~~~~~
+
+For versions of PyPy that implement Python 3.3 and later you will
+also need:
+
+lzma
+    liblzma
+
+On Debian. install it using::
+
+    apt-get install liblzma-dev
+
+On Fedora::
+
+    yum install xz-devel
+
+TODO: Mac OS X
+
+
 Run the translation
 -------------------
 


More information about the pypy-commit mailing list