[gentoo-user] Re: EAPI-6 dev-python ebuilds

2016-03-24 Thread Martin Vaeth
James wrote: > > works for a specific file, but I want to parse the entire /dev-python > portion of the portage tree. Is there a more robust tool? eix -c --eapi 6 --and -C dev-python

[gentoo-user] Re: EAPI-6 dev-python ebuilds

2016-03-23 Thread James
Michael Orlitzky gentoo.org> writes: > > grep -r -l --include="*.ebuild" "EAPI=6" . > There's a chicken-and-egg problem with storing the EAPI in a variable > within the ebuild whose EAPI you need to know to parse the ebuild that > contains the EAPI variable whose value you need before you can

Re: [gentoo-user] Re: EAPI-6 dev-python ebuilds

2016-03-23 Thread Michael Orlitzky
On 03/22/2016 09:34 PM, Jonathan Callen wrote: > > For future reference, this would be a bit more efficient: > > grep -r -l --include="*.ebuild" "EAPI=6" . > > This way, grep only looks at the files you want to search anyway. > There's a chicken-and-egg problem with storing the EAPI in a

[gentoo-user] Re: EAPI-6 dev-python ebuilds

2016-03-22 Thread Jonathan Callen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 03/21/2016 01:31 PM, James wrote: > David M. Fellows unb.ca> writes: > > >> grep -r -l "EAPI=5" * |grep 'ebuild$' > > grep -r -l "EAPI=6" * |grep 'ebuild$' > > > yep, it works just fine. sorry for being a bit brain-dead this > am... > > >

[gentoo-user] Re: EAPI-6 dev-python ebuilds

2016-03-21 Thread James
David M. Fellows unb.ca> writes: > grep -r -l "EAPI=5" * |grep 'ebuild$' grep -r -l "EAPI=6" * |grep 'ebuild$' yep, it works just fine. sorry for being a bit brain-dead this am... thx, James