From nobody Mon Oct 11 21:09:39 2021 X-Original-To: mono@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 F00CE17F53E6 for ; Mon, 11 Oct 2021 21:09:39 +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 4HSryq6FhCz3G0q for ; Mon, 11 Oct 2021 21:09:39 +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 AF55D27970 for ; Mon, 11 Oct 2021 21:09:39 +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 19BL9dR2048276 for ; Mon, 11 Oct 2021 21:09:39 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 19BL9dfI048275 for mono@FreeBSD.org; Mon, 11 Oct 2021 21:09:39 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: mono@FreeBSD.org Subject: [Bug 258709] lang/mono6.8: cert-sync doesn't work on iocage style base jails Date: Mon, 11 Oct 2021 21:09:39 +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: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: will@worrbase.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: mono@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc 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: Mono and C# applications on FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-mono List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-mono@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D258709 will@worrbase.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |will@worrbase.com --- Comment #2 from will@worrbase.com --- I'm experiencing this as well, although with my hand-rolled thinjails. It l= ooks like cert-sync tries to write to /usr/share/.mono, which is the culprit her= e. Running cert-sync yields the following: terra|worr|22:47:17|1$ sudo jexec j /usr/local/bin/cert-sync /usr/local/etc/ssl/cert.pem Mono Certificate Store Sync - version 6.8.0.123 Populate Mono certificate store from a concatenated list of certificates. Copyright 2002, 2003 Motus Technologies. Copyright 2004-2008 Novell. BSD licensed. Importing into legacy system store: I already trust 0, your new list has 130 Warning: Could not import C=3DES, O=3DFNMT-RCM, OU=3DAC RAIZ FNMT-RCM System.IO.IOException: Read-only file system at System.IO.FileSystem.CreateDirectory (System.String fullPath) [0x00191= ] in <0e6cb1433c7b46f598f86593dd03f528>:0=20 at System.IO.Directory.CreateDirectory (System.String path) [0x0002c] in <0e6cb1433c7b46f598f86593dd03f528>:0=20 at Mono.Security.X509.X509Store.CheckStore (System.String path, System.Boolean throwException) [0x00020] in <9d0b4d46cb9c4cd288c22cd9cdf5212a>:0=20 at Mono.Security.X509.X509Store.Import (Mono.Security.X509.X509Certificate certificate) [0x00000] in <9d0b4d46cb9c4cd288c22cd9cdf5212a>:0=20 at Mono.Tools.CertSync.ImportToStore (Mono.Security.X509.X509CertificateCollection roots, Mono.Security.X509.X509Store store) [0x00050] in <34bb119f69354d8986322c88a4400682>:0=20 Warning: Could not import C=3DES, O=3DFNMT-RCM, OU=3DCeres, OID.2.5.4.97=3DVATES-Q2826004J, CN=3DAC RAIZ FNMT-RCM SERVIDORES SEGUROS ... Running the following dtrace script yields: terra|worr|23:08:39|130$ cat ro-cert-sync.d=20 #!/usr/sbin/dtrace -s syscall:freebsd:mkdir:entry { self->path =3D copyinstr(arg0); } syscall:freebsd:mkdir:return { if (args[0] !=3D 0) { printf("Could not create %s: %d", self->path, errno); } } terra|worr|23:08:41|0$ sudo dtrace -s ro-cert-sync.d -c 'jexec j /usr/local/bin/cert-sync --quiet /usr/local/etc/ssl/cert.pem' | head -30 dtrace: script 'ro-cert-sync.d' matched 5 probes dtrace: pid 35449 has exited CPU ID FUNCTION:NAME 6 77594 mkdir:return Could not create /usr/share/.mo= no: 30 6 77594 mkdir:return Could not create /usr/share/.mono/certs: 2 6 77594 mkdir:return Could not create /usr/share/.mono/certs/Trust: 2 6 77594 mkdir:return Could not create /usr/share/.mo= no: 30 6 77594 mkdir:return Could not create /usr/share/.mono/certs: 2 6 77594 mkdir:return Could not create /usr/share/.mono/certs/Trust: 2 6 77594 mkdir:return Could not create /usr/share/.mo= no: 30 6 77594 mkdir:return Could not create /usr/share/.mono/certs: 2 6 77594 mkdir:return Could not create /usr/share/.mono/certs/Trust: 2 6 77594 mkdir:return Could not create /usr/share/.mo= no: 30 6 77594 mkdir:return Could not create /usr/share/.mono/certs: 2 6 77594 mkdir:return Could not create /usr/share/.mono/certs/Trust: 2 6 77594 mkdir:return Could not create /usr/share/.mo= no: 30 6 77594 mkdir:return Could not create /usr/share/.mono/certs: 2 6 77594 mkdir:return Could not create /usr/share/.mono/certs/Trust: 2 6 77594 mkdir:return Could not create /usr/share/.mo= no: 30 6 77594 mkdir:return Could not create /usr/share/.mono/certs: 2 6 77594 mkdir:return Could not create /usr/share/.mono/certs/Trust: 2 6 77594 mkdir:return Could not create /usr/share/.mo= no: 30 6 77594 mkdir:return Could not create /usr/share/.mono/certs: 2 6 77594 mkdir:return Could not create /usr/share/.mono/certs/Trust: 2 6 77594 mkdir:return Could not create /usr/share/.mo= no: 30 6 77594 mkdir:return Could not create /usr/share/.mono/certs: 2 6 77594 mkdir:return Could not create /usr/share/.mono/certs/Trust: 2 6 77594 mkdir:return Could not create /usr/share/.mo= no: 30 6 77594 mkdir:return Could not create /usr/share/.mono/certs: 2 6 77594 mkdir:return Could not create /usr/share/.mono/certs/Trust: 2 6 77594 mkdir:return Could not create /usr/share/.mo= no: 30 6 77594 mkdir:return Could not create /usr/share/.mono/certs: 2 --=20 You are receiving this mail because: You are the assignee for the bug.= From nobody Wed Oct 13 12:05:24 2021 X-Original-To: mono@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 C5B9217FF524 for ; Wed, 13 Oct 2021 12:05:24 +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 4HTrnw3WmHz4VGV for ; Wed, 13 Oct 2021 12:05:24 +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 59A2D274A5 for ; Wed, 13 Oct 2021 12:05:24 +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 19DC5OHa025561 for ; Wed, 13 Oct 2021 12:05:24 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 19DC5OA9025560 for mono@FreeBSD.org; Wed, 13 Oct 2021 12:05:24 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: mono@FreeBSD.org Subject: [Bug 255857] lang/mono5.20: Fails to package: Orphaned: lib/mono/.../WebApplications/Microsoft.WebApplication.targets Date: Wed, 13 Oct 2021 12:05:24 +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-patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mikael@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: mono@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? merge-quarterly? X-Bugzilla-Changed-Fields: cc 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: Mono and C# applications on FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-mono List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-mono@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D255857 Mikael Urankar changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mikael@FreeBSD.org --- Comment #4 from Mikael Urankar --- it's still an issue. --=20 You are receiving this mail because: You are the assignee for the bug.= From nobody Wed Oct 13 19:42:06 2021 X-Original-To: mono@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 A5290180573E; Wed, 13 Oct 2021 19:42:10 +0000 (UTC) (envelope-from bofh@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (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 "smtp.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HV2wy48jyz3ncG; Wed, 13 Oct 2021 19:42:10 +0000 (UTC) (envelope-from bofh@freebsd.org) Received: from mx.bofh.network (mx.bofh.network [IPv6:2a0d:2787:2::28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx.bofh.network", Issuer "R3" (verified OK)) (Authenticated sender: bofh/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 02FBC29E2A; Wed, 13 Oct 2021 19:42:09 +0000 (UTC) (envelope-from bofh@freebsd.org) Received: from smtpclient.apple (ip-217-105-29-47.ip.prioritytelecom.net [217.105.29.47]) by mx.bofh.network (OpenSMTPD) with ESMTPSA id 837081c6 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Wed, 13 Oct 2021 19:42:07 +0000 (UTC) From: Muhammad Moinur Rahman Message-Id: <978B448B-A8C6-4239-9DBE-55EAEBF2F754@freebsd.org> Content-Type: multipart/signed; boundary="Apple-Mail=_BE82BE70-BBB7-45EE-ADAE-AB0861DF6A30"; protocol="application/pgp-signature"; micalg=pgp-sha512 List-Id: Mono and C# applications on FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-mono List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-mono@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 14.0 \(3654.120.0.1.13\)) Subject: Re: git: c7e5dc97d707 - main - mail/gmime24-sharp: Mark DEPRECATED Date: Wed, 13 Oct 2021 21:42:06 +0200 In-Reply-To: <202110131800.19DI0JQX062485@gitrepo.freebsd.org> Cc: mono@freebsd.org To: "ports-committers@freebsd.org" , "dev-commits-ports-all@freebsd.org" , "dev-commits-ports-main@freebsd.org" References: <202110131800.19DI0JQX062485@gitrepo.freebsd.org> X-Mailer: Apple Mail (2.3654.120.0.1.13) X-ThisMailContainsUnwantedMimeParts: N --Apple-Mail=_BE82BE70-BBB7-45EE-ADAE-AB0861DF6A30 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Oops. Looks like I missed some messages. PR: 258771 Approved by: mono (maintainer-timeout) Kind Regards, Moin > On 13 Oct, 2021, at 20:00, Muhammad Moinur Rahman = wrote: >=20 > The branch main has been updated by bofh: >=20 > URL: = https://cgit.FreeBSD.org/ports/commit/?id=3Dc7e5dc97d7070bd889bc1834ed5d1a= ce977be55a >=20 > commit c7e5dc97d7070bd889bc1834ed5d1ace977be55a > Author: Muhammad Moinur Rahman > AuthorDate: 2021-10-13 17:58:47 +0000 > Commit: Muhammad Moinur Rahman > CommitDate: 2021-10-13 17:58:47 +0000 >=20 > mail/gmime24-sharp: Mark DEPRECATED >=20 > - More recent versions are in the ports > - Set EXPIRATION_DATE on 2021-11-29 > --- > mail/gmime24-sharp/Makefile | 3 +++ > 1 file changed, 3 insertions(+) >=20 > diff --git a/mail/gmime24-sharp/Makefile b/mail/gmime24-sharp/Makefile > index 331a6e5dd5fa..65da60072a06 100644 > --- a/mail/gmime24-sharp/Makefile > +++ b/mail/gmime24-sharp/Makefile > @@ -9,6 +9,9 @@ COMMENT=3D Mono bindings for gmime >=20 > LIB_DEPENDS=3D libgmime-2.4.so:mail/gmime24 >=20 > +DEPRECATED=3D Use mail/gmime26-sharp > +EXPIRATION_DATE=3D2021-11-29 > + > MASTERDIR=3D ${.CURDIR}/../gmime24 > BUILD_WRKSRC=3D ${WRKSRC}/mono > INSTALL_WRKSRC=3D ${BUILD_WRKSRC} --Apple-Mail=_BE82BE70-BBB7-45EE-ADAE-AB0861DF6A30 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- iQKTBAEBCgB9FiEETfdREoUGjQZKBS+fvbm1phfAvJEFAmFnNo9fFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDRE Rjc1MTEyODUwNjhEMDY0QTA1MkY5RkJEQjlCNUE2MTdDMEJDOTEACgkQvbm1phfA vJGcJA//eyNEiLSKgfEJfkKd9+YYN4xmDmnygHTLmAJT0KOBdhj6cNKeq0IHEWrJ l9M2iE/WDMw4mFQZzZponBDW42oaJKv/hO7QBCM3OoIjOH54lVIRuhNIQ8/Mw3XZ RMOUuXlmr3fmuUTg0tQOEfpb6Lsjc9WznO1OTdvvlDjLPvteZ7pcAxjsEw+Cfedq VKKQSbCBwAM9cBIQtxIptAwssmFi4MnDDkmUtDpm91+H7ikgkpkgpnqpjNAaW+7m p3HvMeJL4T+8d+ad5W5hyoIA0F7OjZ5+DyG96TksA4h+Eps1d6DYE5MRA7643U/F Ys2cuCPPwg14oXXX1nDQGT2qXWTqFexIxu0AYuGXbCcFRwYRWaSg+4ZHxz2xJuEa 5cH6hr6YnzB3eNbSa9mIMVj2MRB1oXjxEbUkPScvp+YOPvGKC/z1XbHzTVGKTYSf pb4FQz6JeNwdk2bKjrakW01FccltMCrYzDKjXE1gjJrWRIg+mCA0tw1zRLEl6lI+ 8EnYwBDd+ROSdTzwtGsIQTjZoPIvrzqGdtg2G9lTSYILSwGACtlT0IxQ9NvIRkTR Vv4VZ7HeLOrhf8MFqgAD+h2CZ/dOAq3BBpsjSuIAVWBZnuMzvMePEWjfau/uM5Dw ZRnu3Xz/fWN2Zd0z/Vw+JhJNjIm3QkF3k9ZqVfm6n9fgdV3UMoE= =knut -----END PGP SIGNATURE----- --Apple-Mail=_BE82BE70-BBB7-45EE-ADAE-AB0861DF6A30-- From nobody Wed Oct 13 19:44:11 2021 X-Original-To: mono@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 478641807090 for ; Wed, 13 Oct 2021 19:44:11 +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 4HV2zH1TGQz3pSl for ; Wed, 13 Oct 2021 19:44:11 +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 04A0B2DB59 for ; Wed, 13 Oct 2021 19:44:11 +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 19DJiAFK080668 for ; Wed, 13 Oct 2021 19:44:10 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 19DJiA6a080667 for mono@FreeBSD.org; Wed, 13 Oct 2021 19:44:10 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: mono@FreeBSD.org Subject: [Bug 258771] mail/gmime24-sharp: Mark DEPRECATED Date: Wed, 13 Oct 2021 19:44:11 +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: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bofh@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: mono@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_status resolution 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: Mono and C# applications on FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-mono List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-mono@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D258771 Muhammad Moinur Rahman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |FIXED --- Comment #1 from Muhammad Moinur Rahman --- Looks like I missed the PR. Committed as maintainer-timeout. The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=3Dc7e5dc97d7070bd889bc1834ed5d1ac= e977be55a commit c7e5dc97d7070bd889bc1834ed5d1ace977be55a Author: Muhammad Moinur Rahman AuthorDate: 2021-10-13 17:58:47 +0000 Commit: Muhammad Moinur Rahman CommitDate: 2021-10-13 17:58:47 +0000 mail/gmime24-sharp: Mark DEPRECATED - More recent versions are in the ports - Set EXPIRATION_DATE on 2021-11-29 --- mail/gmime24-sharp/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mail/gmime24-sharp/Makefile b/mail/gmime24-sharp/Makefile index 331a6e5dd5fa..65da60072a06 100644 --- a/mail/gmime24-sharp/Makefile +++ b/mail/gmime24-sharp/Makefile @@ -9,6 +9,9 @@ COMMENT=3D Mono bindings for gmime LIB_DEPENDS=3D libgmime-2.4.so:mail/gmime24 +DEPRECATED=3D Use mail/gmime26-sharp +EXPIRATION_DATE=3D2021-11-29 + MASTERDIR=3D ${.CURDIR}/../gmime24 BUILD_WRKSRC=3D ${WRKSRC}/mono INSTALL_WRKSRC=3D ${BUILD_WRKSRC} --=20 You are receiving this mail because: You are the assignee for the bug.= From nobody Sun Oct 17 11:01:24 2021 X-Original-To: mono@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 692B1180B15E for ; Sun, 17 Oct 2021 11:01:24 +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 4HXHBD2D8Sz4cXC for ; Sun, 17 Oct 2021 11:01:24 +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 2DAEF3C34 for ; Sun, 17 Oct 2021 11:01:24 +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 19HB1O33034861 for ; Sun, 17 Oct 2021 11:01:24 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 19HB1Owc034860 for mono@FreeBSD.org; Sun, 17 Oct 2021 11:01:24 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: mono@FreeBSD.org Subject: [Bug 258709] lang/mono6.8: cert-sync doesn't work on iocage style base jails Date: Sun, 17 Oct 2021 11:01:24 +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: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jakebennettyoung@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: mono@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc 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: Mono and C# applications on FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-mono List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-mono@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D258709 Jake Bennett-Young changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakebennettyoung@gmail.com --- Comment #3 from Jake Bennett-Young --- I am also seeing this issue running cert-sync inside of a TrueNAS 12.2 Jail. I am running a number of programmes dependant on mono, all of which are currently non functional with 6.8.0.123 as I cannot get them get mono the c= erts it needs. Cert-sync =E2=80=94-user runs without issue, but it seems I need to run it = machine wide as this doesn=E2=80=99t solve my issue. --=20 You are receiving this mail because: You are the assignee for the bug.=