From 62847484ffaa1fbb9596dd477653e127e1787f15 Mon Sep 17 00:00:00 2001 From: Emile Anclin Date: Tue, 16 Nov 2010 11:40:25 +0100 Subject: py3k: add a README.Python3 --- README.Python3 | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 README.Python3 (limited to 'README.Python3') diff --git a/README.Python3 b/README.Python3 new file mode 100644 index 0000000..3c94863 --- /dev/null +++ b/README.Python3 @@ -0,0 +1,32 @@ +Python3 +======= + +Source +------ + +Python3 portage is made by running the 2to3 script on all modules:: + + find . ! -path "*/test/*py" -name "*py" -exec 2to3-3.1 -wn {} \; + + +Dev +--- + +If you want to run the tests, simply remove the "! -path ..." option, hence +also refactoring the test files, including all data files. +Note that when running 2to3 on some test/input/ files, it will crash since +this folder contains corrupted files. Hence, we can not run directly +*2to3* on the test folder:: + + $ 2to3 test/ + +But it will work nice with *find*. + +Debian +------ + +For the Debian packaging, you can use the debian.py3k/ content against +the debian/ folder:: + + cp debian.py3k/* debian/ + -- cgit v1.2.1