mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-07-25 15:22:34 +00:00
```python
import yaml, glob, re, os
from fdroidserver import metadata
pat = re.compile(r'\[(https?://[^ \]]+)\s+([^\]]+)\]')
for f in glob.glob('metadata/*.yml'):
with open(f) as fp:
data = yaml.load(fp)
description = data.get('Description', '')
for m in pat.finditer(data.get('Description', '')):
link = m.group(1)
text = m.group(2)
print(f, link, text, flush=True)
description = description.replace(m.group(), '<a href="%s">%s</a>' % (link, text))
data['Description'] = description
app = metadata.App(data)
metadata.write_metadata(f, app)
```
```
sed -i 's,^ - true, - yes,' metadata/*.yml
sed -i 's,^ - false, - no,' metadata/*.yml
```
closes fdroid-website#510
27 lines
593 B
YAML
27 lines
593 B
YAML
Categories:
|
|
- Multimedia
|
|
License: GPL-3.0-only
|
|
SourceCode: https://github.com/F0x06/EddyMalou
|
|
IssueTracker: https://github.com/F0x06/EddyMalou/issues
|
|
|
|
AutoName: Eddy Malou
|
|
Description: |-
|
|
<a href="https://en.wikipedia.org/wiki/Soundboard_%28computer_program%29">Soundboard</a>
|
|
featuring Eddy Malou.
|
|
|
|
RepoType: git
|
|
Repo: https://github.com/F0x06/EddyMalou.git
|
|
|
|
Builds:
|
|
- versionName: '1.0'
|
|
versionCode: 1
|
|
commit: '1.0'
|
|
|
|
- versionName: '2.0'
|
|
versionCode: 2
|
|
commit: '2.0'
|
|
|
|
AutoUpdateMode: Version %v
|
|
UpdateCheckMode: Tags
|
|
CurrentVersion: '2.0'
|
|
CurrentVersionCode: 2
|