Re: [gentoo-dev] [PATCH] cdrom.eclass: Near rewrite

2017-04-27 Thread James Le Cuirot
On Mon, 17 Apr 2017 22:53:45 +0100 James Le Cuirot <ch...@gentoo.org> wrote: > If you've been wondering why I've been quiet of late (you have, > right?!) then this is partly why. I'm not sure why I spent so long on > an eclass that hardly anyone uses but it's utilised by

Re: [gentoo-dev] [PATCH 01/14] cdrom.eclass: Detect case-insensitively and handle special characters

2017-04-19 Thread James Le Cuirot
ting installation that may come from Windows. The Curse of Monkey Island turned out to be a great example. Both discs have some files in common like COMI.LA0, however, when mounted with the default options, it appears upper-cased on the first disc but lower-cased on the second. Why? The second disc doesn't use Joliet as all the filenames have the old 8.3 format. Linux normalises these to lower-case. The first disc does use Joliet because of a single file, "Curse of Monkey Island - Manual.pdf" so all the other 8.3 filename are left as upper-case by Linux. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpeNIjKYyVV0.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] [PATCH 01/14] cdrom.eclass: Detect case-insensitively and handle special characters

2017-04-18 Thread James Le Cuirot
On Tue, 18 Apr 2017 08:08:44 +0200 Michał Górny <mgo...@gentoo.org> wrote: > On pon, 2017-04-17 at 22:53 +0100, James Le Cuirot wrote: > > diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass > > index 41488d2446c2..de72f15563db 100644 > > --- a/eclass/cdrom.eclass &g

Re: [gentoo-dev] [PATCH] cdrom.eclass: Near rewrite

2017-04-18 Thread James Le Cuirot
On Tue, 18 Apr 2017 07:51:58 +0200 Ulrich Mueller <u...@gentoo.org> wrote: > >>>>> On Mon, 17 Apr 2017, James Le Cuirot wrote: > > > If you've been wondering why I've been quiet of late (you have, > > right?!) then this is partly why. I'm not su

Re: [gentoo-dev] Re: Re: stable gcc 5.4.0 ??

2017-04-18 Thread James Le Cuirot
is is no wonder, because > the stable branch of the GIT mirror is still not up-to-date: > https://github.com/gentoo-mirror/gentoo/tree/stable/sys-devel/gcc It's been held up by this outstanding issue: https://qa-reports.gentoo.org/output/gentoo-ci/58d678e2a/output.html#dev-db/psqlodbc -- James Le

[gentoo-dev] [PATCH 12/14] cdrom.eclass: Use consistent terminology in prompts and messages

