From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id yDp7DglDk19+bwAA0tVLHw (envelope-from ) for ; Fri, 23 Oct 2020 20:54:33 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id QFRNCglDk18KKgAAB5/wlQ (envelope-from ) for ; Fri, 23 Oct 2020 20:54:33 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id E9A579400C7 for ; Fri, 23 Oct 2020 20:54:32 +0000 (UTC) Received: from localhost ([::1]:57248 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kW451-0005Ps-J9 for larch@yhetil.org; Fri, 23 Oct 2020 16:54:31 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:46408) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kW44k-0005Pl-MB for guix-devel@gnu.org; Fri, 23 Oct 2020 16:54:14 -0400 Received: from m4s11.vlinux.de ([83.151.27.109]:56368 helo=bjoernhoefling.de) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kW44i-0000QK-Se for guix-devel@gnu.org; Fri, 23 Oct 2020 16:54:14 -0400 Received: from alma-ubu (p508ac37e.dip0.t-ipconnect.de [80.138.195.126]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by bjoernhoefling.de (Postfix) with ESMTPSA id BE5703F84B; Fri, 23 Oct 2020 22:54:08 +0200 (CEST) Date: Fri, 23 Oct 2020 22:54:07 +0200 From: =?UTF-8?B?QmrDtnJuIEjDtmZsaW5n?= To: Julien Lepiller Subject: Re: Testing the maven build system: Symlink error on duplicate inputs Message-ID: <20201023225408.16f64035@alma-ubu> In-Reply-To: <96845022-97FD-4F69-9C3B-39144BD68C7F@lepiller.eu> References: <20200920105555.7a95f05f@alma-ubu> <96845022-97FD-4F69-9C3B-39144BD68C7F@lepiller.eu> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/TtgfVeT3zcF5rec4FLWR.98"; protocol="application/pgp-signature" Received-SPF: none client-ip=83.151.27.109; envelope-from=bjoern.hoefling@bjoernhoefling.de; helo=bjoernhoefling.de X-detected-operating-system: by eggs.gnu.org: First seen = 2020/10/23 16:54:09 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -15 X-Spam_score: -1.6 X-Spam_bar: - X-Spam_report: (-1.6 / 5.0 requ) BAYES_00=-1.9, KHOP_HELO_FCRDNS=0.276, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: guix-devel Errors-To: guix-devel-bounces+larch=yhetil.org@gnu.org Sender: "Guix-devel" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of guix-devel-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-devel-bounces@gnu.org X-Spam-Score: 0.89 X-TUID: /gkND1i+t3p9 --Sig_/TtgfVeT3zcF5rec4FLWR.98 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Sun, 20 Sep 2020 07:35:44 -0400 Julien Lepiller wrote: > >Does someone have plans to add real-world packages that make use of > >the maven-build-system? Next, an automated importer with > >dependency-resolution would be nice :-) =20 >=20 > The issue with the importer is that maven doesn't record source > information. We could have dependency resolution, but the resulting > packages will lack any source (and for most packages also homepage > and description). >=20 > One thing we have to decide on is what to do with maven build > dependencies. Currently, things like test dependencies of > dependencies are in the graph below maven, which means we have a lot > of packages that cannot use the maven-build-system. >=20 > There are two possibilities: we can change the bootstrap path to > maven to be minimal and only include runtime dependencies, and > eventually rebuild maven with the maven-build-system. The other > possibility is to keep it as is, and convert packages to install to > lib/m2 as needed. >=20 > I tend to prefer the first solution, but that's also a lot of work. > Our current maven package has bugs that are probably due to the way > we build it (it doesn't honor user config, the build and test targets > are mixed together, so are dependencies=E2=80=A6). Building a proper maven > with a minimal maven could help ensure it's built in the intended > way, so these bugs could go away. >=20 > wdyt? I think the former is much more work but cleaner and would worth it. Bj=C3=B6rn --Sig_/TtgfVeT3zcF5rec4FLWR.98 Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iF0EAREKAB0WIQQiGUP0np8nb5SZM4K/KGy2WT5f/QUCX5NC8AAKCRC/KGy2WT5f /dETAJ9ZszwkxFhp5qGxsD3fcLGOYq5eTgCePtcpZJwuXMLXnmXbXVe1AW/UIkg= =96o8 -----END PGP SIGNATURE----- --Sig_/TtgfVeT3zcF5rec4FLWR.98--