Gentoo Archives: gentoo-portage-dev

From: "Michał Górny" <mgorny@g.o>
To: gentoo-portage-dev@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: [gentoo-portage-dev] [PATCH] const: Remove unused MANIFEST1_REQUIRED_HASH
Date: Thu, 15 Jun 2017 07:27:37
Message-Id: 20170615072725.19964-1-mgorny@gentoo.org
1 The MANIFEST1_REQUIRED_HASH constant is not used anywhere, so it should
2 be possible to remove it safely.
3 ---
4 pym/portage/const.py | 1 -
5 1 file changed, 1 deletion(-)
6
7 diff --git a/pym/portage/const.py b/pym/portage/const.py
8 index 7e415ba9c..052d4ca2f 100644
9 --- a/pym/portage/const.py
10 +++ b/pym/portage/const.py
11 @@ -206,7 +206,6 @@ EAPI = 6
12
13 HASHING_BLOCKSIZE = 32768
14 MANIFEST1_HASH_FUNCTIONS = ("MD5", "SHA256", "RMD160")
15 -MANIFEST1_REQUIRED_HASH = "MD5"
16
17 # Past events:
18 #
19 --
20 2.13.1

Replies