2017-04-17 Thread James Le Cuirot
--- eclass/cdrom.eclass | 28 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index f4ea2ff36400..36d967d2f4cd 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -58,7 +58,7 @@ cdrom_get_cds() {

[gentoo-dev] [PATCH 14/14] cdrom.eclass: Update copyright year

2017-04-17 Thread James Le Cuirot
--- eclass/cdrom.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index c95bb80325e9..baf566ea415e 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright

[gentoo-dev] [PATCH 13/14] cdrom.eclass: Update and improve documentation following changes

2017-04-17 Thread James Le Cuirot
--- eclass/cdrom.eclass | 121 +--- 1 file changed, 96 insertions(+), 25 deletions(-) diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index 36d967d2f4cd..c95bb80325e9 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -6,13 +6,13

[gentoo-dev] [PATCH 10/14] cdrom.eclass: The CDROM_TOTAL_CDS variable is redundant now

2017-04-17 Thread James Le Cuirot
This was never formally declared by the eclass or used by ebuilds. --- eclass/cdrom.eclass | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index 10a19551161a..95bf48829e14 100644 --- a/eclass/cdrom.eclass +++

[gentoo-dev] [PATCH 11/14] cdrom.eclass: Make CD_ROOT less of a special case, fixes #195868

2017-04-17 Thread James Le Cuirot
CD_ROOT was intended to be a power user feature so the eclass didn't try very hard to check the validity of the given location. This difference in behaviour ultimately made the eclass larger and more confusing. It now uses the same matching loop as the regular case, making it simpler and more

[gentoo-dev] [PATCH 07/14] cdrom.eclass: We don't know for sure how many discs will be needed

2017-04-17 Thread James Le Cuirot
The number of discs may vary between sets and ebuilds may not call cdrom_load_next_cd() for every argument depending on USE flags and other conditional factors. --- eclass/cdrom.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass

[gentoo-dev] [PATCH 06/14] cdrom.eclass: Simplify loop with seq

2017-04-17 Thread James Le Cuirot
--- eclass/cdrom.eclass | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index 681683f9328c..b8fdb03ac535 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -104,10 +104,9 @@ cdrom_get_cds() { else

[gentoo-dev] [PATCH 09/14] cdrom.eclass: Change CDROM_CHECK_# variables to a CDROM_CHECKS array

2017-04-17 Thread James Le Cuirot
--- eclass/cdrom.eclass | 11 +++ 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index 56032e084d01..10a19551161a 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -52,12 +52,8 @@ cdrom_get_cds() { # the # of

[gentoo-dev] [PATCH 08/14] cdrom.eclass: Fix important typo in the multiple disc instructions

2017-04-17 Thread James Le Cuirot
If you have all the files within the same directory tree then you should set CD_ROOT, not CD_ROOT_1. --- eclass/cdrom.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index 67f9b15d21e4..56032e084d01 100644 ---

[gentoo-dev] [PATCH 05/14] cdrom.eclass: Remove ye olde Submount check

2017-04-17 Thread James Le Cuirot
Submount was last-rited in 2007 and was already dead long before that. --- eclass/cdrom.eclass | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index 9724c66ca2ce..681683f9328c 100644 --- a/eclass/cdrom.eclass +++

[gentoo-dev] [PATCH 01/14] cdrom.eclass: Detect case-insensitively and handle special characters

2017-04-17 Thread James Le Cuirot
This eclass previously used "find -iname" but it only checked the file case-insensitively and not the directories. There is "find -ipath" but this does not intelligently skip non-matching paths, making it slow. Globbing is used here instead. The : character has always been used to delimit paths

[gentoo-dev] [PATCH 04/14] cdrom.eclass: Allow CDROM_NAMES changes before each cdrom_load_next_cd

2017-04-17 Thread James Le Cuirot
This works around the lack of per-set disc names. Once the first disc has been detected, ebuilds can adjust CDROM_NAMES to contain just the names from the matched CDROM_SET. --- eclass/cdrom.eclass | 25 - 1 file changed, 16 insertions(+), 9 deletions(-) diff --git

[gentoo-dev] [PATCH 03/14] cdrom.eclass: Rename CDROM_NAME_SET array to CDROM_NAMES

2017-04-17 Thread James Le Cuirot
vapier seemed confused about what he wanted this variable to do as can be seen in bug #139196. The eclass used it for the names of each disc, regardless of the set, while ebuilds used it for the name of each single-disc set. This was not helped by the fact that the set feature has been totally

[gentoo-dev] [PATCH 02/14] cdrom.eclass: Simplify printing of CD_ROOT_# variable names

2017-04-17 Thread James Le Cuirot
--- eclass/cdrom.eclass | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index de72f15563db..f1839b189ae9 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -122,12 +122,7 @@ cdrom_get_cds() { einfo "If

[gentoo-dev] [PATCH] cdrom.eclass: Near rewrite

2017-04-17 Thread James Le Cuirot
If you've been wondering why I've been quiet of late (you have, right?!) then this is partly why. I'm not sure why I spent so long on an eclass that hardly anyone uses but it's utilised by many of my old favourite games. The main bug that it fixes is one I filed a report for 10 years ago! There

[gentoo-dev] Last rites: dev-java/jdbc-oracle-bin and dev-java/sun-j2ee-deployment-bin

2017-04-14 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (14 Apr 2017) # Outdated and stuck behind a temperamental registration wall that I # have lost my patience with. Removal in 30 days if no one cares # enough to pick it up. dev-java/jdbc-oracle-bin # James Le Cuirot <ch...@gentoo.org> (14 Apr 201

Re: [gentoo-dev] Reverse use of Python/Ruby versions

2017-04-09 Thread James Le Cuirot
st a warning right now but I haven't seen that warning since it was dealt with in Rails. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpr0oLkm0YAA.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] [RFC] Master plan for fixing elibtoolize

2017-03-17 Thread James Le Cuirot
ck a call to this to near the top of econf() and tried out some packages, including those that had failed on me before. It worked very well indeed. I don't recall encountering any issues. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpUtDNJo7r8W.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] Suggested sync method/Portage config for devs on ~arch?

2017-02-28 Thread James Le Cuirot
ask the greater > developer community what method(s) they employ to sync from our > repositories and why it's a good fit for them. I use hasufell's repo too. I'm surprised we haven't made it more official. -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] [PATCH v2] java-ant-2.eclass: Replace unnecessary evals with arrays

2017-02-25 Thread James Le Cuirot
ough test. Some of the code paths are rarely used and I suspect some are never used now but it looks good anyway. Please go ahead. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpySOV3R0z6P.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] icedtea requiring X libs to build was -> Guidelines for IUSE defaults

2017-02-02 Thread James Le Cuirot
oid GTK on a server then you should stick to one of the -bin packages. Hopefully Java 9 will improve on this. -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] Guidelines for IUSE defaults

2017-02-02 Thread James Le Cuirot
nything regarding this in a long time. I suppose I could enable headless-awt by default and disable it in the desktop profile but I suspect it'll still trip somebody up. -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] Guidelines for IUSE defaults

2017-02-02 Thread James Le Cuirot
reason > (s)he is likely more prepared to understand the choices than the > average user. Exactly what I was going to say. -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] rfc: moving OpenRC to a meson-based build

