mirror of https://github.com/apache/lucene.git
Fix gpg key download in release wizard. (#279)
Old URL to check the apache id gpg key is no longer available.
This commit is contained in:
parent
54179e9372
commit
059d06cec7
|
@ -1103,8 +1103,9 @@ def configure_pgp(gpg_todo):
|
||||||
id = str(input("Please enter your Apache id: (ENTER=skip) "))
|
id = str(input("Please enter your Apache id: (ENTER=skip) "))
|
||||||
if id.strip() == '':
|
if id.strip() == '':
|
||||||
return False
|
return False
|
||||||
all_keys = load('https://home.apache.org/keys/group/lucene.asc')
|
key_url = "https://home.apache.org/keys/committer/%s.asc" % id.strip()
|
||||||
lines = all_keys.splitlines()
|
committer_key = load(key_url)
|
||||||
|
lines = committer_key.splitlines()
|
||||||
keyid_linenum = None
|
keyid_linenum = None
|
||||||
for idx, line in enumerate(lines):
|
for idx, line in enumerate(lines):
|
||||||
if line == 'ASF ID: %s' % id:
|
if line == 'ASF ID: %s' % id:
|
||||||
|
@ -1114,7 +1115,7 @@ def configure_pgp(gpg_todo):
|
||||||
keyid_line = lines[keyid_linenum]
|
keyid_line = lines[keyid_linenum]
|
||||||
assert keyid_line.startswith('LDAP PGP key: ')
|
assert keyid_line.startswith('LDAP PGP key: ')
|
||||||
gpg_id = keyid_line[14:].replace(" ", "")[-8:]
|
gpg_id = keyid_line[14:].replace(" ", "")[-8:]
|
||||||
print("Found gpg key id %s on file at Apache (https://home.apache.org/keys/group/lucene.asc)" % gpg_id)
|
print("Found gpg key id %s on file at Apache (%s)" % (gpg_id, key_url))
|
||||||
else:
|
else:
|
||||||
print(textwrap.dedent("""\
|
print(textwrap.dedent("""\
|
||||||
Could not find your GPG key from Apache servers.
|
Could not find your GPG key from Apache servers.
|
||||||
|
|
Loading…
Reference in New Issue