mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-04-14 19:46:54 +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
37 lines
877 B
YAML
37 lines
877 B
YAML
Categories:
|
|
- System
|
|
License: Apache-2.0
|
|
WebSite: https://code.google.com/p/0xbench
|
|
SourceCode: https://code.google.com/archive/p/0xbench/source/default/source
|
|
|
|
AutoName: 0xBenchmark
|
|
Summary: System benchmark
|
|
Description: |-
|
|
Comprehensive benchmark suite, covering:
|
|
|
|
* Java arithmetic
|
|
* Java garbage collection
|
|
* OpenGL|ES (3D)
|
|
* 2D canvas
|
|
* JavaScript engine
|
|
|
|
Allows to upload results to <a href="http://0xbenchmark.appspot.com/">community server</a>
|
|
for comparison and analysis.
|
|
|
|
Note: Native benchmarks requiring pre-installed binaries and root access are not
|
|
available in this build.
|
|
|
|
Builds:
|
|
- versionName: 1.1.5
|
|
versionCode: 9
|
|
commit: 8192b3f
|
|
target: android-7
|
|
buildjni:
|
|
- yes
|
|
ndk: r12b
|
|
|
|
ArchivePolicy: 0 versions
|
|
AutoUpdateMode: None
|
|
UpdateCheckMode: None
|
|
CurrentVersion: 1.1.5
|
|
CurrentVersionCode: 9
|