mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
11 lines
387 B
Python
11 lines
387 B
Python
import pkg_resources
|
|
import datetime
|
|
|
|
version = pkg_resources.get_distribution('vdirsyncer').version
|
|
version = version.replace('.dev', '~')
|
|
print('vdirsyncer-latest ({}) unstable; urgency=medium'.format(version))
|
|
print('''
|
|
* Dummy changelog
|
|
|
|
-- Markus Unterwaditzer <markus-debianpkg@unterwaditzer.net> {}
|
|
'''.format(datetime.datetime.now().strftime('%a, %d %b %Y %H:%M:%S +0200')))
|