From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 18 13:29:48 2022 Received: (at 32947) by debbugs.gnu.org; 18 Mar 2022 17:29:49 +0000 Received: from localhost ([127.0.0.1]:58309 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nVGQ8-0005gH-LC for submit@debbugs.gnu.org; Fri, 18 Mar 2022 13:29:48 -0400 Received: from mail-pl1-f180.google.com ([209.85.214.180]:45830) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nVGQ7-0005g6-CT for 32947@debbugs.gnu.org; Fri, 18 Mar 2022 13:29:47 -0400 Received: by mail-pl1-f180.google.com with SMTP id k6so322128plg.12 for <32947@debbugs.gnu.org>; Fri, 18 Mar 2022 10:29:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:subject:date:message-id:mime-version; bh=v1ABob+hPs+yp2C59Uj+50QwrYfoP3V/LmhznVIGd5I=; b=Iz9xl6q/6qqU71bZSHgDGYiVZhclLv1tIo83S+hzsKJ5E5l8gHGCYVduQABKx30lNx 5/bvRMVtz2HYdxpFjb0seOaCY0QOmdU3NkcgJx0kJ7A6cgJXNMAQb8dgZLKKLQTCVHBy eqpRvD9aobZNT1Ono6wwzm5PBlEc+ERnDekXDkx8PFT+urohVcPunjUmskDIva3AHSkk FdPjTyZWHAdl9Cp8vcg7sYoRjMSi9RgVb5XWcLpnWpN4QJEQPTJXLIE+C7F2UjjAZCC6 5Xoq3gzWkU3nJQVXa4vdXqTAoZty3Ywsrf+SwtcGJHQnEimFROn1rq/WhI1m1IVJ6Olh k7+g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id:mime-version; bh=v1ABob+hPs+yp2C59Uj+50QwrYfoP3V/LmhznVIGd5I=; b=ORvTeyAyvKhqluxbfilQFU9MWSxbhHMrFWMCUyEAGLNWn4iHLyy0aeweEHbonnEWEB kF1rRKWkSQ1E5aOaDf2VhMVtpwxsZD/oM2KYDCKdVO8hQvmfSE4q8sfRMHBLndhMQsgk KN+g9ebq25prUi0m65y1nUjAN7vXpxOLP1haez6h2/tvCSBCz9Z89oxRG77Fo9iVu+nN r4qyN3h/IEKoSA4y4P/R0qCP3vmCkd7MQucMu6prDjsI6a5fe9VZqQ+EqdBY9jt7nqZb NF7b9u32L5/CEKv+bvC0O21aTU22c9hZRQeHYxvZ/VrEWx4rnjZLyvi6dg2UooBMr8aG TYsQ== X-Gm-Message-State: AOAM532L15SioaXG9K2qnQIGlJnrJcFcYv4TDCZLiSeoW1/0EcZw2lXR Sm+pTfTWcqEYNj7rPCU4nUE= X-Google-Smtp-Source: ABdhPJx19q5dkbMv8yLpaBvlWlixSvVTBo+lie7DkV8zaMyKskwi/BjNCHEZA2bPVlBMCfYXmf94LQ== X-Received: by 2002:a17:90b:4a44:b0:1bf:8deb:9435 with SMTP id lb4-20020a17090b4a4400b001bf8deb9435mr23282349pjb.16.1647624581259; Fri, 18 Mar 2022 10:29:41 -0700 (PDT) Received: from Ginko.local ([66.170.190.211]) by smtp.gmail.com with ESMTPSA id ay5-20020a056a00300500b004f6d510af4asm9150966pfb.124.2022.03.18.10.29.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 18 Mar 2022 10:29:40 -0700 (PDT) From: Frank Pursel X-Google-Original-From: Frank Pursel To: 32947@debbugs.gnu.org Subject: Re: [bug#32947] Add java-xalan. Date: Fri, 18 Mar 2022 10:29:37 -0700 Message-ID: <87y217many.fsf@Ginko.local.i-did-not-set--mail-host-address--so-tickle-me> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 32947 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) No, I don't think generate-jar-indices is broken. The problem is that the xalan build is dependent on xml-apis.jar which guix has broken out into pieces that are split between the guix builds of xerces and jaxp. The index fails because it looks for all the requirements specified in the manifest which now must identify xerces and jaxp. So, those jars (jaxp and xerces) now need to be brought over into the outputs(out) directory to allow the indexing to succeed. I don't know if the symlinks are required after completion of the indexing but saw no harm in it since we need to propagate those inputs anyway or else xalan will not be able to find all it's dependencies when called. I was pleased to be able to find all the xml-apis requirements already provided by the guix builds of xerces and jaxp. Regards, Frank