Changeset 5217
- Timestamp:
- Jun 18, 2017, 5:17:08 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/loadStore.py
r5214 r5217 367 367 f.write(" <pkgname>"+app+"</pkgname>\n") 368 368 f.write(" <name>"+name+"</name>\n") 369 f.write(" <summary>"+name+" AppImage Bundle</summary>\n")370 369 f.write(" <metadata_license>CC0-1.0</metadata_license>\n") 371 370 f.write(" <provides><binary>"+app+"</binary></provides>\n") … … 380 379 description=self._get_description(name,infoPage) 381 380 self.descDict.update({name:description}) 382 f.write(" <description><p>This is an AppImage bundle of app "+name+". It hasn't been tested by our developers and comes from a 3rd party dev team. Please use it carefully.</p><p>"+description+"</p></description>\n") 381 summary=' '.join(list(description.split(' ')[:8])) 382 description="This is an AppImage bundle of app "+name+". It hasn't been tested by our developers and comes from a 3rd party dev team. Please use it carefully." 383 if not summary: 384 summary=' '.join(list(description.split(' ')[:8])) 385 f.write(" <description><p></p><p>"+description+"</p></description>\n") 386 f.write(" <summary>"+summary+"...</summary>\n") 383 387 f.write(" <bundle type=\"appimage\">"+app+"</bundle>\n") 384 388 f.write(" <keywords>\n")
Note: See TracChangeset
for help on using the changeset viewer.