2017-02-01 Thread James Le Cuirot
On Wed, 1 Feb 2017 10:46:12 -0600 William Hubbs <willi...@gentoo.org> wrote: > On Wed, Feb 01, 2017 at 03:55:17PM +0000, James Le Cuirot wrote: > > On Wed, 1 Feb 2017 09:39:34 -0600 > > William Hubbs <willi...@gentoo.org> wrote: > > > > > I thought a

Re: [gentoo-dev] rfc: moving OpenRC to a meson-based build

2017-02-01 Thread James Le Cuirot
uld need to put > the autotools generated cruft in them. Not all that hard, to be honest. Autotools adds a "make dist" target and then you just upload that tarball to GitHub by adding a new release. -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] rfc: moving OpenRC to a meson-based build

2017-01-30 Thread James Le Cuirot
spect it's only a matter of time before something else in @system pulls those in. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpwu2UuIiHLC.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] Requirements for UID/GID management

2017-01-29 Thread James Le Cuirot
On Sun, 29 Jan 2017 11:16:50 -0600 "A. Wilcox" <awil...@adelielinux.org> wrote: > On 28/01/17 13:32, James Le Cuirot wrote: > > On Sat, 28 Jan 2017 12:13:53 -0600 "A. Wilcox" > > <awil...@adelielinux.org> wrote: > > > >> Ha

Re: [gentoo-dev] Requirements for UID/GID management

2017-01-28 Thread James Le Cuirot
On Sat, 28 Jan 2017 15:34:01 -0500 Rich Freeman <ri...@gentoo.org> wrote: > On Sat, Jan 28, 2017 at 2:32 PM, James Le Cuirot <ch...@gentoo.org> wrote: > > On Sat, 28 Jan 2017 12:13:53 -0600 > > "A. Wilcox" <awil...@adelielinux.org> wrote: > > >

Re: [gentoo-dev] Requirements for UID/GID management

2017-01-28 Thread James Le Cuirot
or make two copies, but it's > much easier for me to test these apps having my entire normal > environment available to me. As mentioned in my other post, why are you not using idmapd? It's trivial to set up on top of NFSv4. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpAINS3hI1ly.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] Requirements for UID/GID management

2017-01-28 Thread James Le Cuirot
ly tried mixing Samba, sssd, and NFS, which was quite fascinating and surprisingly easy thanks to realmd. This allowed me to use NFS with Kerberos, which is something you really need in an enterprise environment. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpgo8H4dSB6k.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] Re: Last rites: x11-drivers/ati-drivers, x11-libs/amd-adl-sdk, x11-libs/xvba-video

2017-01-28 Thread James Le Cuirot
uot;DC" kernel branch. https://cgit.freedesktop.org/~agd5f/linux/log/?h=amd-staging-4.9 This is just as free but not yet mainlined. You can use it with Mesa or AMDGPU-PRO but I highly recommend the former. Disclaimer: I haven't tried it myself yet. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpM

Re: [gentoo-dev] Re: Last rites: x11-drivers/ati-drivers, x11-libs/amd-adl-sdk, x11-libs/xvba-video

2017-01-28 Thread James Le Cuirot
fore that. The proprietary drivers brought me nothing but pain while Mesa was very capable. The main problem with the proprietary drivers is they're tied to older kernels and xorg-server versions and this can't always be patched around. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpWqH_TnyOA4.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] RFC: toolchain.eclass prefix support

2017-01-07 Thread James Le Cuirot
On Sun, 08 Jan 2017 00:07:05 +0900 Benda Xu <hero...@gentoo.org> wrote: > * Define ED and EROOT for EAPI 0, 1 and 2. Why? All the ebuilds using this eclass that I can find are at least EAPI 4. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpalLkoo9wHk.pgp Description: OpenPG

