Re: [gentoo-dev] RFC: Gentoo Support Everywhere

2009-05-19 Thread Justin Lecher
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Philip Webb schrieb: > 090519 Jesús Guerrero wrote: >> This is a request for comments on a new project "Gentoo Support Everywhere". >> http://www.gentoo.org/proj/en/gse/ >> this forum thread might be more clarifying: >> http://forums.gentoo.org/vie

Re: [gentoo-dev] RFC: Gentoo Support Everywhere

2009-05-19 Thread Justin Lecher
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Philip Webb schrieb: > 090519 Justin Lecher wrote: >> Philip Webb schrieb: >>> 090519 Jesús Guerrero wrote: >>>> The initial aim is to provide some support to these lost souls >>>> that wander around the LQ fo

Re: [gentoo-dev] amd64 17.1 profiles ready for testing

2017-12-10 Thread Justin Lecher
Hi Is the baselayout ready for this? I get following error * You need to merge /lib32 into /lib * ERROR: sys-apps/baselayout-2.4.1-r2::gentoo failed (setup phase): * non-empty dir found where there should be none: /lib32 Which hints that the baselayout might not be happy with this setup? W

Re: [gentoo-dev] amd64 17.1 profiles ready for testing

2017-12-10 Thread Justin Lecher
On 10/12/2017 11:45, Michał Górny wrote: > Indeed it seems to dislike lib32 symlink. I'll try to fix that. > In the meantime, you can skip baselayout for now and return to it once > all multilib packages are rebuilt (and lib32 is gone). > The rest worked fine. At the end also baselayout behave we

[gentoo-dev] Dropped EAPI 2/3 support in virtualx.eclass

2018-01-06 Thread Justin Lecher
Hi all As there are no consumers [1] of the virtualx.eclass using ancient EAPIs I dropped support for EAPI=2/3 Best, Justin 1) https://qa-reports.gentoo.org/output/eapi-per-eclass/virtualx.eclass/ diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index d66149b70ba..38e629eef4f 10064

[gentoo-dev] [PATCH 0/3] RFC: cmake-utils.eclass minor updates

2016-01-25 Thread Justin Lecher
Hi, Some minor updates on the EAPI testing in the eclass. Justin Justin Lecher (3): cmake-utils.eclass: Use bash internal testing instead of has() cmake-utils.eclass: Drop empty line cmake-utils.eclass: Define default EAPI to 0 eclass/cmake-utils.eclass | 21 ++--- 1

[gentoo-dev] [PATCH 1/3] cmake-utils.eclass: Use bash internal testing instead of has()

2016-01-25 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/cmake-utils.eclass | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 9e8e71e..fb7f5ca 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass

[gentoo-dev] [PATCH 3/3] cmake-utils.eclass: Define default EAPI to 0

2016-01-25 Thread Justin Lecher
Signed-off-by: Justin Lecher --- 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 01de9a5..23339ab 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -112,7 +112,7

[gentoo-dev] [PATCH 2/3] cmake-utils.eclass: Drop empty line

