[gentoo-dev] Re: [PATCH 05/16] ebuild-writing/misc-files: replace the code for cvs commit with git #558642

2016-01-17 Thread Michael Palimaka
On 01/17/2016 06:55 PM, Gokturk Yuksek wrote: > Replace "cvs commit" with the equivalent "git add && git commit" version. > > X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=558642 > Signed-off-by: Gokturk Yuksek > > diff --git a/ebuild-writing/misc-files/metadata/text.xml > b/ebuild-

[gentoo-dev] Re: [PATCH 11/16] ebuild-maintenance: rewrite the subsection on moving ebuilds for git #558642

2016-01-17 Thread Michael Palimaka
On 01/17/2016 06:55 PM, Gokturk Yuksek wrote: > Substitute the mentions of CVS with git. > Rewrite CVS commands with their git equivalents. > Remove the paragraph about deleting directories in CVS. > > X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=558642 > Signed-off-by: Gokturk Yuksek

[gentoo-dev] New project: Sysadmin

2016-01-17 Thread Michael Palimaka
I am announcing the Sysadmin project[1], to replace the old herd in preparation for the implementation of GLEP 67. 1: https://wiki.gentoo.org/wiki/Project:Sysadmin

[gentoo-dev] New project: LDAP

2016-01-17 Thread Michael Palimaka
I am announcing the LDAP project[1], to replace the old herd in preparation for the implementation of GLEP 67. 1: https://wiki.gentoo.org/wiki/Project:LDAP

[gentoo-dev] New project: CVS

2016-01-17 Thread Michael Palimaka
I am announcing the CVS project[1], to replace the old herd in preparation for the implementation of GLEP 67. 1: https://wiki.gentoo.org/wiki/Project:CVS

[gentoo-dev] New project: wxWidgets

2016-01-17 Thread Michael Palimaka
I am announcing the wxWidgets project[1], to replace the old herd in preparation for the implementation of GLEP 67. 1: https://wiki.gentoo.org/wiki/Project:WxWidgets

[gentoo-dev] [PATCH 00/15] EAPI 6 support for cmake-utils.eclas

2016-01-20 Thread Michael Palimaka
To follow is a series of patches to enable EAPI 6 support in cmake-utils.eclass and some other general cleanups. Michael Palimaka (14): cmake-utils.eclass: reorder a bit cmake-utils.eclass: declare some variables local cmake-utils.eclass: use a proper if statement cmake-utils.eclass

[gentoo-dev] [PATCH 01/15] cmake-utils.eclass: reorder a bit

2016-01-20 Thread Michael Palimaka
--- eclass/cmake-utils.eclass | 17 + 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index fd53b3a..cc4c06b 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -112,6 +112,15 @@ CMAKE_REMOVE_

[gentoo-dev] [PATCH 02/15] cmake-utils.eclass: declare some variables local

2016-01-20 Thread Michael Palimaka
Prevents them from spanning multilibs. Gentoo-bug: 513170 --- eclass/cmake-utils.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index cc4c06b..f361bc7 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-ut

[gentoo-dev] [PATCH 03/15] cmake-utils.eclass: check exit codes of executed commands

2016-01-20 Thread Michael Palimaka
From: Nikoli Gentoo-bug: 544966 --- eclass/cmake-utils.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index f361bc7..fb80b13 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -219,7 +219

[gentoo-dev] [PATCH 05/15] cmake-utils.eclass: remove duplicate CMAKE_REMOVE_MODULES