Re: [gentoo-dev] Last rites: x11-libs/gtk+:1

2017-01-07 Thread James Le Cuirot
e April 2001, abandoned > > # in favour of gtk+:2 for 14 years. > > # Masked for removal in 30 days. Bug 604862. > > x11-libs/gtk+:1 > > > > Oh no! > > http://www.xmms.org/graphics/Gaylord.Nelson.waves.byebye.jpg Haha, I remember that. http://web.archive.org/

Re: [gentoo-dev] Packages up for grabs due to retirement

2017-01-01 Thread James Le Cuirot
On Sun, 1 Jan 2017 10:42:51 +0100 Thomas Kahle <to...@gentoo.org> wrote: > On 01/01/2017 00:00, James Le Cuirot wrote: > > On Sat, 31 Dec 2016 22:54:28 +0100 > > Thomas Kahle <to...@gentoo.org> wrote: > > > >> I will retire > > > >

Re: [gentoo-dev] Packages up for grabs due to retirement

2016-12-31 Thread James Le Cuirot
vial package to maintain so I'd rather someone else picked it up. Surely one of you does some OCR? This is the best free software OCR project around. > www-apps/tt-rss I'll take this one. I use it every day. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpdrDJxqyt50.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] [PATCH] toolchain.eclass: set CHOST for gcc-config calls

2016-12-27 Thread James Le Cuirot
in toolchain.eclass though. This is called a Canadian cross. I can't remember if I ever actually tried one but I think your change would still be correct in this case. We don't care about CBUILD in this context. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpd5udVmCqmF.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] Gcc 6 and Gcc 5 update

2016-12-11 Thread James Le Cuirot
ple of times but haven't heard much in the way of a plan as yet. -- James Le Cuirot (chewi) Gentoo Linux Developer pgp6MjkyVjkUD.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] Stabilisation procedure

2016-11-19 Thread James Le Cuirot
e, Shouldn't you set RESTRICT="test" if they're not? > - whether runtime testing is required and what kind of, > > - how likely it is that revdeps need to be checked. These two sound good. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpW1mH1whLbH.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] Use --with-sysroot configure switch when cross-compiling

2016-11-06 Thread James Le Cuirot
On Sun, 6 Nov 2016 11:19:02 +0100 Gerhard Bräunlich <wipp...@gmx.net> wrote: > Dear gentoo devs > In August I reported the following bug: > https://bugs.gentoo.org/show_bug.cgi?id=590404 > James Le Cuirot suggested to automatically use the --with-sysroot > configure switch

Re: [gentoo-dev] [PATCH 2/2] cmake-utils.eclass: export compilers to environment instead of setting in toolchain file, bug 542530

2016-11-04 Thread James Le Cuirot
and > is used to determine system & compiler type. Without this you get > bugs like #503216 I was dubious (since I filed that bug) but I briefly tested by cross-compiling media-libs/openal and it worked. I didn't think to try older CMake versions though. The behaviour might have changed. -- James Le Cuirot (chewi) Gentoo Linux Developer

[gentoo-dev] Last-rites: dev-java/jaffl

2016-10-30 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (30 Oct 2016) # This was renamed by upstream years ago to jnr-ffi, which we have # long had a package for. Removal in 30 days. dev-java/jaffl -- James Le Cuirot (chewi) Gentoo Linux Developer pgpHsYVuJ4ady.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] newsitem: important fstab update

2016-10-25 Thread James Le Cuirot
s, I was wondering why this is a problem now? -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] SRC_URI="gogdownloader://..."

2016-10-04 Thread James Le Cuirot
On Mon, 3 Oct 2016 21:28:48 +0100 James Le Cuirot <ch...@gentoo.org> wrote: > I'll also file a > bug so we can further discuss which avenue to take. Turns out there is already an old bug for this: https://bugs.gentoo.org/show_bug.cgi?id=391439 -- James Le Cuirot (chewi) Gentoo Lin

Re: [gentoo-dev] Re: rfc: the demise of grub:0

