From nobody Sun Jun 06 16:28:45 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 52B14957A7C for ; Sun, 6 Jun 2021 16:28:45 +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 4FyhlK1ky1z3K96 for ; Sun, 6 Jun 2021 16:28:45 +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 248BE269B6 for ; Sun, 6 Jun 2021 16:28:45 +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 156GSjou006094 for ; Sun, 6 Jun 2021 16:28:45 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 156GSjxN006093 for ports-bugs@FreeBSD.org; Sun, 6 Jun 2021 16:28:45 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 256444] mail/mailman3: missing dependency on importlib-resources Date: Sun, 06 Jun 2021 16:28:45 +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 Many People X-Bugzilla-Who: freebsd@omarpolo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vishwin@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 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=3D256444 Bug ID: 256444 Summary: mail/mailman3: missing dependency on importlib-resources Product: Ports & Packages Version: Latest Hardware: amd64 OS: Any Status: New Severity: Affects Many People Priority: --- Component: Individual Port(s) Assignee: vishwin@freebsd.org Reporter: freebsd@omarpolo.com Assignee: vishwin@freebsd.org Flags: maintainer-feedback?(vishwin@freebsd.org) It seems that the latest mail/mailman3 is missing a dependency on devel/py-importlib-resources. ``` root@mail:~ # pkg install mailman3 [...] root@mail:~ # service mailman info Traceback (most recent call last): File "/usr/local/bin/mailman", line 33, in sys.exit(load_entry_point('mailman=3D=3D3.3.1', 'console_scripts', 'mailman')()) File "/usr/local/bin/mailman", line 25, in importlib_load_entry_point return next(matches).load() File "/usr/local/lib/python3.8/importlib/metadata.py", line 77, in load module =3D import_module(match.group('module')) File "/usr/local/lib/python3.8/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1014, in _gcd_import File "", line 991, in _find_and_load File "", line 975, in _find_and_load_unlocked File "", line 671, in _load_unlocked File "", line 848, in exec_module File "", line 219, in _call_with_frames_remo= ved File "/usr/local/lib/python3.8/site-packages/mailman/bin/mailman.py", line 22, in from mailman.config import config File "/usr/local/lib/python3.8/site-packages/mailman/config/__init__.py", line 20, in from mailman.config.config import Configuration File "/usr/local/lib/python3.8/site-packages/mailman/config/config.py", l= ine 27, in from importlib_resources import path, read_text ModuleNotFoundError: No module named 'importlib_resources' ``` (the same happens even when running plain `mailman') After the py38-importlib-resource package is installed, it seems to work: ``` root@mail:~ # pkg install py38-importlib-resources [...] root@mail:~ # service mailman info Usage: mailman [OPTIONS] COMMAND [ARGS]... Try 'mailman -h' for help. Error: Invalid value for '-C' / '--config': File '/usr/local/mailman/etc/mailman.cfg' does not exist. root@mail:~ # ``` this is happening on FreeBSD 13.0-RELEASE-p1 with packages build from the master branch. NB: this is different from bug#254135 (which seems fixed?) Thanks, --=20 You are receiving this mail because: You are the assignee for the bug.=