Created
August 14, 2014 19:24
-
-
Save shanemhansen/3330d5edc8799631af3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import re | |
version = re.compile('(?P<package>[a-zA-Z0-9_]+) \((?P<version>[^ ]+)\)') | |
#read release from changelog | |
l = open('debian/changelog').readline()[:-1] | |
m = re.match(version, l) | |
print m.group("version") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment