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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 94B26138334 for ; Wed, 11 Jul 2018 09:08:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE8CFE0841; Wed, 11 Jul 2018 09:08:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF8F1E0841 for ; Wed, 11 Jul 2018 09:08:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 466D9335C9A for ; Wed, 11 Jul 2018 09:08:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0BABA359 for ; Wed, 11 Jul 2018 09:08:40 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1531298482.c18f4a4557dbc1b21cbf817d487e95e8dcdddfb1.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: NEWS RELEASE-NOTES setup.py X-VCS-Directories: / X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: c18f4a4557dbc1b21cbf817d487e95e8dcdddfb1 X-VCS-Branch: master Date: Wed, 11 Jul 2018 09:08:40 +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-Archives-Salt: f4b2b40f-66e2-4251-938d-1e921a636fc3 X-Archives-Hash: b10b4e5f811b5fcc9978018fc3100621 commit: c18f4a4557dbc1b21cbf817d487e95e8dcdddfb1 Author: Zac Medico gentoo org> AuthorDate: Wed Jul 11 08:41:22 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Jul 11 08:41:22 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=c18f4a45 Updates for portage-2.3.42 release NEWS | 10 ++++++++++ RELEASE-NOTES | 13 +++++++++++++ setup.py | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 3839b8bfb..f77c310e3 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,15 @@ News (mainly features/major bug fixes) +portage-2.3.42 +---------------- +* Sync with rsync quarantines data prior to verification, using the + rsync --link-dest option (can be disabled by setting + "sync-allow-hardlinks = no" in repos.conf). +* Sync with git quarantines data prior to verification, see + https://wiki.gentoo.org/wiki/Portage_Security#git-mirror_repo. +* Sync with shallow git pull is supported, by "setting sync-depth = 1" + in repos.conf. + portage-2.3.32 ---------------- * EAPI 7 support. diff --git a/RELEASE-NOTES b/RELEASE-NOTES index b8c3331e1..c5ccd0b4b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,6 +1,19 @@ Release Notes; upgrade information mainly. Features/major bugfixes are listed in NEWS +portage-2.3.42 +================================== +* Bug Fixes: + - Bug 552814 support shallow git pull by setting sync-depth = 1 + in repos.conf + - Bug 659564 AttributeError unevaluated_atom with emerge + --ignore-soname-deps=n + - Bug 660372 GitSync: abort checkout for signature problem + - Bug 660410 rsync: quarantine data prior to verification + - Bug 660426 Add python2 compatible coroutine support + - Bug 660732 GitSync: add key refresh retry + + portage-2.3.41 ================================== * Bug Fixes: diff --git a/setup.py b/setup.py index 6e8783b8f..3e4ccd5f6 100755 --- a/setup.py +++ b/setup.py @@ -662,7 +662,7 @@ class build_ext(_build_ext): setup( name = 'portage', - version = '2.3.41', + version = '2.3.42', url = 'https://wiki.gentoo.org/wiki/Project:Portage', author = 'Gentoo Portage Development Team', author_email = 'dev-portage@gentoo.org',