diff -u python3.3-3.3.2/debian/changelog python3.3-3.3.2/debian/changelog --- python3.3-3.3.2/debian/changelog +++ python3.3-3.3.2/debian/changelog @@ -1,3 +1,10 @@ +python3.3 (3.3.2-4+rpi1) jessie-staging; urgency=low + + * Use gcc-4.8 explicitly rather than a >= dependency on gcc since the 4.8 + default hasn't migrated to testing yet. + + -- Peter Michael Green Tue, 13 Aug 2013 03:41:16 +0000 + python3.3 (3.3.2-4) unstable; urgency=low * Update to 20130612 from the 3.3 branch. diff -u python3.3-3.3.2/debian/rules python3.3-3.3.2/debian/rules --- python3.3-3.3.2/debian/rules +++ python3.3-3.3.2/debian/rules @@ -110,8 +110,8 @@ ma_filter = grep -v '^Multi-Arch:' endif -CC=$(DEB_HOST_GNU_TYPE)-gcc -CXX=$(DEB_HOST_GNU_TYPE)-g++ +CC=$(DEB_HOST_GNU_TYPE)-gcc-4.8 +CXX=$(DEB_HOST_GNU_TYPE)-g++-4.8 DPKG_CPPFLAGS:= $(shell dpkg-buildflags --get CPPFLAGS) DPKG_CFLAGS := $(shell dpkg-buildflags --get CFLAGS)