2016-01-25 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/cmake-utils.eclass | 1 - 1 file changed, 1 deletion(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index fb7f5ca..01de9a5 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -20,7 +20,6 @@ if [[ -z

[gentoo-dev] [PATCH 0/5] RFC: Patches for wxwidgets.eclass

2016-02-01 Thread Justin Lecher
me minor things and block EAPI=6 for now until the eclass is ready. Justin Lecher (5): wxwidgets.eclass: Update Copyright year wxwidgets.eclass: Fix whitespaces wxwidgets.eclass: unset unneeded variables in global scope after usage wxwidgets.eclass: Only inherit eclass ones wxwidgets.e

[gentoo-dev] [PATCH 1/5] wxwidgets.eclass: Update Copyright year

2016-02-01 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/wxwidgets.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass index ea7cf9f..6ca9f76 100644 --- a/eclass/wxwidgets.eclass +++ b/eclass/wxwidgets.eclass @@ -1,4 +1,4 @@ -# Copyright

[gentoo-dev] [PATCH 2/5] wxwidgets.eclass: Fix whitespaces

2016-02-01 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/wxwidgets.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass index 6ca9f76..bcdeb53 100644 --- a/eclass/wxwidgets.eclass +++ b/eclass/wxwidgets.eclass @@ -29,7 +29,7

[gentoo-dev] [PATCH 4/5] wxwidgets.eclass: Only inherit eclass ones

2016-02-01 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/wxwidgets.eclass | 5 + 1 file changed, 5 insertions(+) diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass index 5c0719d..aaac074 100644 --- a/eclass/wxwidgets.eclass +++ b/eclass/wxwidgets.eclass @@ -58,6 +58,8 @@ # Use the -DNDEBUG

[gentoo-dev] [PATCH 3/5] wxwidgets.eclass: unset unneeded variables in global scope after usage

2016-02-01 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/wxwidgets.eclass | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass index bcdeb53..5c0719d 100644 --- a/eclass/wxwidgets.eclass +++ b/eclass/wxwidgets.eclass @@ -64,14 +64,14

[gentoo-dev] [PATCH 5/5] wxwidgets.eclass: Add EAPI support

2016-02-01 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/wxwidgets.eclass | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass index aaac074..dc6db5a 100644 --- a/eclass/wxwidgets.eclass +++ b/eclass/wxwidgets.eclass @@ -60,7 +60,14

Re: [gentoo-dev] [RFC] Enable userpriv by default? Support RESTRICT=userpriv? Interaction with prefix in EAPI 3?

2009-12-11 Thread Justin Lecher
Zac Medico wrote: > That can be fixed, right? I don't know. I seems that the process cannot get the socket as user: distcc[16297] ERROR: failed to connect to UNIX-DOMAIN /tmp/distcc-pump.HyIaX8/socket: Permission denied distcc[16297] (dcc_build_somewhere) Warning: failed to get includes from in

[gentoo-dev] Don't use / when applying sed with CFLAGS

2011-06-27 Thread Justin Lecher
Hi Please do not use / as seperater when using sed with CFLAGS. I came across a bug today where it failed for crossdev. Here the toolchain header paths in the cflags and consowuently the seds fail.

[gentoo-dev] [PATCH 1/8] virtualx.eclass: Use case/esac to handle supported EAPIs

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 5d27ed9..584fb29 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -1,4 +1,4

[gentoo-dev] [PATCH 4/8] virtualx.eclass: Ban deprecated functionality in EAPI > 5

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 4 1 file changed, 4 insertions(+) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index a7f17ec..615ff0e 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -59,6 +59,7 @@ case ${VIRTUALX_REQUIRED} in

[gentoo-dev] [PATCH 2/8] virtualx.eclass: Only source eclass once

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 5 + 1 file changed, 5 insertions(+) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 584fb29..0b6614a 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -20,6 +20,8 @@ case "${EAPI:-0

[gentoo-dev] [PATCH 0/8] virtualx.eclass: New API and EAPI=6 support

2015-11-28 Thread Justin Lecher
uot;virtx econf", respectively. Justin Lecher (8): virtualx.eclass: Use case/esac to handle supported EAPIs virtualx.eclass: Only source eclas once virtualx.eclass: Use eqawarn instead of ewarn "QA:..." virtualx.eclass: Ban deprecated functionality in EAPI > 5 virtualx.eclass:

[gentoo-dev] [PATCH 3/8] virtualx.eclass: Use eqawarn instead of ewarn "QA:..."

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 24 +--- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 0b6614a..a7f17ec 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -22,6

[gentoo-dev] [PATCH 7/8] virtualx.eclass: Add missing die

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 54514b0..f9fa879 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -93,9 +93,10 @@ virtualmake

[gentoo-dev] [PATCH 6/8] virtualx.eclass: Whitespace cleanup

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 1 - 1 file changed, 1 deletion(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 048359f..54514b0 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -50,7 +50,6 @@ VIRTUALX_DEPEND="${VIRTUALX_D

[gentoo-dev] [PATCH 5/8] virtualx.eclass: Support EAPI=6

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 615ff0e..048359f 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -13,7 +13,7 @@ case "${EA

[gentoo-dev] [PATCH 8/8] virtualx.eclass: Simplify API into single virtx()

2015-11-28 Thread Justin Lecher
The new API runs all specified arguments to virtx() inside an XFVB, instead of defining VIRTUALX_COMMAND and running that in virtualmake. Xemake and Xeconf should be replaced by "virtx emake" and "virtx econf". Signed-off-by: Justin Lecher --- eclass/

[gentoo-dev] [PATCH 1/8] virtualx.eclass: Use case/esac to handle supported EAPIs

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 5d27ed9..3d0c6c8 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -1,4 +1,4

[gentoo-dev] [PATCH 3/8] virtualx.eclass: Use eqawarn instead of ewarn "QA:..."

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 24 +--- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 517bdac..230897b 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -22,6

[gentoo-dev] [PATCH 4/8] virtualx.eclass: Ban deprecated functionality in EAPI > 5

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 5 + 1 file changed, 5 insertions(+) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 230897b..a5e5457 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -59,6 +59,8 @@ case ${VIRTUALX_REQUIRED} in

[gentoo-dev] [PATCH 5/8] virtualx.eclass: Whitespace cleanup

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 1 - 1 file changed, 1 deletion(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index a5e5457..1f90147 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -50,7 +50,6 @@ VIRTUALX_DEPEND="${VIRTUALX_D

[gentoo-dev] [PATCH 7/8] virtualx.eclass: Simplify API into single virtx()

2015-11-28 Thread Justin Lecher
The new API runs all specified arguments to virtx() inside an XFVB, instead of defining VIRTUALX_COMMAND and running that in virtualmake. Xemake and Xeconf should be replaced by "virtx emake" and "virtx econf". Signed-off-by: Justin Lecher --- eclass/

[gentoo-dev] [PATCH 6/8] virtualx.eclass: Add missing die

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 1f90147..d10dbb2 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -94,9 +94,10 @@ virtualmake

[gentoo-dev] [PATCH 8/8] virtualx.eclass: Support EAPI=6

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index b124034..95f4ed0 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -13,7 +13,7 @@ case "${EA

[gentoo-dev] [PATCH 2/8] virtualx.eclass: Only source eclass once

2015-11-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 5 + 1 file changed, 5 insertions(+) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 3d0c6c8..517bdac 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -20,6 +20,8 @@ case "${EAPI:-0

[gentoo-dev] [PATCH 0/8] virtualx.eclass updates version 3

2015-11-29 Thread Justin Lecher
So next try. patches slightly resorted, die message wording adopted. Justin Lecher (8): virtualx.eclass: Use case/esac to handle supported EAPIs virtualx.eclass: Only source eclass once virtualx.eclass: Use eqawarn instead of ewarn "QA:..." virtualx.eclass: Whitespa

[gentoo-dev] [PATCH 3/8] virtualx.eclass: Use eqawarn instead of ewarn "QA:..."

2015-11-29 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 24 +--- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 8d66da0..c2bef68 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -22,6

[gentoo-dev] [PATCH 1/8] virtualx.eclass: Use case/esac to handle supported EAPIs

2015-11-29 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 5d27ed9..e9ff3af 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -1,4 +1,4

[gentoo-dev] [PATCH 2/8] virtualx.eclass: Only source eclass once

2015-11-29 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 5 + 1 file changed, 5 insertions(+) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index e9ff3af..8d66da0 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -9,6 +9,8 @@ # Original author: Martin

[gentoo-dev] [PATCH 4/8] virtualx.eclass: Whitespace cleanup

2015-11-29 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 1 - 1 file changed, 1 deletion(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index c2bef68..78f5429 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -50,7 +50,6 @@ VIRTUALX_DEPEND="${VIRTUALX_D

[gentoo-dev] [PATCH 7/8] virtualx.eclass: Ban deprecated functionality in EAPI > 5

2015-11-29 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index bdecda6..344cd63 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -22,7 +22,7

[gentoo-dev] [PATCH 5/8] virtualx.eclass: Add missing die

2015-11-29 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 78f5429..3df3fe1 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -92,9 +92,10 @@ virtualmake

[gentoo-dev] [PATCH 8/8] virtualx.eclass: Support EAPI=6

2015-11-29 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/virtualx.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 344cd63..de1582c 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -15,7 +15,7 @@ case "${EA

[gentoo-dev] [PATCH 6/8] virtualx.eclass: Simplify API into single virtx()

2015-11-29 Thread Justin Lecher
The new API runs all specified arguments to virtx() inside an XFVB, instead of defining VIRTUALX_COMMAND and running that in virtualmake. Xemake and Xeconf should be replaced by "virtx emake" and "virtx econf". Signed-off-by: Justin Lecher --- eclass/

[gentoo-dev] [PATCH 2/9] check-reqs.eclass: Use eqawarn() from eutils.eclass

2015-12-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index 4f74536..219023e 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -76,10

[gentoo-dev] [PATCH 1/9] check-reqs.eclass: Only inherit eclass once

2015-12-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 5 + 1 file changed, 5 insertions(+) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index d685f1f..4f74536 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -38,6 +38,8 @@ # These checks

[gentoo-dev] [PATCH 3/9] check-reqs.eclass: Mark interal function with @INTERNAL

2015-12-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 10 ++ 1 file changed, 10 insertions(+) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index 219023e..3c98baf 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -108,6 +108,7 @@ check

[gentoo-dev] [PATCH 0/9] Cleanup and EAPI=6 support for check-reqs.eclass

2015-12-28 Thread Justin Lecher
Dear all, please review my suggestion to the check-reqs.eclass according to cleanups and EAPI=6 support. Any further ideas you like to see implemented? Justin Justin Lecher (9): check-reqs.eclass: Only inherit eclass once check-reqs.eclass: Use eqawarn() from eutils.eclass check

[gentoo-dev] [PATCH 4/9] check-reqs.eclass: Fix typo

2015-12-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index 3c98baf..138bfec 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -71,7 +71,7 @@ esac

[gentoo-dev] [PATCH 5/9] check-reqs.eclass: Replace obsolete df option -m with -B ###

2015-12-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index 138bfec..a32f8f8 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -306,7 +306,7 @@ check

[gentoo-dev] [PATCH 6/9] check-reqs.eclass: Ban obsolete functions in newer EAPIs

2015-12-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index a32f8f8..ad032b9 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -75,6 +75,8 @@ esac check_reqs

[gentoo-dev] [PATCH 9/9] check-reqs.eclass: Enable EAPI 6 support

2015-12-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index 26f2dc1..d22e8c2 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -65,7 +65,7 @@ inherit

[gentoo-dev] [PATCH 7/9] check-reqs.eclass: Sanitize MERGE_TYPE for EAPI < 4

2015-12-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index ad032b9..4513904 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -136,6 +136,8 @@ check-reqs_run

[gentoo-dev] [PATCH 8/9] check-reqs.eclass: Require units for CHECKREQS_ in EAPIs > 5

2015-12-28 Thread Justin Lecher
Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index 4513904..26f2dc1 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -198,13 +198,14

[gentoo-dev] [PATCH] Replace df -m with df -k

2015-12-28 Thread Justin Lecher
I replaced al calculations from mbi to kbi so that we can use the common -k flag. Justin Justin Lecher (1): check-reqs.eclass: Replace obsolete df option -m with -k eclass/check-reqs.eclass | 25 + 1 file changed, 13 insertions(+), 12 deletions(-) -- 2.6.4

[gentoo-dev] [PATCH] check-reqs.eclass: Replace obsolete df option -m with -k

2015-12-28 Thread Justin Lecher
Using kbi as base unit for calculation as linux and bsd only have -k as common option Signed-off-by: Justin Lecher --- eclass/check-reqs.eclass | 25 + 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass

Re: [gentoo-dev] [PATCH 3/3] cmake-utils.eclass: Define default EAPI to 0

2016-01-26 Thread Justin Lecher (jlec)
On 26/01/16 15:10, Davide Pesavento wrote: > On Tue, Jan 26, 2016 at 1:50 PM, Michał Górny wrote: >> Dnia 26 stycznia 2016 13:36:00 CET, Davide Pesavento >> napisał(a): >>> On Mon, Jan 25, 2016 at 9:29 PM, Justin Lecher wrote: >>>> Signed-off-by: Justin

Re: [gentoo-dev] Re: [PATCH 4/5] wxwidgets.eclass: Only inherit eclass ones

2016-02-02 Thread Justin Lecher (jlec)
On 02/02/16 00:18, Duncan wrote: > Justin Lecher posted on Mon, 01 Feb 2016 12:08:32 +0100 as excerpted: > > [Title/description only comment, body quote snipped] > > What about eclass twos and eclass threes? > > IOW, s/ones/once/ > yeah, I have some weaknesses with th

Re: [gentoo-dev] Re: [PATCH 0/5] RFC: Patches for wxwidgets.eclass

2016-02-03 Thread Justin Lecher (jlec)
On 02/02/16 23:36, Ryan Hill wrote: > On Mon, 1 Feb 2016 12:08:28 +0100 > Justin Lecher wrote: > >> while tracking down the following error when running "egencache" >> >> GENTOO.GIT//eclass/wxwidgets.eclass: line 84: get_libdir: command not found >> G

[gentoo-dev] Re: [gentoo-project] Call for Agenda Items -- Council Meeting 2016-02-14

2016-02-04 Thread Justin Lecher (jlec)
On 03/02/16 21:46, Dirkjan Ochtman wrote: > On Tue, Feb 2, 2016 at 3:18 PM, Justin Lecher (jlec) wrote: >> Could you please sum up the thread and come up with some precise >> question we should discuss or vote on. > > The question is: what language should we use for XML val

[gentoo-dev] RFC: intel-sdp-r1.eclass

2016-02-15 Thread Justin Lecher (jlec)
* Don't record in installation db Thanks, Justin # Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ # @ECLASS: intel-sdp-r1.eclass # @MAINTAINER: # Justin Lecher # David Seifert # Sci Team # @BLURB: Handling of Intel'

Re: [gentoo-dev] RFC: intel-sdp-r1.eclass

2016-02-15 Thread Justin Lecher (jlec)
On 15/02/16 13:59, Michał Górny wrote: > On Mon, 15 Feb 2016 09:16:53 +0100 > "Justin Lecher (jlec)" wrote: > >> # Copyright 1999-2016 Gentoo Foundation >> # Distributed under the terms of the GNU General Public License v2 >> # $Id$ >> >>

Re: [gentoo-dev] RFC: intel-sdp-r1.eclass

2016-02-15 Thread Justin Lecher (jlec)
On 15/02/16 15:35, Michał Górny wrote: > On Mon, 15 Feb 2016 14:37:41 +0100 > "Justin Lecher (jlec)" wrote: > >> On 15/02/16 13:59, Michał Górny wrote: >>> On Mon, 15 Feb 2016 09:16:53 +0100 >>> "Justin Lecher (jlec)" wrote: >>>

[gentoo-dev] BOINC needs maintainer

2016-02-17 Thread Justin Lecher (jlec)
Hi, currently BOINC supposed to be maintained by the science team, but we are not really carrying about it. Is there anyone around whole likes to take this over? Thanks for your help, Justin signature.asc Description: OpenPGP digital signature

[gentoo-dev] RFC: new eclass emboss-r1 (obsoletes emboss and embassy eclass)

2015-02-21 Thread Justin Lecher (jlec)
: # Original author: Author Olivier Fisette # Next gen author: Justin Lecher # Next gen author: Ted Tanberry # @BLURB: Use this to easy install EMBOSS and EMBASSY programs (EMBOSS add-ons). # @DESCRIPTION: # The inheriting ebuild must set at least EAPI=5 and provide EBO_DESCRIPTION before the inherit

Re: [gentoo-dev] RFC: new eclass emboss-r1 (obsoletes emboss and embassy eclass)

2015-02-21 Thread Justin Lecher (jlec)
On 21/02/15 20:19, hasufell wrote: > Justin Lecher (jlec): >> Hi all, >> >> we got a nice user contribution which fixes several bugs and >> potential security implications. As a result we need to have >> changes to the emboss eclass. >> >> The new

Re: [gentoo-dev] RFC: new eclass emboss-r1 (obsoletes emboss and embassy eclass)

2015-02-21 Thread Justin Lecher (jlec)
On 21/02/15 20:36, Michał Górny wrote: >> # @ECLASS-VARIABLE: EBO_EXTRA_ECONF # @DEFAULT_UNSET # >> @DESCRIPTION: # Extra config options passed to econf, similar to >> EXTRA_ECONF. > > Similar as in how? That it must not be used in ebuilds but in > make.conf? Probably missleading name. All the co

[gentoo-dev] Version Bumps

2015-03-28 Thread Justin Lecher (jlec)
Dear fellow devs, The following behavior is not an appropriate procedure for a version bump! "Seems like a trivial version bump, simply renaming the xxx ebuild works." Please check packages more carefully e.g. comparing configure.ac, Makefile.am, README, INSTALL, setup.py, requirements.txt and w

[gentoo-dev] RFC: Indention in metadata.xml

2015-06-06 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hi everyone, Can we get an agreement on how we are indenting metadata.xml? I like to properly format and indent metadata.xml, but without having an agreement or policy on the indention, I make unhappy by choosing the wrong. The two options which a

Re: [gentoo-dev] Re: RFC: Indention in metadata.xml

2015-06-06 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 06/06/15 14:07, Ulrich Mueller wrote: >> On Sat, 6 Jun 2015, Duncan wrote: > >>> *If* we should agree on using tabs, then we should also >>> standardise the tab width. Using the same rules for indenting >>> and whitespace as for ebuilds (i.e

Re: [gentoo-dev] Re: RFC: Indention in metadata.xml

2015-06-06 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 06/06/15 17:21, Michael Orlitzky wrote: > On 06/06/2015 08:22 AM, Justin Lecher (jlec) wrote: >> >> * linewidth >> 80 (why do we have this short limit still in >> 2015) >> > > It's ancient typogra

Re: [gentoo-dev] RFC: Indention in metadata.xml

2015-06-07 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 07/06/15 14:48, Andrew Udvare wrote: > On 07/06/15 05:12, Alexis Ballier wrote: >> On Sat, 6 Jun 2015 22:00:14 -0400 Mike Gilbert >> wrote: >> >>> Compatibility with sed scripts is not something I care about. ... > However, I do not disagree an

Re: [gentoo-dev] Re: RFC: using Ninja in more CMake-based packages

2015-06-07 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 07/06/15 22:14, Johannes Huber wrote: > Am Sonntag 07 Juni 2015, 17:08:57 schrieb Michał Górny: >> Hello, developers. > > Hello Michal, > >> As you probably know already, CMake sucks a lot. One of its more >> sucky features is that it generates

[gentoo-dev] symlinks in the tree

2015-09-12 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hi, I would like to discuss the pro and cons of usage of symlinks in the tree, which are possible now as we aren't bound to CVS anymore We have quite a number of ebuilds already in the tree defining functionality for both, regular version and live

Re: [gentoo-dev] symlinks in the tree

2015-09-12 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 12/09/15 15:19, hasufell wrote: > +1 for banning symlinks > mrueg just mentioned a very crucial point. There are filesystem which don't support symlinks and would break everything. -BEGIN PGP SIGNATURE- Version: GnuPG/MacGPG2 v2.0 iQJ

Re: [gentoo-dev] Always specify SLOT we know a package is compatible with (even if only one SLOT exists at the moment ebuild is added)

2015-09-19 Thread Justin Lecher (jlec)
On 19/09/15 12:36, hasufell wrote: > Hmm, you are suggesting to do this even for packages that only > have one SLOT anyway? I'm really not sure about this. Depending on > the SLOT-naming-scheme that will be introduced it may require > massive changes as well. It's hard to look into the future. I >

Re: [gentoo-dev] Updating all Manifest to contain SHA256 SHA512 WHIRLPOOL

2015-09-20 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 20/09/15 19:41, Robin H. Johnson wrote: > On Fri, Sep 18, 2015 at 10:58:22AM +0200, Justin (jlec) wrote: >> Hello, >> >> there are quite a number of Manifest still not containing one or >> more of the three hashes. I would like to update them as

Re: [gentoo-dev] Updating all Manifest to contain SHA256 SHA512 WHIRLPOOL

2015-09-22 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hi there, I did a first fix run. https://github.com/jlec/gentoo/commit/0df86dcca0aa981fa7bdba633653697e2b 40781c Although my script checks whether the size and SHA256 changed, but better you could also take a look. Thanks, Justin -BEGIN PGP S

[gentoo-dev] obsolete remote-id types

2015-09-26 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hello, I will drop gitorius and google-code from metadata.{xml,dtd}. Any objections? Thanks, Justin -BEGIN PGP SIGNATURE- Version: GnuPG/MacGPG2 v2.0 iQJ8BAEBCgBmBQJWBn9AXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1h

Re: [gentoo-dev] obsolete remote-id types

2015-09-26 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 26/09/15 14:58, Michał Górny wrote: > Dnia 2015-09-26, o godz. 13:19:28 "Justin Lecher (jlec)" > napisał(a): > >> Hello, >> >> I will drop gitorius and google-code from metadata.{xml,dtd}. >> Any obj

Re: [gentoo-dev] tcltk herd empty

2015-10-04 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 30/09/15 15:02, Justin (jlec) wrote: > Hi, > > is no active maintainer for tcltk in Gentoo anymore. > > Please stand up or try to remove tcltk support from your packages. > > Justin > Hi, so it seems there is some interest. Following thing

Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: /

2015-10-10 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 10/10/15 13:33, Andreas K. Huettel wrote: > >> You should (almost) never commit reverse-merges of >> git.gentoo.org master[0]. > >> Instead, you have to use git pull --rebase=preserve origin >> master > >> in case you get "push conflicts" [1] >

Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: dev-python/intelhex/

2015-10-21 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 21/10/15 19:21, Ciaran McCreesh wrote: > On Wed, 21 Oct 2015 01:25:53 +0200 hasufell > wrote: >> Also, my package manager chokes on it. Repoman not, so that >> looks like a bug. > > s/Repoman/Portage/ > > Portage will quite happily let you spec

Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: dev-python/intelhex/

2015-10-21 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 21/10/15 19:32, Justin Lecher (jlec) wrote: > On 21/10/15 19:21, Ciaran McCreesh wrote: >> On Wed, 21 Oct 2015 01:25:53 +0200 hasufell >> wrote: >>> Also, my package manager chokes on it. Repoman not, so that >&

[gentoo-dev] [gentoo-dev-announce] Last rites: dev-python/scientificpython

2015-11-01 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 # Justin Lecher (01 Nov 2015) # Obsolete package # Incompatible to recent numpy version # No upstream activity dev-python/scientificpython -BEGIN PGP SIGNATURE- Version: GnuPG/MacGPG2 v2.0

Re: [gentoo-dev] [PATCH v1] enable gccgo for all platform

2015-11-02 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 How about a virtual here? -BEGIN PGP SIGNATURE- Version: GnuPG/MacGPG2 v2.0 iQJ8BAEBCgBmBQJWN8OuXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ0QUU0N0I4NzFERUI0MTJFN0EyODE0NUFF OTQwMkE3OUIwMzUyOUEyAAoJEOlAKnmwNSm

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 >> 06:53:39 2015 +0

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: > > pyfltk-1.3.3 works

[gentoo-dev] Last rites: sci-chemistry/pymol-apbs-plugin

2015-11-12 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 # Justin Lecher (12 Nov 2015) # deprecated version of the plugin. # sci-chemistry/pymol includes the newer version sci-chemistry/pymol-apbs-plugin -BEGIN PGP SIGNATURE- Version: GnuPG/MacGPG2 v2.0

Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: eclass/

2015-11-16 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 16/11/15 10:01, Alexis Ballier wrote: > On Fri, 13 Nov 2015 23:53:05 + (UTC) "Michał Górny" > wrote: > >> commit: ad4c142684afb096e8fff2937ae5c5c3385dd22e Author: >> Michał Górny gentoo org> AuthorDate: Fri Nov >> 13 18:46:33 2015 +000

Re: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: eclass/

2015-11-16 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 16/11/15 10:14, Alexis Ballier wrote: > Probably those that want to ban it should fix the(ir) tree so that > developers have no pain in bumping to eapi6? Versioned APIs are made to have incompatible changes. What do you like to see? Someone drop

Re: [gentoo-dev] [PATCH 10/29] python-utils-r1.eclass: Make heredocs consistent

2015-11-23 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 22/11/15 20:50, Micha? Górny wrote: > --- eclass/python-utils-r1.eclass | 10 +- 1 file changed, 5 > insertions(+), 5 deletions(-) > > diff --git a/eclass/python-utils-r1.eclass > b/eclass/python-utils-r1.eclass index 7617c3f..6fb1ec5 1006

Re: [gentoo-dev] [PATCH 4/8] virtualx.eclass: Ban deprecated functionality in EAPI > 5

2015-11-28 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 28/11/15 15:03, Michał Górny wrote: > > > Dnia 28 listopada 2015 14:24:17 CET, Justin Lecher > napisał(a): >> Signed-off-by: Justin Lecher --- >> eclass/virtualx.eclass | 4 1 file changed, 4 insertions(+) &g

Re: [gentoo-dev] [PATCH 8/8] virtualx.eclass: Simplify API into single virtx()

2015-11-28 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 28/11/15 16:28, Davide Pesavento wrote: >> else - nonfatal ${VIRTUALX_COMMAND} "$@" + >> nonfatal "$@" > > Please take the opportunity to clean this up, possibly only in > EAPI=6 if you don't want to risk breaking existing ebuilds.

Re: [gentoo-dev] [PATCH 4/8] virtualx.eclass: Ban deprecated functionality in EAPI > 5

2015-11-28 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 28/11/15 16:57, Michał Górny wrote: > > > Dnia 28 listopada 2015 15:08:52 CET, "Justin Lecher (jlec)" > napisał(a): On 28/11/15 15:03, Michał Górny > wrote: >>>> >>>> >>>> Dnia 2

Re: [gentoo-dev] [PATCH 4/8] virtualx.eclass: Ban deprecated functionality in EAPI > 5

2015-11-29 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 29/11/15 10:57, Michał Górny wrote: > On Sat, 28 Nov 2015 17:21:00 +0100 Justin Lecher > wrote: > >> Signed-off-by: Justin Lecher --- >> eclass/virtualx.eclass | 5 + 1 file changed, 5 insertions(+) >&

Re: [gentoo-dev] [PATCH 8/8] virtualx.eclass: Simplify API into single virtx()

2015-11-30 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 30/11/15 18:40, Davide Pesavento wrote: > > The scenario of bug 517976 is different. I think a minimized test > case is the following (untested): > > foo() { die "meh" return 0 } > > src_test() { virtx foo } > This example will still break th

Re: [gentoo-dev] [PATCH 0/9] Cleanup and EAPI=6 support for check-reqs.eclass

2015-12-28 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 28/12/15 10:35, Andrew Savchenko wrote: > Hi, > > On Mon, 28 Dec 2015 09:43:46 +0100 Justin Lecher wrote: >> Dear all, >> >> please review my suggestion to the check-reqs.eclass according to >> cleanups and EAPI

Re: [gentoo-dev] [PATCH 5/9] check-reqs.eclass: Replace obsolete df option -m with -B ###

2015-12-28 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 28/12/15 14:58, Andrew Savchenko wrote: > Hi, > > On Mon, 28 Dec 2015 09:43:51 +0100 Justin Lecher wrote: >> Signed-off-by: Justin Lecher --- >> eclass/check-reqs.eclass | 2 +- 1 file changed, 1 insertion(+), 1 >> de

Re: [gentoo-dev] [PATCH 5/9] check-reqs.eclass: Replace obsolete df option -m with -B ###

2015-12-28 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 28/12/15 15:24, Michał Górny wrote: > Dnia 28 grudnia 2015 09:43:51 CET, Justin Lecher > napisał(a): >> Signed-off-by: Justin Lecher --- >> eclass/check-reqs.eclass | 2 +- 1 file changed, 1 insertion(+), 1 >> deletio

Re: [gentoo-dev] [PATCH] check-reqs.eclass: Replace obsolete df option -m with -k

2015-12-28 Thread Justin Lecher (jlec)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 28/12/15 16:41, Michał Górny wrote: > Dnia 28 grudnia 2015 16:27:43 CET, Justin Lecher > napisał(a): >> Using kbi as base unit for calculation as linux and bsd only have >> -k as common option > > It's 'kibib

  1   2   >