Re: [gentoo-dev] [PATCH 4/7] cargo.eclass: set progress.when = "never" in config

2023-02-09 Thread Michał Górny
On Thu, 2023-02-09 at 12:48 -0800, Georgy Yakovlev wrote: > to avoid possible log file pollution > > Signed-off-by: Georgy Yakovlev > --- > eclass/cargo.eclass | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass > index 9c624d607cdd..0ab7ee0dc9b2 1

Re: [gentoo-dev] [PATCH 5/7] cargo.eclass: use custom profile for all builds

2023-02-09 Thread Ionen Wolkens
On Thu, Feb 09, 2023 at 12:48:45PM -0800, Georgy Yakovlev wrote: > + strip = "none" strip was stabilized in rust-1.59, this will likely fail without USE=nightly on older rusts and other patch is only setting >=1.57 Haven't checked other options, I just happened to remember this one. -- ionen

[gentoo-dev] [PATCH 6/7] cargo.eclass: set codegen-units = 1

2023-02-09 Thread Georgy Yakovlev
This might increase build and lto times a bit, but may result in faster and better optimized result. It also honors resource limits properly. Signed-off-by: Georgy Yakovlev --- eclass/cargo.eclass | 5 + 1 file changed, 5 insertions(+) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass

[gentoo-dev] [PATCH 5/7] cargo.eclass: use custom profile for all builds

2023-02-09 Thread Georgy Yakovlev
also move install path to config file, so it can be overriden via command line arg if required. Signed-off-by: Georgy Yakovlev --- eclass/cargo.eclass | 33 ++--- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass

[gentoo-dev] [PATCH 4/7] cargo.eclass: set progress.when = "never" in config

2023-02-09 Thread Georgy Yakovlev
to avoid possible log file pollution Signed-off-by: Georgy Yakovlev --- eclass/cargo.eclass | 1 + 1 file changed, 1 insertion(+) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass index 9c624d607cdd..0ab7ee0dc9b2 100644 --- a/eclass/cargo.eclass +++ b/eclass/cargo.eclass @@ -273,6 +273,7 @

[gentoo-dev] [PATCH 7/7] cargo.eclass: filter out lto flags for C/CXX compilers

2023-02-09 Thread Georgy Yakovlev
we do it in src_compile to avoid excessive flag stripping in projects using cargo.eclass just to fetch crates. Closes: https://bugs.gentoo.org/893658 Signed-off-by: Georgy Yakovlev --- eclass/cargo.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclass/cargo.eclass b

[gentoo-dev] [PATCH 3/7] cargo.eclass: document undocumented variables, mark as readonly

2023-02-09 Thread Georgy Yakovlev
Signed-off-by: Georgy Yakovlev --- eclass/cargo.eclass | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass index 1a8d665fdad2..9c624d607cdd 100644 --- a/eclass/cargo.eclass +++ b/eclass/cargo.eclass @@ -58,8 +58,15 @@ fi IUS

[gentoo-dev] [PATCH 2/7] cargo.eclass: pass --no-track to cargo install

2023-02-09 Thread Georgy Yakovlev
and drop file removal hack. with --no-track those files are never created. Signed-off-by: Georgy Yakovlev --- eclass/cargo.eclass | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass index d37293ada136..1a8d665fdad2 100644 --- a/eclass/

[gentoo-dev] [PATCH 1/7] cargo.eclass: bump minimum rust to 1.57.0

2023-02-09 Thread Georgy Yakovlev
and mark RUST_DEPEND as readonly Signed-off-by: Georgy Yakovlev --- eclass/cargo.eclass | 28 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass index a92fe97ec502..d37293ada136 100644 --- a/eclass/cargo.eclass +

[gentoo-dev] cargo.eclass improvements

2023-02-09 Thread Georgy Yakovlev
Series of patches to cargo.eclass most important chages are: 1. minimum rust/cargo version bump, which will propogate to all consumers. 2. introduction of custom build profile (similar to what we do in Cmake) This will allow to consistently specify build options, yeat allows overrides from users

Re: [gentoo-dev] [PATCH] toolchain.eclass: Register the D tc_feature

2023-02-09 Thread Sam James
> On 9 Feb 2023, at 20:04, Arsen Arsenović wrote: > > This behavior is relied on elsewhere, for setting BDEPENDs correctly. > > Signed-off-by: Arsen Arsenović > --- > Hi there, > > I was trying to merge GDC, and noticed that the non-selfhost BDEPEND is > missing for GCC 13. Specifically, th

[gentoo-dev] [PATCH] toolchain.eclass: Register the D tc_feature

2023-02-09 Thread Arsen Arsenović
This behavior is relied on elsewhere, for setting BDEPENDs correctly. Signed-off-by: Arsen Arsenović --- Hi there, I was trying to merge GDC, and noticed that the non-selfhost BDEPEND is missing for GCC 13. Specifically, the following block was never enterred: # TODO: Add a pkg_setup & pkg_p

[gentoo-dev] Eclass for nodejs

2023-02-09 Thread Desarrollos WEB
Hi, I am creating an eclass for nodejs using in my overlay for the ebuilds of zigbee2mqtt and pm2 I have started from several similar classes to make the eclass I've set it up to use ebuilds with /packages like sys-apps/yarn and dev-lang/typescript and also with ebuilds that pre-download the G

Re: [gentoo-dev] Putting CC and CXX into make.conf

2023-02-09 Thread James Le Cuirot
On Thu, 2023-02-09 at 14:03 +0100, Michał Górny wrote: > Hi, > > I'd like to propose that we work towards having good defaults for CC > and CXX variables in make.conf files. Something like: > > CC=${CHOST}-gcc > CXX=${CHOST}-g++ > > or: > > CC=${CHOST}-cc > CXX=${CHOST}-c++ > > Why? >

[gentoo-dev] Putting CC and CXX into make.conf

2023-02-09 Thread Michał Górny
Hi, I'd like to propose that we work towards having good defaults for CC and CXX variables in make.conf files. Something like: CC=${CHOST}-gcc CXX=${CHOST}-g++ or: CC=${CHOST}-cc CXX=${CHOST}-c++ Why? Right now we're pretty much relying on autoconf defaults: if CC/CXX is unset, autoc