Re: [gentoo-dev] [PATCH] cargo.eclass: Add cargo_target_dir helper function

2024-06-15 Thread James Le Cuirot
On Sat, 2024-06-15 at 17:56 -0400, Ionen Wolkens wrote: > On Sat, Jun 15, 2024 at 08:14:34PM +0200, Florian Schmaus wrote: > > On 13/06/2024 17.03, James Le Cuirot wrote: > > > Several Cargo-based ebuilds cannot use cargo_src_install for various > > > reasons and manually install binaries from with

Re: [gentoo-dev] [PATCH] cargo.eclass: Add cargo_target_dir helper function

2024-06-15 Thread Ionen Wolkens
On Sat, Jun 15, 2024 at 08:14:34PM +0200, Florian Schmaus wrote: > On 13/06/2024 17.03, James Le Cuirot wrote: > > Several Cargo-based ebuilds cannot use cargo_src_install for various > > reasons and manually install binaries from within the target directory > > instead. It is common to see `target

Re: [gentoo-dev] [PATCH] cargo.eclass: Add cargo_target_dir helper function

2024-06-15 Thread Lucio Sauer
On Fri, Jun 14, 2024 at 02:54:47PM +0100, James Le Cuirot wrote: > On Thu, 2024-06-13 at 21:32 +, Lucio Sauer wrote: > > On Thu, Jun 13, 2024 at 04:03:44PM +0100, James Le Cuirot wrote: > > > Several Cargo-based ebuilds cannot use cargo_src_install for various > > > reasons and manually install

Re: [gentoo-dev] [PATCH] cargo.eclass: Add cargo_target_dir helper function

2024-06-15 Thread Florian Schmaus
On 13/06/2024 17.03, James Le Cuirot wrote: Several Cargo-based ebuilds cannot use cargo_src_install for various reasons and manually install binaries from within the target directory instead. It is common to see `target/$(usex debug debug release)`, but this lacks the target ABI when cross-compi

[gentoo-dev] Last rites: net-print/kyocera-1x2x-mfp-driver

2024-06-15 Thread Arthur Zamarin
# Arthur Zamarin (2024-06-15) # EAPI=6, fetch restricted, and the file not available to download # any more. # Removal on 2024-07-15. Bug #934368. net-print/kyocera-1x2x-mfp-driver OpenPGP_signature.asc Description: OpenPGP digital signature

[gentoo-dev] Last rites: sci-astronomy/predict

2024-06-15 Thread Arthur Zamarin
# Arthur Zamarin (2024-06-15) # EAPI=6, no reverse dependencies, not packaged on other distributions, # waiting for a version bump (which is hard since ebuild used debian # patches). Not really maintained in Gentoo for a long time. # Removal on 2024-07-15. Bugs #934366, #871378, #716084, #924302.

[gentoo-dev] Last rites: sci-chemistry/xds-bin

2024-06-15 Thread Arthur Zamarin
# Arthur Zamarin (2024-06-15) # EAPI=6, no reverse dependencies, manifest doesn't match upstream. # Removal on 2024-07-15. Bugs #934365, #832746. sci-chemistry/xds-bin OpenPGP_signature.asc Description: OpenPGP digital signature

[gentoo-dev] [PATCH v2] cargo.eclass: Add cargo_target_dir helper function

2024-06-15 Thread James Le Cuirot
Several Cargo-based ebuilds cannot use cargo_src_install for various reasons and manually install binaries from within the target directory instead. It is common to see `target/$(usex debug debug release)`, but this lacks the target ABI when cross-compiling, so provide a helper function. There are