Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Wed, 11 Jul 2018 09:08:44
Message-Id: 1531298482.c18f4a4557dbc1b21cbf817d487e95e8dcdddfb1.zmedico@gentoo
1 commit: c18f4a4557dbc1b21cbf817d487e95e8dcdddfb1
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 11 08:41:22 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 11 08:41:22 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=c18f4a45
7
8 Updates for portage-2.3.42 release
9
10 NEWS | 10 ++++++++++
11 RELEASE-NOTES | 13 +++++++++++++
12 setup.py | 2 +-
13 3 files changed, 24 insertions(+), 1 deletion(-)
14
15 diff --git a/NEWS b/NEWS
16 index 3839b8bfb..f77c310e3 100644
17 --- a/NEWS
18 +++ b/NEWS
19 @@ -1,5 +1,15 @@
20 News (mainly features/major bug fixes)
21
22 +portage-2.3.42
23 +----------------
24 +* Sync with rsync quarantines data prior to verification, using the
25 + rsync --link-dest option (can be disabled by setting
26 + "sync-allow-hardlinks = no" in repos.conf).
27 +* Sync with git quarantines data prior to verification, see
28 + https://wiki.gentoo.org/wiki/Portage_Security#git-mirror_repo.
29 +* Sync with shallow git pull is supported, by "setting sync-depth = 1"
30 + in repos.conf.
31 +
32 portage-2.3.32
33 ----------------
34 * EAPI 7 support.
35
36 diff --git a/RELEASE-NOTES b/RELEASE-NOTES
37 index b8c3331e1..c5ccd0b4b 100644
38 --- a/RELEASE-NOTES
39 +++ b/RELEASE-NOTES
40 @@ -1,6 +1,19 @@
41 Release Notes; upgrade information mainly.
42 Features/major bugfixes are listed in NEWS
43
44 +portage-2.3.42
45 +==================================
46 +* Bug Fixes:
47 + - Bug 552814 support shallow git pull by setting sync-depth = 1
48 + in repos.conf
49 + - Bug 659564 AttributeError unevaluated_atom with emerge
50 + --ignore-soname-deps=n
51 + - Bug 660372 GitSync: abort checkout for signature problem
52 + - Bug 660410 rsync: quarantine data prior to verification
53 + - Bug 660426 Add python2 compatible coroutine support
54 + - Bug 660732 GitSync: add key refresh retry
55 +
56 +
57 portage-2.3.41
58 ==================================
59 * Bug Fixes:
60
61 diff --git a/setup.py b/setup.py
62 index 6e8783b8f..3e4ccd5f6 100755
63 --- a/setup.py
64 +++ b/setup.py
65 @@ -662,7 +662,7 @@ class build_ext(_build_ext):
66
67 setup(
68 name = 'portage',
69 - version = '2.3.41',
70 + version = '2.3.42',
71 url = 'https://wiki.gentoo.org/wiki/Project:Portage',
72 author = 'Gentoo Portage Development Team',
73 author_email = 'dev-portage@g.o',