From owner-freebsd-pkg@freebsd.org Sun Jun 21 08:24:54 2020 Return-Path: Delivered-To: freebsd-pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9E8AC346B43 for ; Sun, 21 Jun 2020 08:24:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 49qQZZ3p97z4Y4D for ; Sun, 21 Jun 2020 08:24:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 80AEB34691C; Sun, 21 Jun 2020 08:24:54 +0000 (UTC) Delivered-To: pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 807BD346BA9 for ; Sun, 21 Jun 2020 08:24: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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49qQZZ2v6xz4Xwq for ; Sun, 21 Jun 2020 08:24: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 5A06719FF5 for ; Sun, 21 Jun 2020 08:24: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 05L8Ospr098073 for ; Sun, 21 Jun 2020 08:24:54 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 05L8OsQ4098072 for pkg@FreeBSD.org; Sun, 21 Jun 2020 08:24:54 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: maintainer-feedback requested: [Bug 247456] ports-mgmt/pkg use of .note.tag to determine osname Date: Sun, 21 Jun 2020 08:24:54 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2020 08:24:54 -0000 Bugzilla Automation has asked freebsd-pkg mailing li= st for maintainer-feedback: Bug 247456: ports-mgmt/pkg use of .note.tag to determine osname https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D247456 --- Description --- When the innocuous define of NOTE_FREEBSD_VENDOR is changed from #define NOTE_FREEBSD_VENDOR "FreeBSD" in=20 /usr/src/lib/csu/common/notes.h to contain something other than FreeBSD (I'm storing build/date details) AND=20 there is no ABI statement explicit in /usr/local/etc/pkg.conf these messages are emitted from a 'pkg info -oa' pkg: failed to get the note section pkg: failed to get the note section pkg: Unable to determine ABI pkg: Cannot parse configuration file! This was a major surprise when I upgraded the OS. What broke the pkg syste= m as a result of upgrading stable 12.1 to a later revision?? Explicitly stating the ABI in /usr/local/etc/pkg.conf as=20 ABI =3D "freebsd:12:x86:64"; enabled pkg to function. However every invocation of pkg now results in=20 pkg: failed to get the note section pkg: failed to get the note section Suggestions 1) that a dependency notice appear in /usr/src/lib/csu/common/notes.h to ad= vise that changing NOTE_FREEBSD_VENDOR will impact the pkg's OS detection mechan= ism which will require maintenance of the ABI in /usr/local/etc/pkg.conf. 2) pkg suppresses the failure notice as the explicit use of the ABI is sufficient. 3) I would think that a variable named NOTE_FREEBSD_VENDOR could be used by vendors in a manner of their choosing. Though perhaps a better approach wou= ld be to add an ELF section explicit for pkg to utilize (something like) #define PKG_OS FreeBSD=20 in /usr/src/lib/csu/common/notes.h if elf section checking is the best route (?) (And yes, I know that the latter (3) is no small task) :-( From owner-freebsd-pkg@freebsd.org Sun Jun 21 08:24:54 2020 Return-Path: Delivered-To: freebsd-pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EDD90346A2E for ; Sun, 21 Jun 2020 08:24:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 49qQZZ65rMz4YLl for ; Sun, 21 Jun 2020 08:24:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id CFBC2346A2D; Sun, 21 Jun 2020 08:24:54 +0000 (UTC) Delivered-To: pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id CF8D3346A2C for ; Sun, 21 Jun 2020 08:24: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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49qQZZ59swz4YJh for ; Sun, 21 Jun 2020 08:24: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 A89FB1A62B for ; Sun, 21 Jun 2020 08:24: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 05L8OsJG098120 for ; Sun, 21 Jun 2020 08:24:54 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 05L8OsU6098117 for pkg@FreeBSD.org; Sun, 21 Jun 2020 08:24: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: pkg@FreeBSD.org Subject: [Bug 247456] ports-mgmt/pkg use of .note.tag to determine osname Date: Sun, 21 Jun 2020 08:24:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dewayne@heuristicsystems.com.au X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2020 08:24:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D247456 Bug ID: 247456 Summary: ports-mgmt/pkg use of .note.tag to determine osname Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: pkg@FreeBSD.org Reporter: dewayne@heuristicsystems.com.au Assignee: pkg@FreeBSD.org Flags: maintainer-feedback?(pkg@FreeBSD.org) When the innocuous define of NOTE_FREEBSD_VENDOR is changed from #define NOTE_FREEBSD_VENDOR "FreeBSD" in=20 /usr/src/lib/csu/common/notes.h to contain something other than FreeBSD (I'm storing build/date details) AND=20 there is no ABI statement explicit in /usr/local/etc/pkg.conf these messages are emitted from a 'pkg info -oa' pkg: failed to get the note section pkg: failed to get the note section pkg: Unable to determine ABI pkg: Cannot parse configuration file! This was a major surprise when I upgraded the OS. What broke the pkg syste= m as a result of upgrading stable 12.1 to a later revision?? Explicitly stating the ABI in /usr/local/etc/pkg.conf as=20 ABI =3D "freebsd:12:x86:64"; enabled pkg to function. However every invocation of pkg now results in=20 pkg: failed to get the note section pkg: failed to get the note section Suggestions 1) that a dependency notice appear in /usr/src/lib/csu/common/notes.h to ad= vise that changing NOTE_FREEBSD_VENDOR will impact the pkg's OS detection mechan= ism which will require maintenance of the ABI in /usr/local/etc/pkg.conf. 2) pkg suppresses the failure notice as the explicit use of the ABI is sufficient. 3) I would think that a variable named NOTE_FREEBSD_VENDOR could be used by vendors in a manner of their choosing. Though perhaps a better approach wou= ld be to add an ELF section explicit for pkg to utilize (something like) #define PKG_OS FreeBSD=20 in /usr/src/lib/csu/common/notes.h if elf section checking is the best route (?) (And yes, I know that the latter (3) is no small task) :-( --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Sun Jun 21 10:13:16 2020 Return-Path: Delivered-To: freebsd-pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1F0F13493DC for ; Sun, 21 Jun 2020 10:13:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 49qSzc030kz3Sp1 for ; Sun, 21 Jun 2020 10:13:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 017CC349432; Sun, 21 Jun 2020 10:13:16 +0000 (UTC) Delivered-To: pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id F0A6434968B for ; Sun, 21 Jun 2020 10:13:15 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49qSzb690Rz3Slk for ; Sun, 21 Jun 2020 10:13:15 +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 CDF171B7F6 for ; Sun, 21 Jun 2020 10:13:15 +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 05LADFfL007734 for ; Sun, 21 Jun 2020 10:13:15 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 05LADFQE007733 for pkg@FreeBSD.org; Sun, 21 Jun 2020 10:13:15 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: pkg@FreeBSD.org Subject: [Bug 247457] ports-mgmt/pkg: Examples in https://github.com/freebsd/pkg-plugins are outdated Date: Sun, 21 Jun 2020 10:13:15 +0000 X-Bugzilla-Reason: CC 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: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: koobs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to see_also bug_status short_desc 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 MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2020 10:13:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D247457 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pkg@FreeBSD.org Assignee|ports-bugs@FreeBSD.org |koobs@FreeBSD.org See Also| |https://github.com/freebsd/ | |pkg-plugins/issues/4 Status|New |Open Summary|Examples in |ports-mgmt/pkg: Examples in |https://github.com/freebsd/ |https://github.com/freebsd/ |pkg-plugins are outdated |pkg-plugins are outdated --- Comment #1 from Kubilay Kocak --- Thanks for the report Markus You did the right thing by creating a PR and issue upstream and I've pinged= our pkg maintainer on those. Would you mind if I close this issue as resolved on that basis? --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-pkg@freebsd.org Sun Jun 21 10:27:59 2020 Return-Path: Delivered-To: freebsd-pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 43A633494FF for ; Sun, 21 Jun 2020 10:27:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 49qTJb17JBz3T8R for ; Sun, 21 Jun 2020 10:27:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 24EF43498A1; Sun, 21 Jun 2020 10:27:59 +0000 (UTC) Delivered-To: pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 24B6034992C for ; Sun, 21 Jun 2020 10:27:59 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49qTJb0CRyz3TC8 for ; Sun, 21 Jun 2020 10:27:59 +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 029BD1B86C for ; Sun, 21 Jun 2020 10:27:59 +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 05LARwvI020884 for ; Sun, 21 Jun 2020 10:27:58 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 05LARwd1020882 for pkg@FreeBSD.org; Sun, 21 Jun 2020 10:27:58 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: pkg@FreeBSD.org Subject: [Bug 247456] ports-mgmt/pkg: Use of .note.tag to determine osname Date: Sun, 21 Jun 2020 10:27:59 +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: needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: vulcan@wired.sh X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_status keywords cc short_desc 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 MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2020 10:27:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D247456 Lewis Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Open Keywords| |needs-qa CC| |vulcan@wired.sh Summary|ports-mgmt/pkg use of |ports-mgmt/pkg: Use of |.note.tag to determine |.note.tag to determine |osname |osname --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Sun Jun 21 10:59:01 2020 Return-Path: Delivered-To: freebsd-pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 13E3734A454 for ; Sun, 21 Jun 2020 10:59:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 49qV0N6qfSz3Vh0 for ; Sun, 21 Jun 2020 10:59:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id EA5B934A451; Sun, 21 Jun 2020 10:59:00 +0000 (UTC) Delivered-To: pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EA1FB34A260 for ; Sun, 21 Jun 2020 10:59:00 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49qV0N5xQrz3Vcx for ; Sun, 21 Jun 2020 10:59:00 +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 C76011C3A0 for ; Sun, 21 Jun 2020 10:59:00 +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 05LAx02B052572 for ; Sun, 21 Jun 2020 10:59:00 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 05LAx0WX052571 for pkg@FreeBSD.org; Sun, 21 Jun 2020 10:59:00 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: pkg@FreeBSD.org Subject: [Bug 247457] ports-mgmt/pkg: Examples in https://github.com/freebsd/pkg-plugins are outdated Date: Sun, 21 Jun 2020 10:59:01 +0000 X-Bugzilla-Reason: CC 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: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ms-freebsd-bugzilla@stoffnet.at X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: koobs@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 MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2020 10:59:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D247457 --- Comment #2 from Markus Stoff --- No, I woudn't. Please go ahead. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-pkg@freebsd.org Sun Jun 21 11:11:03 2020 Return-Path: Delivered-To: freebsd-pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 21D0634A5C9 for ; Sun, 21 Jun 2020 11:11:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 49qVGH09dQz3W4F for ; Sun, 21 Jun 2020 11:11:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 040CD34A5C8; Sun, 21 Jun 2020 11:11:03 +0000 (UTC) Delivered-To: pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 03CE434A822 for ; Sun, 21 Jun 2020 11:11:03 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49qVGG6Jbcz3VwZ for ; Sun, 21 Jun 2020 11:11:02 +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 D3D9F1C3C5 for ; Sun, 21 Jun 2020 11:11:02 +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 05LBB28l063579 for ; Sun, 21 Jun 2020 11:11:02 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 05LBB2cU063578 for pkg@FreeBSD.org; Sun, 21 Jun 2020 11:11:02 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: pkg@FreeBSD.org Subject: [Bug 247457] ports-mgmt/pkg: Examples in https://github.com/freebsd/pkg-plugins are outdated Date: Sun, 21 Jun 2020 11:11:02 +0000 X-Bugzilla-Reason: CC 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: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: koobs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status 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 MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2020 11:11:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D247457 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Open |Closed --- Comment #3 from Kubilay Kocak --- Thank you! --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-pkg@freebsd.org Sun Jun 21 21:00:50 2020 Return-Path: Delivered-To: freebsd-pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BBEF83333C0 for ; Sun, 21 Jun 2020 21:00:50 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 49qlLp40qkz4cMH for ; Sun, 21 Jun 2020 21:00:50 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: by mailman.nyi.freebsd.org (Postfix) id 87536333342; Sun, 21 Jun 2020 21:00:50 +0000 (UTC) Delivered-To: pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 87024333250 for ; Sun, 21 Jun 2020 21:00:50 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49qlLp1c28z4cMF for ; Sun, 21 Jun 2020 21:00:50 +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 2E4FD230D3 for ; Sun, 21 Jun 2020 21:00:50 +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 05LL0oIY086671 for ; Sun, 21 Jun 2020 21:00:50 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 05LL0oG6086670 for pkg@FreeBSD.org; Sun, 21 Jun 2020 21:00:50 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <202006212100.05LL0oG6086670@kenobi.freebsd.org> X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@FreeBSD.org using -f From: bugzilla-noreply@FreeBSD.org To: pkg@FreeBSD.org Subject: Problem reports for pkg@FreeBSD.org that need special attention Date: Sun, 21 Jun 2020 21:00:50 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.33 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jun 2020 21:00:50 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- Open | 220049 | ports-mgmt/pkg installs unneeded packages Open | 237369 | ports-mgmt/pkg: pkg delete removes required NLS d New | 245204 | ports-mgmt/pkg: pkg(8) install new package versio 3 problems total for which you should take action. From owner-freebsd-pkg@freebsd.org Fri Jun 26 07:56:17 2020 Return-Path: Delivered-To: freebsd-pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0A3393507F7 for ; Fri, 26 Jun 2020 07:56:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 49tTjD6YBbz4Bf1 for ; Fri, 26 Jun 2020 07:56:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id DEF283507F6; Fri, 26 Jun 2020 07:56:16 +0000 (UTC) Delivered-To: pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DEAF33505F9 for ; Fri, 26 Jun 2020 07:56:16 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49tTjD5HD7z4BbY for ; Fri, 26 Jun 2020 07:56:16 +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 B03FF110DB for ; Fri, 26 Jun 2020 07:56:16 +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 05Q7uG1Q020475 for ; Fri, 26 Jun 2020 07:56:16 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 05Q7uGrI020474 for pkg@FreeBSD.org; Fri, 26 Jun 2020 07:56:16 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: maintainer-feedback requested: [Bug 247558] ports-mgmt/pkg fails to compile on CURRENT amd64 Date: Fri, 26 Jun 2020 07:56:16 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2020 07:56:17 -0000 Bugzilla Automation has asked freebsd-pkg (Nobody) for maintainer-feedback: Bug 247558: ports-mgmt/pkg fails to compile on CURRENT amd64 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D247558 --- Description --- Updated my CURRENT VM to r362612, then tried to update my ports via portmas= ter. pkg fails with :=20 cc -o pkg-static add.o alias.o annotate.o audit.o autoremove.o backup.o che= ck.o clean.o config.o create.o delete.o event.o fetch.o globals.o info.o install= .o lock.o main.o plugins.o query.o register.o repo.o rquery.o search.o set.o shell.o shlib.o ssh.o stats.o update.o updating.o upgrade.o utils.o version= .o which.o -static -fstack-protector-strong=20 -L/usr/ports/ports-mgmt/pkg/work/pkg-1.14.5/libpkg -lpkg_flat -lelf -ljail -larchive -lbz2 -lz -llzma -lprivatezstd -lm -lssl -lcrypto -pthread -lutil ld: error: undefined symbol: _libmd_SHA256_Init >>> referenced by check.h:143 (/usr/src/contrib/xz/src/liblzma/check/check.h:143) >>> check.o:(lzma_check_init) in archive /usr/lib/liblzma.a ld: error: undefined symbol: _libmd_SHA256_Update >>> referenced by check.h:160 (/usr/src/contrib/xz/src/liblzma/check/check.h:160) >>> check.o:(lzma_check_update) in archive /usr/lib/liblzma.a ld: error: undefined symbol: _libmd_SHA256_Final >>> referenced by check.h:167 (/usr/src/contrib/xz/src/liblzma/check/check.h:167) >>> check.o:(lzma_check_finish) in archive /usr/lib/liblzma.a cc: error: linker command failed with exit code 1 (use -v to see invocation) *** [pkg-static] Error code 1 Tried with MAKE_JOBS_UNSAFE=3Dyes , same thing. From owner-freebsd-pkg@freebsd.org Fri Jun 26 07:56:17 2020 Return-Path: Delivered-To: freebsd-pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 707273506D9 for ; Fri, 26 Jun 2020 07:56:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 49tTjF2TyVz4Bf2 for ; Fri, 26 Jun 2020 07:56:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 53B3E350A25; Fri, 26 Jun 2020 07:56:17 +0000 (UTC) Delivered-To: pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 53813350841 for ; Fri, 26 Jun 2020 07:56:17 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49tTjF1cVRz4BYS for ; Fri, 26 Jun 2020 07:56:17 +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 2E79110EAA for ; Fri, 26 Jun 2020 07:56:17 +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 05Q7uHV1020483 for ; Fri, 26 Jun 2020 07:56:17 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 05Q7uHxf020482 for pkg@FreeBSD.org; Fri, 26 Jun 2020 07:56:17 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: pkg@FreeBSD.org Subject: [Bug 247558] ports-mgmt/pkg fails to compile on CURRENT amd64 Date: Fri, 26 Jun 2020 07:56:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: schaiba@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2020 07:56:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D247558 Bug ID: 247558 Summary: ports-mgmt/pkg fails to compile on CURRENT amd64 Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: pkg@FreeBSD.org Reporter: schaiba@gmail.com Assignee: pkg@FreeBSD.org Flags: maintainer-feedback?(pkg@FreeBSD.org) Updated my CURRENT VM to r362612, then tried to update my ports via portmas= ter. pkg fails with :=20 cc -o pkg-static add.o alias.o annotate.o audit.o autoremove.o backup.o che= ck.o clean.o config.o create.o delete.o event.o fetch.o globals.o info.o install= .o lock.o main.o plugins.o query.o register.o repo.o rquery.o search.o set.o shell.o shlib.o ssh.o stats.o update.o updating.o upgrade.o utils.o version= .o which.o -static -fstack-protector-strong=20 -L/usr/ports/ports-mgmt/pkg/work/pkg-1.14.5/libpkg -lpkg_flat -lelf -ljail -larchive -lbz2 -lz -llzma -lprivatezstd -lm -lssl -lcrypto -pthread -lutil ld: error: undefined symbol: _libmd_SHA256_Init >>> referenced by check.h:143 (/usr/src/contrib/xz/src/liblzma/check/check.= h:143) >>> check.o:(lzma_check_init) in archive /usr/lib/liblzma.a ld: error: undefined symbol: _libmd_SHA256_Update >>> referenced by check.h:160 (/usr/src/contrib/xz/src/liblzma/check/check.= h:160) >>> check.o:(lzma_check_update) in archive /usr/lib/liblzma.a ld: error: undefined symbol: _libmd_SHA256_Final >>> referenced by check.h:167 (/usr/src/contrib/xz/src/liblzma/check/check.= h:167) >>> check.o:(lzma_check_finish) in archive /usr/lib/liblzma.a cc: error: linker command failed with exit code 1 (use -v to see invocation) *** [pkg-static] Error code 1 Tried with MAKE_JOBS_UNSAFE=3Dyes , same thing. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Sat Jun 27 00:06:49 2020 Return-Path: Delivered-To: freebsd-pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 11649362935 for ; Sat, 27 Jun 2020 00:06:49 +0000 (UTC) (envelope-from mail_5ef68d889cc083.58796434@bounce.smtph7gw4.hlhk.net) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 49tvF33hxpz42lb for ; Sat, 27 Jun 2020 00:06:47 +0000 (UTC) (envelope-from mail_5ef68d889cc083.58796434@bounce.smtph7gw4.hlhk.net) Received: by mailman.nyi.freebsd.org (Postfix) id 7CFEE362D01; Sat, 27 Jun 2020 00:06:47 +0000 (UTC) Delivered-To: pkg@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7CC16362BF3 for ; Sat, 27 Jun 2020 00:06:47 +0000 (UTC) (envelope-from mail_5ef68d889cc083.58796434@bounce.smtph7gw4.hlhk.net) Received: from smtph7gw4.hlhk.net (202181212056.hlhk.net [202.181.212.56]) by mx1.freebsd.org (Postfix) with ESMTP id 49tvF05v0Pz42w6 for ; Sat, 27 Jun 2020 00:06:43 +0000 (UTC) (envelope-from mail_5ef68d889cc083.58796434@bounce.smtph7gw4.hlhk.net) Received: from sender.e-post.com.hk (unknown [202.181.211.158]) by smtph7gw4.hlhk.net (Postfix) with ESMTPA id F38C83B734 for ; Sat, 27 Jun 2020 07:21:54 +0800 (HKT) Date: Sat, 27 Jun 2020 08:06:32 +0800 To: pkg From: recycletungsing Subject: =?UTF-8?B?6Zu75a2Q5Zue5pS2ICAgRWxlY3Ryb25pY3MgcmVjeWNsZQ==?= Message-ID: <9b05855cb56c4d476dae4e8b6fcefa16@sender.e-post.com.hk> X-Mailer: PHPMailer 5.2.11 (https://github.com/PHPMailer/PHPMailer/) Precedence: bulk X-SMTP: smtph7gw4.hlhk.net X-SMTPAPI: {"unique_args":{"mail_id":"mail_5ef68d889cc083.58796434"}} MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha1; q=dns/txt; l=8257; s=dkim; t=1593216392; c=relaxed/simple; h=From:To:Subject; d=postlinkhk.com; z=From:=20recycletungsing=20 |To:=20pkg=20 |Subject:=20=3D?UTF-8?B?6Zu75a2Q5Zue5pS2ICAgRWxlY3Ryb25pY3MgcmVjeWNsZQ=3D=3D?=3D; bh=mCkL70qPTxiUgsFD8V5HHIl5arQ=; b=dIyjif6mEbfbyUv0K1nBjyTuFhXtAOjDKnBy+UU4bHBZOIdbmUrYZuxpx60UHaGrVBDdjKQNIpr0OdzKPbRSuLhVOniyoCmpCGL5eMYgJ+cQmeh9ws4Ok4r7nHQiUFHoMD4PxHbPNrtEiCAJuE0BqdsdkHMdDxnzaRZfovvTF2o= X-Rspamd-Queue-Id: 49tvF05v0Pz42w6 X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; dkim=pass header.d=postlinkhk.com header.s=dkim header.b=dIyjif6m; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=yeah.net (policy=none); spf=pass (mx1.freebsd.org: domain of mail_5ef68d889cc083.58796434@bounce.smtph7gw4.hlhk.net designates 202.181.212.56 as permitted sender) smtp.mailfrom=mail_5ef68d889cc083.58796434@bounce.smtph7gw4.hlhk.net X-Spamd-Result: default: False [-1.09 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; FREEMAIL_FROM(0.00)[yeah.net]; R_SPF_ALLOW(-0.20)[+a:smtph7gw4.hlhk.net]; TO_DN_ALL(0.00)[]; DKIM_TRACE(0.00)[postlinkhk.com:+]; NEURAL_HAM_SHORT(-0.38)[-0.377]; FORGED_SENDER(0.30)[recycletungsing@yeah.net,mail_5ef68d889cc083.58796434@bounce.smtph7gw4.hlhk.net]; RCVD_NO_TLS_LAST(0.10)[]; AUTOGEN_PHP_SPAMMY(1.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:7540, ipnet:202.181.212.0/24, country:HK]; FROM_NEQ_ENVFROM(0.00)[recycletungsing@yeah.net,mail_5ef68d889cc083.58796434@bounce.smtph7gw4.hlhk.net]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.91)[-0.911]; R_DKIM_ALLOW(-0.20)[postlinkhk.com:s=dkim]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; PRECEDENCE_BULK(0.00)[]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; HAS_PHPMAILER_SIG(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[pkg@freebsd.org]; HAS_LIST_UNSUB(-0.01)[]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-0.85)[-0.845]; MANY_INVISIBLE_PARTS(0.05)[1]; RCVD_COUNT_TWO(0.00)[2]; DMARC_POLICY_SOFTFAIL(0.10)[yeah.net : SPF not aligned (relaxed), DKIM not aligned (relaxed), none] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.33 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.33 List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Jun 2020 00:06:49 -0000 =E5=A6=82=E9=96=A3=E4=B8=8B=E6=9C=AA=E8=83=BD=E9=96=B1=E8=AE=80=E6=AD=A4=E9= =83=B5=E4=BB=B6=EF=BC=8C=E8=AB=8B=E6=8C=89=E6=AD=A4=E3=80=82 If you can=E2=80=99t see the image below, please click here =E6=9C=AC=E5=85=AC=E5=8F=B8=E5=B0=88=E6=A5=AD=E5=9B=9E=E6=94=B6=E5=90=84= =E9=A1=9E=E5=BA=AB=E5=AD=98=E6=96=B0=E8=88=8A=E6=88=90=E5=93=81=E5=8F=8A=E9= =85=8D=E4=BB=B6=EF=BC=8C=E5=8C=85=E6=8B=AC=E9=9B=BB=E5=AD=90=E3=80=81=E9=90= =98=E9=8C=B6=E3=80=81=E4=BA=94=E9=87=91=E5=BB=A2=E6=96=99=E3=80=81=E8=B2=A8= =E8=BE=A6=E5=8F=8A=E8=B2=A8=E5=B0=BE=E7=AD=89=E5=AD=98=E8=B2=A8. =E5=B0=88= =E4=BA=BA=E5=A0=B1=E5=83=B9=E3=80=81=E7=8F=BE=E9=87=91=E4=BA=A4=E6=94=B6=E3= =80=81=E6=AD=A1=E8=BF=8E=E6=9F=A5=E8=A9=A2=E3=80=8295137408 / 62363887=C2= =A0 (=E9=99=B3=E7=94=9F) Our Company specializes in recycling all kinds of = electronic inventory & finished products, Including electronics component, = watches, metal scrap, electronic samples and unsold inventory, Free valet = quote, please contact us at : =E5=8F=AF=E6=B7=B1=E5=9C=B3=E6=88=96=E9=A6=99= =E6=B8=AF=E4=BA=A4=E8=B2=A8, We accept goods on ShenZhen, Contact / =E8=81= =AF=E7=B3=BB=E4=BA=BA=EF=BC=9AMr. Chan =E9=99=B3=E7=94=9F =E9=83=B5=E7=AE= =B1/email : recycletungsing@yeah.net Mobile |=E9=9B=BB=E8=A9=B1 / Whatsapp = :=C2=A0(=E9=A6=99=E6=B8=AF) 95137408 / 62363887 =C2=A0 =C2=A0=C2=A0(=E5=9C= =8B=E5=86=85) 86-15546950150 =E6=9D=B1=C2=A0=E6=98=87=C2=A0=E5=9B=9E=C2=A0= =E6=94=B6 Tung sing Recycling Room E, 5/F Winner Factory Bldg.,=C2=A055=C2= =A0Hung To Road, Kwun Tong, Kowloon, Hong Kong. =E4=B9=9D=E9=BE=8D=E8=A7=80= =E5=A1=98=E9=B4=BB=E5=9C=96=E9=81=9355=E8=99=9F=E5=B9=B8=E9=81=8B=E5=B7=A5= =E6=A5=AD=E5=A4=A7=E5=BB=885/F E=E5=AE=A4 If unsubscribe please an email wi= th UNSUBSCRIBE entered on the subject and quote your email address. =E5=A6= =82=E9=96=A3=E4=B8=8B=E4=B8=8D=E6=AC=B2=E6=94=B6=E5=88=B0=E7=94=B1=E6=9C=AC= =E5=85=AC=E5=8F=B8=E7=99=BC=E5=87=BA=E7=9A=84=E9=9B=BB=E9=83=B5, =E8=AB=8B= =E5=9B=9E=E9=83=B5=E9=80=9A=E7=9F=A5=E9=96=A3=E4=B8=8B=E7=9A=84=E9=9B=BB=E9= =83=B5=E5=9C=B0=E5=9D=80=E4=B8=A6=E6=96=BC=E4=B8=BB=E6=97=A8=E4=B8=8A=E5=8A= =A0=E5=85=A5=E3=80=8C=E6=8B=92=E6=94=B6=E3=80=8D=20 =E5=A6=82=E8=A6=81=E5=8F=96=E6=B6=88=E8=A8=82=E9=96=B1=EF=BC=8C=E8=AB=8B=E5= =88=B0=E6=AD=A4=E8=99=95=E3=80=82 If you don=E2=80=99t wish to receive our Newsletter, please click here.