remove liberapayID

This commit is contained in:
linsui 2023-01-03 19:00:05 +08:00 committed by Hans-Christoph Steiner
parent 96d80fbd7c
commit 5858d8fcb4
13 changed files with 1 additions and 22 deletions

View file

@ -553,7 +553,6 @@ def package_metadata(app, repodir):
"Bitcoin",
"FlattrID",
"Liberapay",
"LiberapayID",
"Litecoin",
"OpenCollective",
):
@ -1173,7 +1172,6 @@ def make_v0(apps, apks, repodir, repodict, requestsdict, fdroid_signing_key_fing
addElementNonEmpty('bitcoin', app.Bitcoin, doc, apel)
addElementNonEmpty('litecoin', app.Litecoin, doc, apel)
addElementNonEmpty('flattr', app.FlattrID, doc, apel)
addElementNonEmpty('liberapay', app.LiberapayID, doc, apel)
addElementNonEmpty('openCollective', app.OpenCollective, doc, apel)
# These elements actually refer to the current version (i.e. which

View file

@ -69,7 +69,6 @@ yaml_app_field_order = [
'Donate',
'FlattrID',
'Liberapay',
'LiberapayID',
'OpenCollective',
'Bitcoin',
'Litecoin',
@ -132,7 +131,6 @@ class App(dict):
self.Donate = None
self.FlattrID = None
self.Liberapay = None
self.LiberapayID = None
self.OpenCollective = None
self.Bitcoin = None
self.Litecoin = None
@ -404,10 +402,6 @@ valuetypes = {
VALID_USERNAME_REGEX,
['Liberapay']),
FieldValidator("Liberapay ID",
r'^[0-9]+$',
['LiberapayID']),
FieldValidator("Open Collective",
VALID_USERNAME_REGEX,
['OpenCollective']),