From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 38D6C158041 for ; Thu, 22 Feb 2024 07:18:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50C1FE29A9; Thu, 22 Feb 2024 07:18:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35503E29A9 for ; Thu, 22 Feb 2024 07:18:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E5A6343210 for ; Thu, 22 Feb 2024 07:18:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0BF80131B for ; Thu, 22 Feb 2024 07:18:28 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1708586299.b3f488e770f88a73c75482e3aace9ebf0e51b52f.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: NEWS meson.build X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b3f488e770f88a73c75482e3aace9ebf0e51b52f X-VCS-Branch: master Date: Thu, 22 Feb 2024 07:18:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0556de5a-ca21-4418-8a36-776d4d4166cc X-Archives-Hash: b1f5d01116c226900fc8ee04107effa1 commit: b3f488e770f88a73c75482e3aace9ebf0e51b52f Author: Sam James gentoo org> AuthorDate: Thu Feb 22 07:17:53 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 22 07:18:19 2024 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b3f488e7 NEWS, meson.build: prepare for portage-3.0.62 Signed-off-by: Sam James gentoo.org> NEWS | 14 ++++++++++---- meson.build | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 46ab2fc5f7..3fbc727861 100644 --- a/NEWS +++ b/NEWS @@ -6,12 +6,11 @@ Release notes take the form of the following optional categories: * Bug fixes * Cleanups -portage-3.0.62 (UNRELEASED) +portage-3.0.62 (2024-02-22) -------------- -A lot of asyncio fixes from Zac to kill off unsafe fork use (not reflected here, -at least for now, to make clear the user-visible changes in this release) and -a lot of misc. bug fixes. +This release has a lot of misc. bug fixes as well as many asyncio fixes from Zac to +kill off unsafe fork use. Features: * cnf: make.conf.example.arc: Add for the arc arch. @@ -57,6 +56,13 @@ Bug fixes: * tests: Handle larger PAGE_SIZE in environment size check (bug #923368). +Cleanups: +* tests: Add a job with multiprocessing set to the 'spawn' method. + +* tests: Fix missing playground cleanups. + +* process.spawn: Add abstraction for os.fork() to allow migrating callers to it. + portage-3.0.61 (2024-01-05) -------------- diff --git a/meson.build b/meson.build index 604cc4eae1..aeb3f93e68 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'portage', 'c', - version : '3.0.61', + version : '3.0.62', license : 'GPL-2.0-or-later', meson_version : '>=0.58.0' )