Re: [gentoo-dev] gnome2-utils.eclass: updated DISABLE_DEPRECATED fix

2012-10-27 Thread Alexandre Rostovtsev
The previously sent patch contained two problems. First, it assumed that the config-header to be touched is necessarily called config.h.in. This is not the case; for example, goffice uses goffice-config.h.in. Second, and more importantly, it touched aclocal.m4 and config.h.in even if configure.ac w

[gentoo-dev] gnome2-utils.eclass: updated DISABLE_DEPRECATED fix

2012-10-27 Thread Alexandre Rostovtsev
The recently added gnome2_disable_deprecation_warning() unfortunately triggered maintainer mode and undesirable autoreconf for some packages like file-roller, leading to build failure (see bug #439602); the problem had been caused by configure.ac having a higher mtime than aclocal.m4 and config.h.i

Re: [gentoo-dev] [PATCH python-r1 4/8] Introduce functions to replicate Python scripts.

2012-10-27 Thread Reinis Danne
On Sat, Oct 27, 2012 at 04:08:31PM +0200, Michał Górny wrote: > On Sat, 27 Oct 2012 16:27:27 +0300 > Reinis Danne wrote: > > > On Sat, Oct 27, 2012 at 01:02:47PM +0200, Michał Górny wrote: > > > This can be used to create copies of Python scripts for various > > > implementation when build system

[gentoo-dev] [PATCH python-r1] Depend on python-exec in python-r1.

2012-10-27 Thread Michał Górny
Due to python_replicate_scripts(), now python-r1 ebuilds can rely on python-exec as well. It shouldn't hurt much, so let's just put it in the PYTHON_DEPS. --- gx86/eclass/distutils-r1.eclass | 3 +-- gx86/eclass/python-r1.eclass| 14 +- 2 files changed, 10 insertions(+), 7 deletio

Re: [gentoo-dev] [PATCH python-r1 4/8] Introduce functions to replicate Python scripts.

2012-10-27 Thread Michał Górny
On Sat, 27 Oct 2012 16:27:27 +0300 Reinis Danne wrote: > On Sat, Oct 27, 2012 at 01:02:47PM +0200, Michał Górny wrote: > > This can be used to create copies of Python scripts for various > > implementation when build system doesn't do that. > > --- > > gx86/eclass/python-r1.eclass | 126 > > +++

Re: [gentoo-dev] [PATCH python-r1 4/8] Introduce functions to replicate Python scripts.

2012-10-27 Thread Reinis Danne
On Sat, Oct 27, 2012 at 01:02:47PM +0200, Michał Górny wrote: > This can be used to create copies of Python scripts for various > implementation when build system doesn't do that. > --- > gx86/eclass/python-r1.eclass | 126 > +++ > 1 file changed, 126 inser

[gentoo-dev] [PATCH python-r1 6/8] Reuse _python_ln_rel in distutils-r1.

2012-10-27 Thread Michał Górny
--- gx86/eclass/distutils-r1.eclass | 18 ++ 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/gx86/eclass/distutils-r1.eclass b/gx86/eclass/distutils-r1.eclass index ce1b6f4..e83a85a 100644 --- a/gx86/eclass/distutils-r1.eclass +++ b/gx86/eclass/distutils-r1.eclass @@

[gentoo-dev] [PATCH python-r1 5/8] Convert x11-misc/redshift to python-r1 (example).

2012-10-27 Thread Michał Górny
This serves as an example how the new functions can be used. --- gx86/x11-misc/redshift/redshift-1.7-r1.ebuild | 33 --- 1 file changed, 14 insertions(+), 19 deletions(-) diff --git a/gx86/x11-misc/redshift/redshift-1.7-r1.ebuild b/gx86/x11-misc/redshift/redshift-1.7-r1.e

[gentoo-dev] [PATCH python-r1 4/8] Introduce functions to replicate Python scripts.

2012-10-27 Thread Michał Górny
This can be used to create copies of Python scripts for various implementation when build system doesn't do that. --- gx86/eclass/python-r1.eclass | 126 +++ 1 file changed, 126 insertions(+) diff --git a/gx86/eclass/python-r1.eclass b/gx86/eclass/python-r1

[gentoo-dev] [PATCH python-r1 8/8] Use find instead of hard-coded path list when looking for scripts.

2012-10-27 Thread Michał Górny
--- gx86/eclass/distutils-r1.eclass | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/gx86/eclass/distutils-r1.eclass b/gx86/eclass/distutils-r1.eclass index bab7dbc..e0df9f6 100644 --- a/gx86/eclass/distutils-r1.eclass +++ b/gx86/eclass/distutils-r1.eclass @@ -256,

[gentoo-dev] [PATCH python-r1 3/8] Add python_export_best() to obtain best impl info.

2012-10-27 Thread Michał Górny
--- gx86/eclass/python-r1.eclass | 25 + 1 file changed, 25 insertions(+) diff --git a/gx86/eclass/python-r1.eclass b/gx86/eclass/python-r1.eclass index b059a3b..d7cdfa8 100644 --- a/gx86/eclass/python-r1.eclass +++ b/gx86/eclass/python-r1.eclass @@ -387,3 +387,28 @@ pytho

[gentoo-dev] [PATCH python-r1 7/8] Use python_export_best() in distutils-r1.

2012-10-27 Thread Michał Górny
--- gx86/eclass/distutils-r1.eclass | 9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/gx86/eclass/distutils-r1.eclass b/gx86/eclass/distutils-r1.eclass index e83a85a..bab7dbc 100644 --- a/gx86/eclass/distutils-r1.eclass +++ b/gx86/eclass/distutils-r1.eclass @@ -253,13 +2

[gentoo-dev] [PATCH python-r1 1/8] python_export: support obtaining site-packages directory.

2012-10-27 Thread Michał Górny
--- gx86/eclass/python-r1.eclass | 34 -- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/gx86/eclass/python-r1.eclass b/gx86/eclass/python-r1.eclass index 9ca0791..45ed0cb 100644 --- a/gx86/eclass/python-r1.eclass +++ b/gx86/eclass/python-r1.eclass @

[gentoo-dev] [PATCH python-r1 2/8] Add getter-style wrappers for python_export().

2012-10-27 Thread Michał Górny
--- gx86/eclass/python-r1.eclass | 46 1 file changed, 46 insertions(+) diff --git a/gx86/eclass/python-r1.eclass b/gx86/eclass/python-r1.eclass index 45ed0cb..b059a3b 100644 --- a/gx86/eclass/python-r1.eclass +++ b/gx86/eclass/python-r1.eclass @@ -283