blob: 5dd8ffb0172e21edc7cb2a826526f9ddd457e83e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'docbook-xml'
version = '4.5'
# FIXME - no license defined
licenses = []
btype = BuildType.CUSTOM
stype = SourceType.TARBALL
url = 'https://docbook.org/xml/%(version)s/%(name)s-%(version)s.zip'
tarball_checksum = '4e4e037a2b83c98c6c94818390d4bdd3f6e10f6ec62dd79188594e26190dc7b4'
files_catalog = ['etc/catalog.xml']
async def install(self):
etc_path = os.path.join(self.config.prefix, 'etc')
if not os.path.exists(etc_path):
os.makedirs(etc_path)
etc_catalog_path = os.path.join(etc_path, 'catalog.xml')
new_catalog_path = os.path.join(self.build_dir, 'catalog.xml')
def read_catalog(path):
try:
with open(path, 'r') as f:
lines= f.readlines()
if len(lines) != 0:
lines = lines[2:-1]
except Exception as ex:
lines = ['']
return ''.join(lines)
etc_catalog_lines = read_catalog(etc_catalog_path)
new_catalog_lines = read_catalog(new_catalog_path)
if new_catalog_lines in etc_catalog_lines:
return
with open(etc_catalog_path, 'w') as f:
f.write("<?xml version='1.0'?>\n")
f.write('<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">\n')
f.write(etc_catalog_lines)
f.write("\n")
f.write(new_catalog_lines)
f.write("</catalog>")
|