2016-01-20 Thread Michael Palimaka
--- eclass/cmake-utils.eclass | 1 - 1 file changed, 1 deletion(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index b2e13a1..28caed2 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -64,7 +64,6 @@ _CMAKE_UTILS_ECLASS=1 # @DESCRIPTION: # Do we wan

[gentoo-dev] [PATCH 04/15] cmake-utils.eclass: use a proper if statement

2016-01-20 Thread Michael Palimaka
--- eclass/cmake-utils.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index fb80b13..b2e13a1 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -428,12 +428,12 @@ enable_cmake-utils_src_pre

[gentoo-dev] [PATCH 06/15] cmake-utils.eclass: ban WANT_CMAKE in EAPI 6 and later

2016-01-20 Thread Michael Palimaka
It is basically unused across the tree and complicates the eclass. If it were needed, it might be better to write custom ebuild phase functions instead. --- eclass/cmake-utils.eclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index

[gentoo-dev] [PATCH 07/15] cmake-utils.eclass: replace replace comment_add_subdirectory with a namespaced version

2016-01-20 Thread Michael Palimaka
--- eclass/cmake-utils.eclass | 15 +-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 1de863f..e8b24bd 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -250,11 +250,11 @@ _generator_to

[gentoo-dev] [PATCH 09/15] cmake-utils.eclass: move $S modifications to src_prepare in EAPI 6 and later

2016-01-20 Thread Michael Palimaka
This is the correct phase for source modifications, and additionally avoids a multilib race condition. Gentoo-bug: 513170 --- eclass/cmake-utils.eclass | 44 +++- 1 file changed, 27 insertions(+), 17 deletions(-) diff --git a/eclass/cmake-utils.eclass b/ec

[gentoo-dev] [PATCH 08/15] cmake-utils.eclass: namespace some private functions

2016-01-20 Thread Michael Palimaka
--- eclass/cmake-utils.eclass | 66 +++ 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index e8b24bd..df33fd9 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@

[gentoo-dev] [PATCH 10/15] cmake-utils.eclass: ban non-array usage of mycmakeargs in EAPI 6 and later

2016-01-20 Thread Michael Palimaka
--- eclass/cmake-utils.eclass | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 22c8718..e6d77ef 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -583,7 +583,11 @@ enable_cmake-utils_src_con

[gentoo-dev] [PATCH 12/15] cmake-utils.eclass: require two arguments for cmake-utils_use_find_package in EAPI 6 and later

2016-01-20 Thread Michael Palimaka
This will allow us to remove the capitalisation variants code later. --- eclass/cmake-utils.eclass | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 51da1c0..960b34b 100644 --- a/eclass/cmake-utils.eclass +++

[gentoo-dev] [PATCH 11/15] cmake-utils.eclass: use default_src_prepare in EAPI 6 and later

2016-01-20 Thread Michael Palimaka
--- eclass/cmake-utils.eclass | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index e6d77ef..51da1c0 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -438,13 +438,16 @@ enable_cmake-u

[gentoo-dev] [PATCH 13/15] cmake-utils.eclass: ban helper functions in EAPI 6 and later

2016-01-20 Thread Michael Palimaka
https://archives.gentoo.org/gentoo-dev/message/6ff6dedb44fff4289764dc5eb960e1c6 Gentoo-bug: 514384 --- eclass/cmake-utils.eclass | 12 1 file changed, 12 insertions(+) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 960b34b..507d27d 100644 --- a/eclass/cmake

[gentoo-dev] [PATCH 15/15] cmake-utils.eclass: update copyright year

2016-01-20 Thread Michael Palimaka
--- eclass/cmake-utils.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 70b70e2..9e8e71e 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Founda

[gentoo-dev] [PATCH 14/15] cmake-utils.eclass: enable EAPI 6

2016-01-20 Thread Michael Palimaka
--- eclass/cmake-utils.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 507d27d..70b70e2 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -114,7 +114,7 @@ _CMAKE_UTILS_ECLASS=1 # Should

[gentoo-dev] Re: Herd up for grabs: xbox

2016-01-22 Thread Michael Palimaka
On 01/18/2016 08:38 PM, Alexis Ballier wrote: > On Sun, 17 Jan 2016 17:47:54 +0100 > Michał Górny wrote: > > >> media-tv/kodi: >> media-tv/xbmc: > > you can add video herd for these two if vapier is ok with that i think > > Thanks, I've taken care of this.

[gentoo-dev] Re: Herd up for grabs: net-dialup

2016-01-22 Thread Michael Palimaka
On 01/21/2016 04:32 AM, Mike Frysinger wrote: > On 17 Jan 2016 21:57, Lars Wendler wrote: >> I am going to take the following packages: >> >> net-dialup/mingetty >> net-dialup/ppp >> net-dialup/rp-pppoe >> >> I think that I might not be the perfect maintainer for these packages >> (especially for p

[gentoo-dev] Re: [PATCH 15/15] cmake-utils.eclass: update copyright year

2016-01-22 Thread Michael Palimaka
On 01/22/2016 03:32 AM, Michał Górny wrote: > Dnia 20 stycznia 2016 11:43:13 CET, Michael Palimaka > napisał(a): >> --- >> eclass/cmake-utils.eclass | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/eclass/cmake-utils.eclass b/eclass

[gentoo-dev] Re: [PATCH 13/15] cmake-utils.eclass: ban helper functions in EAPI 6 and later

2016-01-22 Thread Michael Palimaka
On 01/22/2016 03:31 AM, Michał Górny wrote: > Dnia 20 stycznia 2016 11:43:11 CET, Michael Palimaka > napisał(a): >> https://archives.gentoo.org/gentoo-dev/message/6ff6dedb44fff4289764dc5eb960e1c6 >> >> Gentoo-bug: 514384 >> --- >> eclass/cmake-utils.eclass | 1

[gentoo-dev] Re: [PATCH 07/15] cmake-utils.eclass: replace replace comment_add_subdirectory with a namespaced version

2016-01-22 Thread Michael Palimaka
On 01/22/2016 03:29 AM, Michał Górny wrote: > Dnia 20 stycznia 2016 11:43:05 CET, Michael Palimaka > napisał(a): >> --- >> eclass/cmake-utils.eclass | 15 +-- >> 1 file changed, 13 insertions(+), 2 deletions(-) >> >> diff --git a/eclass/cmake-util

[gentoo-dev] Re: [RFD] Adopt-a-package, proxy-maintenance, and other musings

2016-01-24 Thread Michael Palimaka
On 01/25/2016 02:50 AM, Göktürk Yüksek wrote: > Ian Delaney: > >> 5. At the risk of sounding like Patrick, gentoo lacks some forms >> of documentation pertaining to established proxy maintainers and to >> forms of stats analysis. In discussions, points were raised >> regarding the gathering of sta

[gentoo-dev] Last rites: x11-misc/albert

2020-12-13 Thread Michael Palimaka
# Michael Palimaka (2020-12-13) # Buggy. Uncooperative upstream. # Masked for removal in 30 days. x11-misc/albert

<    1   2   3   4   5