2016-10-04 Thread James Le Cuirot
On Tue, 04 Oct 2016 09:45:35 +0200 Jörg Schaible <joerg.schai...@bpm-inspire.com> wrote: > So, what are my options (or other people's options with such > incompatible hardware) without grub 1? Lilo? How about syslinux? -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] SRC_URI="gogdownloader://..."

2016-10-03 Thread James Le Cuirot
On Sun, 2 Oct 2016 22:06:19 -0400 Ian Stakenvicius <a...@gentoo.org> wrote: > On 02/10/16 04:59 PM, James Le Cuirot wrote: > > On Sun, 2 Oct 2016 21:48:04 +0100 > > James Le Cuirot <ch...@gentoo.org> wrote: > > > >> SRC_URI=&q

Re: [gentoo-dev] SRC_URI="gogdownloader://..."

2016-10-02 Thread James Le Cuirot
On Sun, 2 Oct 2016 21:48:04 +0100 James Le Cuirot <ch...@gentoo.org> wrote: > SRC_URI="gogdownloader://tomb_raider_1/en1installer1 -> > setup_tomb_raider_${PV}.exe" IUSE="gogdownloader" > RESTRICT="!gogdownloader? ( fetch ) mirror" > DEPEND

[gentoo-dev] SRC_URI="gogdownloader://..."

2016-10-02 Thread James Le Cuirot
f not, does anyone have an idea for how I could handle this more portably, given that I'm creating /etc/lgogdownloader with root:portage? I'm also looking for a Paludis guinea pig. Other than that, I'm just looking for feedback. Please be kind. This is very much opt-in via the gogdownloader flag so i

Re: [gentoo-dev] The future of elibtoolize

2016-09-27 Thread James Le Cuirot
op of econf() and tried out some packages, including those that had failed on me before. Well whaddya know, it works. I guess I should continue? -- James Le Cuirot (chewi) Gentoo Linux Developer pgpxUHDWO5C0G.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] The future of elibtoolize

2016-09-26 Thread James Le Cuirot
ndeed been 10 years! https://archives.gentoo.org/gentoo-dev/message/caa153de0d23dc264330f5e702f26e58 The solution he preferred back then was to split elibtoolize into its own package and have Portage depend on it. I hadn't considered that and I quite like it too. There was only one brief reply to the

Re: [gentoo-dev] The future of elibtoolize

2016-09-25 Thread James Le Cuirot
> On Tue, 20 Sep 2016 15:32:05 > > Alexis Ballier <aballier@g.o> wrote: > > > On Tue, 20 Sep 2016 16:21:36 +0100 > James Le Cuirot <chewi@g.o> wrote: > > > On Tue, 20 Sep 2016 17:13:50 +0200 > > Alexis Ballier <aballier@g.o> wrote: >

Re: [gentoo-dev] The future of elibtoolize

2016-09-20 Thread James Le Cuirot
On Tue, 20 Sep 2016 17:13:50 +0200 Alexis Ballier <aball...@gentoo.org> wrote: > On Tue, 20 Sep 2016 13:58:32 +0100 > James Le Cuirot <ch...@gentoo.org> wrote: > > > On Tue, 20 Sep 2016 09:15:50 +0200 > > Michał Górny <mgo...@gentoo.org> wrote: > >

Re: [gentoo-dev] The future of elibtoolize

2016-09-20 Thread James Le Cuirot
dev, I did not want to file a whole string of bug reports requesting that elibtoolize be added to loads of ebuilds. -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] questions about small fixes/cleanups

2016-09-14 Thread James Le Cuirot
On Wed, 14 Sep 2016 14:53:18 +0100 James Le Cuirot <ch...@gentoo.org> wrote: > On Wed, 14 Sep 2016 15:50:28 +0200 > Alexis Ballier <aball...@gentoo.org> wrote: > > > > But seriously, once you've googled the repo, you might notice that > > > it's ho

Re: [gentoo-dev] questions about small fixes/cleanups

2016-09-14 Thread James Le Cuirot
> > without modification. > > that might be better, but how do you map date / $PV to commit ? You can't. > remember, we want ebuilds that are as much as possible > version-agnostic, otherwise it breaks simple copy of ebuilds to bump a > version... Ideally yes but this still b

Re: [gentoo-dev] libpcre.so.3 - Compatibility with Debian

2016-08-11 Thread James Le Cuirot
lot worse. Now I don't care for drama and I've got far more important things to give a shit about so fine, I'll concede. Some restraint during our next debate would be appreciated. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpKp6OcyVmGN.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] libpcre.so.3 - Compatibility with Debian

2016-08-11 Thread James Le Cuirot
On Thu, 11 Aug 2016 11:05:00 -0400 Ian Stakenvicius <a...@gentoo.org> wrote: > On 11/08/16 10:57 AM, Mart Raudsepp wrote: > > Ühel kenal päeval, N, 11.08.2016 kell 12:56, kirjutas Ulrich > > Mueller: > >>>>>>> On Thu, 11 Aug 2016, James Le Cuirot wro

Re: [gentoo-dev] libpcre.so.3 - Compatibility with Debian

