summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-04-09 13:46:12 +0200
committerDavid Robillard <d@drobilla.net>2020-04-09 14:19:10 +0200
commit662bcbc0eceab2c3d4013efbd99861e451c8cf3b (patch)
treebe26edcf1fb4acc35540d76bf3ee59d73361331b /wscript
parentc8a4cdbceb6d87f441ecb4e4aa6fcbd18e013a56 (diff)
downloadganv-662bcbc0eceab2c3d4013efbd99861e451c8cf3b.tar.gz
ganv-662bcbc0eceab2c3d4013efbd99861e451c8cf3b.tar.bz2
ganv-662bcbc0eceab2c3d4013efbd99861e451c8cf3b.zip
Ganv 1.6.0v1.6.0
Diffstat (limited to 'wscript')
-rw-r--r--wscript19
1 files changed, 7 insertions, 12 deletions
diff --git a/wscript b/wscript
index 8b94a15..37487e9 100644
--- a/wscript
+++ b/wscript
@@ -9,7 +9,7 @@ from waflib.extras import autowaf
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
-GANV_VERSION = '1.5.4'
+GANV_VERSION = '1.6.0'
GANV_MAJOR_VERSION = '1'
# Mandatory waf variables
@@ -18,6 +18,12 @@ VERSION = GANV_VERSION # Package version for waf dist
top = '.' # Source directory
out = 'build' # Build directory
+# Release variables
+uri = 'http://drobilla.net/sw/ganv'
+dist_pattern = 'http://download.drobilla.net/ganv-%d.%d.%d.tar.bz2'
+post_tags = ['Hacking', 'LAD', 'Ganv']
+
+
def options(ctx):
ctx.load('compiler_c')
ctx.load('compiler_cxx')
@@ -229,14 +235,3 @@ def build(bld):
def i18n(bld):
autowaf.build_i18n(bld, '..', 'ganv', APPNAME, ganv_source,
'David Robillard')
-
-def posts(ctx):
- path = str(ctx.path.abspath())
- autowaf.news_to_posts(
- os.path.join(path, 'NEWS'),
- {'title' : 'Ganv',
- 'description' : autowaf.get_blurb(os.path.join(path, 'README')),
- 'dist_pattern' : 'http://download.drobilla.net/ganv-%s.tar.bz2'},
- { 'Author' : 'drobilla',
- 'Tags' : 'Hacking, LAD, LV2, Ganv' },
- os.path.join(out, 'posts'))