Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyfltk/, dev-python/pyfltk/files/

2015-11-08 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 08/11/15 11:43, Jeroen Roovers wrote: > On Sun, 8 Nov 2015 08:50:51 +0100 Michał Górny > wrote: > >> you just removed the last version supporting python2.7. As a >> result, matplotlib and pygene can't be installed at all: >

Re: [gentoo-dev] ChangeLog - Infra Response

2015-11-08 Thread Andreas K. Huettel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Am Donnerstag, 5. November 2015, 12:54:06 schrieb Alexis Ballier: > > if/when there is a need to split git changelogs, autogenerated > changelogs will start from say, Jan. 1st 2016, and previous changes > will now be static. Merging CVS2015 and

[gentoo-dev] [PATCHES] python-utils-r1.eclass: Getter cleanup & ABIFLAGS preparation

2015-11-08 Thread Michał Górny
Hello, everyone. As you probably don't know, Justin lately noticed that we're carrying some ugly hacks in Python 3.2+ where we diverge from upstream and break binary compatibility for the sake of 'aesthetics'. While we're not yet ready to kill them completely (the current work being kept in

[gentoo-dev] [PATCH 7/7] python-utils-r1.eclass: Reuse PYTHON_CONFIG in python_wrapper_setup()

2015-11-08 Thread Michał Górny
--- eclass/python-utils-r1.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 68926ab..33cee1b 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -877,8 +877,8 @@

[gentoo-dev] [PATCH 4/7] python-utils-r1.eclass: Obtain library path from the interpreter

2015-11-08 Thread Michał Górny
Obtain library path as concatenation of LIBDIR and LDLIBRARY config variables (from sysconfig module) rather than hardcoding it in the eclass. This improves maintainability and fixes compatibility with ABIFLAGS-enabled Python 3.3+. --- eclass/python-utils-r1.eclass | 21 +++--

[gentoo-dev] [PATCH 2/7] python-utils-r1.eclass: set PYTHON locally in python_export()

2015-11-08 Thread Michał Górny
Ensure that PYTHON is always set inside python_export() for convenience. If it wasn't requested for explicit export, make it a local variable. --- eclass/python-utils-r1.eclass | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/eclass/python-utils-r1.eclass

[gentoo-dev] [PATCH 1/7] python-utils-r1.eclass: Switch tests to use python3.4

2015-11-08 Thread Michał Górny
Use Python 3.4 during tests since Python 3.3 is now deprecated and is less likely to be installed on user's systems and some tests will require Python installed. --- eclass/tests/python-utils-r1.sh | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git

Re: [gentoo-dev] pre-GLEP review: Maintainership structure

2015-11-08 Thread Michael Orlitzky
On 11/08/2015 10:53 AM, Michał Górny wrote: > > No. This is going to be PITA to parse, and indefinite recursion is just > wrong. Like you suddenly have to traverse the whole crazy structure to > find a particular project. > That's already true if you want the last project in the file =P You're

Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyfltk/, dev-python/pyfltk/files/

2015-11-08 Thread Jeroen Roovers
On Sun, 8 Nov 2015 08:50:51 +0100 Michał Górny wrote: > you just removed the last version supporting python2.7. > As a result, matplotlib and pygene can't be installed at all: pyfltk-1.3.3 works absolutely fine with python2.7. I wonder who removed _that_. jer

[gentoo-dev] [PATCH 3/7] python-utils-r1.eclass: Obtain include directory from the interpreter

2015-11-08 Thread Michał Górny
Obtain the Python include directory using the distutils.sysconfig module of the Python interpreter rather than hardcoding values for it. This makes the code more maintainable, and clears the way for re-enabling ABIFLAGS on new Python versions. --- eclass/python-utils-r1.eclass | 21

[gentoo-dev] [PATCH 6/7] python-utils-r1.eclass: Support getting PYTHON_CONFIG path

2015-11-08 Thread Michał Górny
--- eclass/python-utils-r1.eclass | 47 + eclass/tests/python-utils-r1.sh | 2 ++ 2 files changed, 49 insertions(+) diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index e8de6b9..68926ab 100644 ---

[gentoo-dev] [PATCH 5/7] python-utils-r1.eclass: Obtain PYTHON_SITEDIR from the interpreter

2015-11-08 Thread Michał Górny
Obtain the Python site-packages directory path using the distutils.sysconfig module, rather than hardcoding it. --- eclass/python-utils-r1.eclass | 16 +--- eclass/tests/python-utils-r1.sh | 12 +++- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git

Re: [gentoo-dev] pre-GLEP review: Maintainership structure

2015-11-08 Thread Michał Górny
On Sun, 8 Nov 2015 11:02:09 -0500 Michael Orlitzky wrote: > On 11/08/2015 10:53 AM, Michał Górny wrote: > > > > No. This is going to be PITA to parse, and indefinite recursion is just > > wrong. Like you suddenly have to traverse the whole crazy structure to > > find a

Re: [gentoo-dev] pre-GLEP review: Maintainership structure

2015-11-08 Thread Michael Orlitzky
On 11/08/2015 11:07 AM, Michał Górny wrote: >> >> >> Foo >> f...@gentoo.org >> >> > > I meant finding project by e-mail. You don't have to care about > subprojects at all to do this. Subprojects are a side info. > What exactly gets harder? Finding an email address is same in

[gentoo-dev] Re: [PATCHES] python-utils-r1.eclass: Getter cleanup & ABIFLAGS preparation

2015-11-08 Thread Mike Gilbert
On Sun, Nov 8, 2015 at 4:35 AM, Michał Górny wrote: > Hello, everyone. > > As you probably don't know, Justin lately noticed that we're carrying > some ugly hacks in Python 3.2+ where we diverge from upstream and break > binary compatibility for the sake of 'aesthetics'. While