2016-08-11 Thread James Le Cuirot
at makes it slightly more awkward for binaries you may have installed manually. Can we agree to disagree on this one? It won't affect those who don't need it. Obviously if anything blows up, I'll take full responsibility. -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] libpcre.so.3 - Compatibility with Debian

2016-08-11 Thread James Le Cuirot
On Thu, 11 Aug 2016 11:43:41 +0200 Ulrich Mueller <u...@gentoo.org> wrote: > >>>>> On Thu, 11 Aug 2016, James Le Cuirot wrote: > > > We, like almost everyone else and presumably upstream, install PCRE > > 8 as libpcre.so.1. Debian, for reason

[gentoo-dev] libpcre.so.3 - Compatibility with Debian

2016-08-10 Thread James Le Cuirot
y separate library. I could create a Steam-specific package for this but that would mean adding some additional Steam-specific location to ld.so.conf, which I'm trying to avoid. It would be nice to solve this generally anyway. Thoughts? -- James Le Cuirot (chewi) Gentoo Linux Developer pgpLo5h

Re: [gentoo-dev] Asking for permission to update packages from LINGUAS to L10N

2016-08-10 Thread James Le Cuirot
optional language packs that require additional downloads. The eclass can't help you there. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpDCFYtFsniy.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] rfc: turning off grub2 multislot use flag

2016-08-07 Thread James Le Cuirot
he difference between us and Debian kept catching me out. Fedora still calls it grub2 but hey, so what. ;) -- James Le Cuirot (chewi) Gentoo Linux Developer pgpfE4B6GehpZ.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] [RFC] new eselect module: compiler

2016-08-06 Thread James Le Cuirot
ow how practical is it to swap "cc" with something other than gcc as I've never tried clang. -- James Le Cuirot (chewi) Gentoo Linux Developer pgprP067hVCkX.pgp Description: OpenPGP digital signature

[gentoo-dev] Last-rites: dev-java/cacao

2016-06-22 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (22 Jun 2016) # Not practical as a system JVM and you'd be better off with # IcedTea. In-tree version is ancient. java-overlay version is newer # but not the latest. It can't be moved to the tree because # gnu-classpath-0.99 has packaging issues. Removal

Re: [gentoo-dev] [RFC] bugs.g.o: Killing VERIFIED state, possibly introducing STABILIZED

2016-06-16 Thread James Le Cuirot
set InVCS for pending-stable fixes in conjunction with the IN_PROGRESS state. I would like to keep InVCS at least. -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] [RFC] Global USE=gui

2016-06-07 Thread James Le Cuirot
On Tue, 7 Jun 2016 13:23:49 +0200 Alexander Berntsen <berna...@gentoo.org> wrote: > On 07/06/16 11:27, James Le Cuirot wrote: > > > Some packages require qt5 unconditionally, is that bad too? > > It is if the requirement isn't made explicit. What does that mea

Re: [gentoo-dev] [RFC] Global USE=gui

2016-06-07 Thread James Le Cuirot
abled. Some packages require qt5 unconditionally, is that bad too? I'm not saying I like this, I'm indifferent at best, but it does makes some sense. -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] Re: [RFC] Masterplan for solving LINGUAS problems

2016-05-31 Thread James Le Cuirot
On Tue, 31 May 2016 23:34:07 +0200 Jörg Schaible <joerg.schai...@gmx.de> wrote: > How can I select different linguas for individual packages with this > approach? You could probably set INSTALL_MASK and L10N via /etc/portage/package.env. -- James Le Cuirot (chewi) Gentoo Lin

Re: [gentoo-dev] Package up for grabs

2016-05-22 Thread James Le Cuirot
On Sun, 22 May 2016 21:52:02 +0200 Pacho Ramos <pa...@gentoo.org> wrote: > dev-libs/angelscript I'll take this if no one else wants it. I'm planning on joining the games team at some point and it's used by at least one game I was packaging way back. -- James Le Cuirot (chewi) Gen

Re: [gentoo-dev] [PATCH] ebuild-writing/variables: better describe ROOT

2016-05-10 Thread James Le Cuirot
ing EPREFIX into the mix. ROOT=/mnt/foo EPREFIX=/bar emerge app-shells/dash I'm less familiar with prefixed systems and I think very few people mix EPREFIX with ROOT but I try to do right by both. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpkqlujcdRBQ.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] [PATCH] l10n.eclass: Sort and normalize PLOCALES in l10n_find_plocales_change

