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 43
|
#!/usr/bin/python
"""
release.py: Get back the upstream releaseNotes to generate the correponsing
ChangeLog file
"""
import codecs
import json
import re
import subprocess
import sys
import requests
__author__ = "P. Thierry"
__license__ = "GPL2+"
__version__ = "1.0"
__maintainer__ = "P. Thierry"
__email__ = "phil@reseau-libre.net"
CMD = 'dpkg-parsechangelog -ldebian/changelog -S Version'
BASEURL = 'https://api.github.com/repos/OpenSCAP/openscap-daemon/releases/tags/'
# runing subprocess and waiting for its end
P = subprocess.Popen(CMD, shell=True, stdout=subprocess.PIPE)
(STDOUT, STDERR) = P.communicate()
P_STATUS = P.wait()
# cleaning Debian subversion
VERSION = re.sub(r"-.+$", "", STDOUT)
# loading the current version ReleaseNote.md from Github
print 'Loading ReleaseNotes from ' + BASEURL + VERSION
R = requests.get(BASEURL + VERSION)
if R.ok:
REPOITEM = json.loads(R.text or R.content)
with codecs.open("changelog", "w", "utf-8") as ch:
ch.write("# openscap-daemon" + " " + REPOITEM['tag_name'] + "\r\n")
ch.write("\r\n")
ch.write(REPOITEM['body'])
else:
print "error loading request: got " + str(R.status_code)
sys.exit(1)
|