rpathsync / speedbump

Application for updating versions of packages in a Conary based Linux distribution based on upstream version information.

Clone this repository (size: 98.1 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/rpathsync/speedbump/
commit 52: bfb1692d93c1
parent 51: ea918eb3e49a
branch: default
'pre' now considered equivelent to 'alpha'
Jonathan Smith
3 years ago

Changed (Δ33 bytes):

raw changeset »

speedbump/version.py (5 lines added, 0 lines removed)

Up to file-list speedbump/version.py:

@@ -26,9 +26,14 @@ allDigits = re.compile(r'(\d*)')
26
26
digits = re.compile(r'\d')
27
27
28
28
status = { 'development': 0,
29
29
30
           'alpha':       1,
31
           'pre':         1,
32
30
33
           'beta':        2,
34
31
35
           'rc':          3,
36
32
37
           'final':       4, }
33
38
34
39
possibleOptions = status.keys()