From nobody Sun Sep 26 13:39:53 2021 X-Original-To: ports-bugs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 9A0D117D92F4 for ; Sun, 26 Sep 2021 13:39:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HHRhp3rz8z4QlB for ; Sun, 26 Sep 2021 13:39:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 64B911E8A9 for ; Sun, 26 Sep 2021 13:39:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 18QDdsx4096162 for ; Sun, 26 Sep 2021 13:39:54 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 18QDds1X096161 for ports-bugs@FreeBSD.org; Sun, 26 Sep 2021 13:39:54 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 242345] audio/logitechmediaserver : Update to version 8.0.0, 8.1.0 Date: Sun, 26 Sep 2021 13:39:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: buildisok X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: hans@soonieus.nl X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ports-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated List-Id: Ports bug reports List-Archive: https://lists.freebsd.org/archives/freebsd-ports-bugs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-ports-bugs@freebsd.org X-BeenThere: freebsd-ports-bugs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D242345 --- Comment #20 from Hans Soonieus --- (In reply to David Z. from comment #19) Hello David, This seems to be a warning specific to poudriere. If the build completes without error than the arch determination works because if it didn't then t= he build would fail with an error like this : cd: /usr/home/hans/logitechmediaserver-8.2.1/work/slimserver-vendor-1a6dc71/CPA= N/build/arch/5.32/nonesense: No such file or directory *** Error code 2 Stop. make[1]: stopped in /usr/home/hans/logitechmediaserver-8.2.1 *** Error code 1 Stop. make: stopped in /usr/home/hans/logitechmediaserver-8.2.1 In Makefile line 87 and 88 the perl archname is determined and put in a variable ARCHNAME which is later (from line 102) used to copy files from the slimserver-vendor work directory to the staging directory. Originally this was done like this : .if ${ARCH} =3D=3D "i386" ARCHNAME=3D i386-freebsd-thread-multi-64int PLIST_SUB+=3D I386_ONLY=3D"" .else PLIST_SUB+=3D I386_ONLY=3D"@comment " .endif .if ${ARCH} =3D=3D "amd64" ARCHNAME=3D amd64-freebsd-thread-multi PLIST_SUB+=3D AMD64_ONLY=3D"" .else PLIST_SUB+=3D AMD64_ONLY=3D"@comment " .endif The PLIST_SUB is no longer necessary so line 87 and 88 could be replaced by= : .if ${ARCH} =3D=3D "i386" ARCHNAME=3D i386-freebsd-thread-multi-64int .endif .if ${ARCH} =3D=3D "amd64" ARCHNAME=3D amd64-freebsd-thread-multi .endif --=20 You are receiving this mail because: You are the assignee for the bug.=