[gentoo-portage-dev] [PATCH] repos.conf: support sync-hooks-lazy attribute (bug 565172)

2015-11-08 Thread Zac Medico
If sync-hooks-lazy is set to true, do not trigger postsync hooks unless hooks would have executed for a master repository or the repository has changed since the previous sync operation. If the user has not explicitly enabled sync-hooks-lazy in repos.conf, then execute all hooks regardless of

Re: [gentoo-portage-dev] [PATCH] repos.conf: support sync-hooks-lazy attribute (bug 565172)

2015-11-08 Thread Brian Dolbec
On Sun, 8 Nov 2015 15:20:01 -0800 Zac Medico wrote: > If sync-hooks-lazy is set to true, do not trigger postsync hooks > unless hooks would have executed for a master repository or the > repository has changed since the previous sync operation. > > If the user has not

[gentoo-dev] Automated Package Removal and Addition Tracker, for the week ending 2015-11-08 23:59 UTC

2015-11-08 Thread Robin H. Johnson
20151108-22:48 eva 5326e6f media-plugins/gst-plugins-openh26420151108-22:44 eva 99bc0a9 media-plugins/gst-plugins-x26520151108-23:00 eva b7cd02e -- Robin Hugh Johnson Gentoo Linux Developer E-Mail : robb...@gentoo.org GnuPG FP : 11AC

[gentoo-portage-dev] [PATCH] egencache --update-changelogs: Respect GIT_DIR

2015-11-08 Thread Michał Górny
Allow generating ChangeLogs from external git checkout via using GIT_DIR, rather than requiring the repository to be git. --- bin/egencache | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/egencache b/bin/egencache index 51d115a..eeca255 100755 --- a/bin/egencache +++

Re: [gentoo-dev] pre-GLEP review: Maintainership structure

2015-11-08 Thread Michael Orlitzky
On 11/08/2015 02:41 AM, Michał Górny wrote: >> >> If everyone likes and wants to keep the name _sub_project, I think >> _inherit_ is the wrong word to use, since children inherit from parents. > > What do you suggest instead? > Can a project be a subproject of more than one superproject? If

Re: [gentoo-dev] pre-GLEP review: Maintainership structure

2015-11-08 Thread Michał Górny
On Sun, 8 Nov 2015 10:38:17 -0500 Michael Orlitzky wrote: > On 11/08/2015 02:41 AM, Michał Górny wrote: > >> > >> If everyone likes and wants to keep the name _sub_project, I think > >> _inherit_ is the wrong word to use, since children inherit from parents. > > > > What do

Re: [gentoo-dev] pre-GLEP review: Maintainership structure

2015-11-08 Thread Aaron Bauman
On Tue, 2015-11-03 at 23:15 +0100, Michał Górny wrote: > Please review, comment and answer the questions in TODOs ;-). > > [1]:https://wiki.gentoo.org/wiki/User:MGorny/GLEP:Maintainership_stru > cture > A great improvement over the current implementation. Thank you. signature.asc

Re: [gentoo-portage-dev] [PATCH] repos.conf: support sync-hooks-lazy attribute (bug 565172)

2015-11-08 Thread Zac Medico
On 11/08/2015 11:26 PM, Michał Górny wrote: > On Sun, 8 Nov 2015 15:20:01 -0800 > Zac Medico wrote: > >> If sync-hooks-lazy is set to true, do not trigger postsync hooks unless >> hooks would have executed for a master repository or the repository >> has changed since the

Re: [gentoo-dev] pre-GLEP review: Maintainership structure

2015-11-08 Thread Aaron Bauman
On Tue, 2015-11-03 at 23:15 +0100, Michał Górny wrote: > Please review, comment and answer the questions in TODOs ;-). > > [1]:https://wiki.gentoo.org/wiki/User:MGorny/GLEP:Maintainership_stru > cture > A great improvement over the current implementation. Thank you. signature.asc

Re: [gentoo-portage-dev] [PATCH] repos.conf: support sync-hooks-lazy attribute (bug 565172)

2015-11-08 Thread Michał Górny
On Sun, 8 Nov 2015 15:20:01 -0800 Zac Medico wrote: > If sync-hooks-lazy is set to true, do not trigger postsync hooks unless > hooks would have executed for a master repository or the repository > has changed since the previous sync operation. > > If the user has not

Re: [gentoo-portage-dev] [PATCH] egencache --update-changelogs: Respect GIT_DIR

2015-11-08 Thread Zac Medico
On 11/08/2015 11:24 PM, Michał Górny wrote: > @@ -886,7 +884,7 @@ class GenChangeLogs(object): > repo_path = self._portdb.porttrees[0] > os.chdir(repo_path) > > - if 'git' not in FindVCS(): > + if not os.path.isdir(os.environ.get('GIT_DIR',

Re: [gentoo-dev] Globally masking the sssd USE-flag on sudo and enabling it on supported architectures only

2015-11-08 Thread lejonet
On Sat, 7 Nov 2015 11:36:30 + Markos Chandras wrote: > On 11/04/2015 05:37 PM, Markos Chandras wrote: > > On 11/04/2015 11:34 AM, lejonet wrote: > > > > > fwiw, it sounds good to me > > > > so are you going to do it or should I? > I can do it later today, this

Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyfltk/, dev-python/pyfltk/files/

2015-11-08 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 08/11/15 08:50, Michał Górny wrote: > On Sun, 8 Nov 2015 06:57:38 + (UTC) "Jeroen Roovers" > wrote: > >> commit: b39f2acde24b95c4be5ed1e83c3a0d71fc58ab11 Author: >> Jeroen Roovers gentoo org> AuthorDate: Sun Nov 8