diff -Nru python3-defaults-3.0.1/debian/changelog python3-defaults-3.0.1/debian/changelog --- python3-defaults-3.0.1/debian/changelog 2009-02-16 17:23:58.000000000 -0500 +++ python3-defaults-3.0.1/debian/changelog 2009-03-08 18:31:34.000000000 -0400 @@ -1,3 +1,12 @@ +python3-defaults (3.0.1-0ubuntu3) jaunty; urgency=low + + * Make idle3 run with /usr/bin/python3, not /usr/bin/python. + (LP: #336381) + * Remove Essential: yes from python3-minimal, and reduce the Priority of + python3 and python3-minimal to optional. (LP: #330613) + + -- Anders Kaseorg Sun, 08 Mar 2009 18:30:38 -0400 + python3-defaults (3.0.1-0ubuntu2) jaunty; urgency=low * Depend on the 3.0.1 versions of the packages. diff -Nru python3-defaults-3.0.1/debian/control python3-defaults-3.0.1/debian/control --- python3-defaults-3.0.1/debian/control 2009-02-16 17:26:04.000000000 -0500 +++ python3-defaults-3.0.1/debian/control 2009-03-08 18:29:53.000000000 -0400 @@ -8,7 +8,7 @@ Package: python3 Architecture: all -Priority: important +Priority: optional Depends: python3.0 (>= 3.0.1), python3-minimal (= ${Source-Version}) Suggests: python3-doc (>= ${Source-Version}), python3-tk (>= ${Source-Version}), python3-profiler (>= ${Source-Version}) Description: An interactive high-level object-oriented language (default python3 version) @@ -21,8 +21,7 @@ Package: python3-minimal Architecture: all -Essential: yes -Priority: required +Priority: optional Depends: python3.0-minimal (>= 3.0.1), dpkg (>= 1.13.20) Description: A minimal subset of the Python language (default python3 version) This package contains the interpreter and some essential modules. It's used diff -Nru python3-defaults-3.0.1/debian/control.in python3-defaults-3.0.1/debian/control.in --- python3-defaults-3.0.1/debian/control.in 2009-02-16 17:25:36.000000000 -0500 +++ python3-defaults-3.0.1/debian/control.in 2009-03-08 18:29:48.000000000 -0400 @@ -7,7 +7,7 @@ Package: python3 Architecture: all -Priority: important +Priority: optional Depends: @PVER@ (>= @PREVVER@), python3-minimal (= ${Source-Version}) Suggests: python3-doc (>= ${Source-Version}), python3-tk (>= ${Source-Version}), python3-profiler (>= ${Source-Version}) Description: An interactive high-level object-oriented language (default python3 version) @@ -20,8 +20,7 @@ Package: python3-minimal Architecture: all -Essential: yes -Priority: required +Priority: optional Depends: @PVER@-minimal (>= @PREVVER@), dpkg (>= 1.13.20) Description: A minimal subset of the Python language (default python3 version) This package contains the interpreter and some essential modules. It's used diff -Nru python3-defaults-3.0.1/debian/idle.sh python3-defaults-3.0.1/debian/idle.sh --- python3-defaults-3.0.1/debian/idle.sh 2006-08-05 13:39:23.000000000 -0400 +++ python3-defaults-3.0.1/debian/idle.sh 2009-03-08 18:06:21.000000000 -0400 @@ -1,4 +1,4 @@ -#! /usr/bin/python +#! /usr/bin/python3 from idlelib.PyShell import main main()