2016-05-08 Thread James Le Cuirot
On Sun, 8 May 2016 11:20:34 -0400 Michael Orlitzky <m...@gentoo.org> wrote: > On 05/07/2016 04:13 PM, James Le Cuirot wrote: > > > > + if [[ $(tr -s "[:space:]" "\n" <<< "${PLOCALES}" | sort | > > xargs echo) != ${current%[[:spa

Re: [gentoo-dev] [PATCH] l10n.eclass: Sort and normalize PLOCALES in l10n_find_plocales_change

2016-05-07 Thread James Le Cuirot
On Sat, 7 May 2016 23:13:11 +0200 Davide Pesavento <p...@gentoo.org> wrote: > On Sat, May 7, 2016 at 10:13 PM, James Le Cuirot <ch...@gentoo.org> > wrote: > > l10n_find_plocales_change assumes that PLOCALES is sorted > > alphanumerically with a s

[gentoo-dev] [PATCH] l10n.eclass: Sort and normalize PLOCALES in l10n_find_plocales_change

2016-05-07 Thread James Le Cuirot
l10n_find_plocales_change assumes that PLOCALES is sorted alphanumerically with a single space between each entry and no surrounding whitespace. This is not a bad assumption but it isn't documented and it's inconvenient in at least one particular case. MakeMKV uses non-standard locale names and I

[gentoo-dev] Last-rites: net-p2p/yaggui

2016-04-27 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (27 Apr 2016) # Very very dead upstream and probably doesn't work any more like # similar clients. Removal in 30 days. net-p2p/yaggui -- James Le Cuirot (chewi) Gentoo Linux Developer pgp3vNuw5jtZz.pgp Description: OpenPGP digital signature

[gentoo-dev] Last-rites: dev-java/{charva,jakarta-slide-webdavclient,xml-im-exporter}

2016-04-25 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (25 Apr 2016) # Long dead upstream and no longer needed. Removal in 30 days. dev-java/charva dev-java/jakarta-slide-webdavclient dev-java/xml-im-exporter -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] CVS headers in ebuilds

2016-04-10 Thread James Le Cuirot
this feature in a different context. You could add the packages you do care about to the sparse checkout list. http://stackoverflow.com/questions/600079/is-there-any-way-to-clone-a-git-repositorys-sub-directory-only/13738951#13738951 -- James Le Cuirot (chewi) Gentoo Linux Developer pgprLYJIC7D0v.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] usr merge

2016-04-10 Thread James Le Cuirot
tion password once. Both Dracut and > Genkernel insist on asking for the password/key for every single disk. Dracut on RHEL actually handles this out of the box. Might be worth finding out how. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpwkCLInTFjv.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] usr merge

2016-04-09 Thread James Le Cuirot
ion, you don't even need to specify it. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpyPYehoZmgo.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] usr merge

2016-04-08 Thread James Le Cuirot
t; debian has switched to systemd and yet has not merged usr. Not that I'm for or against the merge but note that openSUSE, which has also switched to systemd, hasn't done the merge either. -- James Le Cuirot (chewi) Gentoo Linux Developer

Re: [gentoo-dev] usr merge

2016-04-06 Thread James Le Cuirot
tarted as Fedora 16 and has been upgraded step by step to 23. /bin, /lib, /lib64, and /sbin are symlinks but I'm pretty sure it didn't start out that way. I knew the change was coming but when it actually happened, I didn't notice for quite a while. -- James Le Cuirot (chewi) Gentoo Linux Developer

[gentoo-dev] Last-rites: dev-java/java-config-wrapper

2016-04-03 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (03 Apr 2016) # Legacy migration package that is no longer needed. See # bug #549508. Removal in 30 days. dev-java/java-config-wrapper -- James Le Cuirot (chewi) Gentoo Linux Developer pgpcejKQSNaW0.pgp Description: OpenPGP digital signature

[gentoo-dev] Last-rites: Java 6 VMs (including ibm-{jdk,jre}-bin)

2016-03-15 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (14 Mar 2016) # Bye bye Java 6! If you really still need it then gnu_andrew will # continue to maintain icedtea:6 in java-overlay but it is not # supported by Java team at all. IBM's JVM is still alive but # downloads are behind a registration wall an

[gentoo-dev] Last-rites: dev-dotnet/ikvm, dev-java/jcharts

2016-03-15 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (14 Mar 2016) # Our old ebuilds require Java 6/7 and are most likely # vulnerable. Upstream has a new version targeting Java 8 but no # response from dotnet team. I am leaving ikvm-bin alone but only # because it doesn't require Java. Removal in 30 day

[gentoo-dev] Last-rites: sci-biology/readseq

2016-02-29 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (29 Feb 2016) # Dead upstream and doesn't build with Java 8. Removal in 30 days. sci-biology/readseq -- James Le Cuirot (chewi) Gentoo Linux Developer pgpTFMwxmGcFo.pgp Description: OpenPGP digital signature

[gentoo-dev] Last-rites: dev-java/xsd2jibx

2016-02-21 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (21 Feb 2016) # No revdeps, no release since 2007, and upstream have even moved the # download to a hidden OldFiles directory in the parent SourceForge # project. Removal in 30 days. dev-java/xsd2jibx -- James Le Cuirot (chewi) Gentoo Linux Dev

[gentoo-dev] Last-rites: www-servers/tomcat:6

2016-02-19 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (19 Feb 2016) # Upstream EOL is December 2016. We would rather focus on other things # than support it until then. Removal in 30 days. www-servers/tomcat:6 -- James Le Cuirot (chewi) Gentoo Linux Developer pgpMAPTXX77Xh.pgp Description: OpenPGP d

Re: [gentoo-dev] Re: rfc: Does OpenRC really need mount-ro

2016-02-18 Thread James Le Cuirot
> are optional. Does Dracut's hostonly mode not count? I think this is even the default as I don't specify it here and I had to temporarily force non-hostonly mode on Fedora in order to fix a broken system. I certainly keep my Gentoo kernel configuration to a minimum. -- James Le Cuirot (c

Re: [gentoo-dev] Re: rfc: Does OpenRC really need mount-ro

2016-02-17 Thread James Le Cuirot
initrd for a while but that was still quite a manual process and I couldn't imagine going back to it now. I've switched to Dracut and it's great but I don't get the impression that Gentoo really endorses that option over the more laborious ones. Maybe it should? https://wiki.gentoo.org/wiki/Initramfs -- Jame

Re: [gentoo-dev] rfc: supervise-daemon -- a lightweight openrc daemon supervisor

2016-02-16 Thread James Le Cuirot
in the first place but I'd forgotten about it since. Now I feel dumb. As you were then. You're doing great work and we're clearly spoilt for choice. :) -- James Le Cuirot (chewi) Gentoo Linux Developer pgpq_TKG59Wui.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] rfc: supervise-daemon -- a lightweight openrc daemon supervisor

2016-02-16 Thread James Le Cuirot
ght even make more sense to reuse one of these instead of reinventing the wheel. They are both extremely lightweight. If you feel you can do better though then go for it! Regards, -- James Le Cuirot (chewi) Gentoo Linux Developer pgp9qOD_XNjkz.pgp Description: OpenPGP digital signature

Re: [gentoo-dev] New USE_EXPAND NGINX_MODULES_STREAM

2016-02-08 Thread James Le Cuirot
default things > that people appear to always want easily ) nginx is monolithic, if a package per module is what you meant. -- James Le Cuirot (chewi) Gentoo Linux Developer pgpE9dsaaBLZp.pgp Description: OpenPGP digital signature

[gentoo-dev] Last rites: sci-biology/{biojava,mauve,mauvealigner}

2016-02-07 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (07 Feb 2016) # BioJava depends on commons-dbcp:0, which requires Java 6. Even the # latest "legacy" version 1.9.1 does so and no one wants to do the # difficult bump to 4.1.0. Mauve depends on BioJava but being a very # outdated live SVN ebu

[gentoo-dev] Last rites: dev-java/{concurrent-util,dsiutils,sux4j}

2016-02-03 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (03 Feb 2016) # Built into Java since 1.5. Ancient and doesn't build with # Java 8. Removal in 30 days. See bug #544038. dev-java/concurrent-util # James Le Cuirot <ch...@gentoo.org> (03 Feb 2016) # Old, unused, broken on Java 7 and up. These are

[gentoo-dev] Last rites: app-eselect/eselect-maven

2016-01-26 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (26 Jan 2016) # Now part of eselect-java. Removal in 30 days. app-eselect/eselect-maven -- James Le Cuirot (chewi) Gentoo Linux Developer pgp61k0Nno5iP.pgp Description: OpenPGP digital signature

[gentoo-dev] Last rites: app-cdr/webcdwriter

2016-01-26 Thread James Le Cuirot
# James Le Cuirot <ch...@gentoo.org> (26 Jan 2016) # No new release since 2008. Removal in 30 days. app-cdr/webcdwriter -- James Le Cuirot (chewi) Gentoo Linux Developer pgpk42l6SqYNs.pgp Description: OpenPGP digital signature

<    1   2   3   4   5   >