Re: [gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS

2015-06-11 Thread Mike Frysinger
On 11 Jun 2015 00:21, Brian Dolbec wrote: On Sat, 30 May 2015 10:36:05 -0400 Mike Frysinger wrote: so if we're happy with this implementation, i'll start a thread on gentoo-dev so people aren't caught by surprise, and we can merge this for the next release. -mike So, what's the status of

Re: [gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS

2015-06-11 Thread Brian Dolbec
On Sat, 30 May 2015 10:36:05 -0400 Mike Frysinger vap...@gentoo.org wrote: so if we're happy with this implementation, i'll start a thread on gentoo-dev so people aren't caught by surprise, and we can merge this for the next release. -mike So, what's the status of this one? I don't recall

Re: [gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS

2015-05-30 Thread Zac Medico
On 05/30/2015 07:36 AM, Mike Frysinger wrote: On 26 May 2015 08:58, Zac Medico wrote: On 05/26/2015 07:24 AM, Mike Frysinger wrote: + # Only check on 32-bit systems. Filtering by $ARCH here isn't perfect, but + # it should be good enough for our needs. + case ${ARCH} in +

Re: [gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS

2015-05-30 Thread Mike Frysinger
On 30 May 2015 11:22, Zac Medico wrote: On 05/30/2015 07:36 AM, Mike Frysinger wrote: On 26 May 2015 08:58, Zac Medico wrote: On 05/26/2015 07:24 AM, Mike Frysinger wrote: + # Only check on 32-bit systems. Filtering by $ARCH here isn't perfect, but + # it should be good enough for our

Re: [gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS

2015-05-30 Thread Mike Frysinger
On 26 May 2015 08:58, Zac Medico wrote: On 05/26/2015 07:24 AM, Mike Frysinger wrote: + # Only check on 32-bit systems. Filtering by $ARCH here isn't perfect, but + # it should be good enough for our needs. + case ${ARCH} in + arm|mips|ppc|sh|x86) ;; + *) return ;; +

Re: [gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS

2015-05-26 Thread Zac Medico
On 05/26/2015 08:58 AM, Zac Medico wrote: On 05/26/2015 07:24 AM, Mike Frysinger wrote: +# Only check on 32-bit systems. Filtering by $ARCH here isn't perfect, but +# it should be good enough for our needs. +case ${ARCH} in +arm|mips|ppc|sh|x86) ;; +*) return ;; +

Re: [gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS

2015-05-26 Thread Zac Medico
On 05/26/2015 07:24 AM, Mike Frysinger wrote: + # Only check on 32-bit systems. Filtering by $ARCH here isn't perfect, but + # it should be good enough for our needs. + case ${ARCH} in + arm|mips|ppc|sh|x86) ;; + *) return ;; + esac Shouldn't we also enable this

[gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS

2015-05-26 Thread Mike Frysinger
From: Mike Frysinger vap...@chromium.org Start issuing QA warnings when ELFs are installed using the old 32bit file interface. These programs can fail out right: * working with large files (more than 2GiB) can return EOVERFLOW * stating files on large filesystems w/64bit inodes can fail too It