mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
wscript: drop unused APPNAME assignment in libs
https://waf.io/book/ says By default, the project name and version are set to noname and 1.0. To change them, it is necessary to provide two additional variables in the top-level project file - and waf code inspection confirms that waf itself only will use the top level APPNAME. Also, the 'waf dist' comment doesn't seem relevant - especially after this change - and is removed too. (Note: libs/evoral/wscript and libs/temporal/wscript still use APPNAME for other purposes.)
This commit is contained in:
parent
3b4cf9191c
commit
a0916ef368
19 changed files with 0 additions and 42 deletions
|
|
@ -13,9 +13,6 @@ AUDIOGRAPHER_VERSION = '0.0.0'
|
||||||
# 0.0.0 = 0,0,0
|
# 0.0.0 = 0,0,0
|
||||||
AUDIOGRAPHER_LIB_VERSION = '0.0.0'
|
AUDIOGRAPHER_LIB_VERSION = '0.0.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'audiographer'
|
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
top = '.'
|
top = '.'
|
||||||
out = 'build'
|
out = 'build'
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,6 @@ CANVAS_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
CANVAS_LIB_VERSION = '0.0.0'
|
CANVAS_LIB_VERSION = '0.0.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'canvas'
|
|
||||||
I18N_PACKAGE = 'libcanvas'
|
I18N_PACKAGE = 'libcanvas'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,6 @@ EVORAL_VERSION = '0.0.0'
|
||||||
# 0.0.0 = 0,0,0
|
# 0.0.0 = 0,0,0
|
||||||
EVORAL_LIB_VERSION = '0.0.0'
|
EVORAL_LIB_VERSION = '0.0.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'evoral'
|
APPNAME = 'evoral'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@ MINOR = '0'
|
||||||
MICRO = '1'
|
MICRO = '1'
|
||||||
LIBFLUIDSYNTH_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
LIBFLUIDSYNTH_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'libltc'
|
|
||||||
I18N_PACKAGE = 'libfluidsynth'
|
I18N_PACKAGE = 'libfluidsynth'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,6 @@ GTKMM2EXT_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
GTKMM2EXT_LIB_VERSION = '0.8.3'
|
GTKMM2EXT_LIB_VERSION = '0.8.3'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'gtkmm2ext'
|
|
||||||
I18N_PACKAGE = 'gtkmm2ext3'
|
I18N_PACKAGE = 'gtkmm2ext3'
|
||||||
|
|
||||||
gtkmm2ext_sources = [
|
gtkmm2ext_sources = [
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,6 @@ import sys
|
||||||
|
|
||||||
HIDAPI_VERSION = '0.8.0'
|
HIDAPI_VERSION = '0.8.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'hidapi'
|
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
top = '.'
|
top = '.'
|
||||||
out = 'build'
|
out = 'build'
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,6 @@ LIBLTC_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
LIBLTC_LIB_VERSION = '1.1.1'
|
LIBLTC_LIB_VERSION = '1.1.1'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'libltc'
|
|
||||||
I18N_PACKAGE = 'libltc'
|
I18N_PACKAGE = 'libltc'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
from waflib.extras import autowaf as autowaf
|
from waflib.extras import autowaf as autowaf
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'liblua'
|
|
||||||
I18N_PACKAGE = 'liblua'
|
I18N_PACKAGE = 'liblua'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
|
|
@ -13,9 +13,6 @@ LIBMIDIPP_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
LIBMIDIPP_LIB_VERSION = '4.1.0'
|
LIBMIDIPP_LIB_VERSION = '4.1.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'libmidipp'
|
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
top = '.'
|
top = '.'
|
||||||
out = 'build'
|
out = 'build'
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,6 @@ LIBPBD_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
LIBPBD_LIB_VERSION = '4.1.0'
|
LIBPBD_LIB_VERSION = '4.1.0'
|
||||||
LIBPBD_MAJOR_VERSION = '4'
|
LIBPBD_MAJOR_VERSION = '4'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'libpbd'
|
|
||||||
I18N_PACKAGE = 'libpbd4'
|
I18N_PACKAGE = 'libpbd4'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ LIBPTFORMAT_VERSION = '0.0.0'
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
LIBPTFORMAT_LIB_VERSION = '0.0.0'
|
LIBPTFORMAT_LIB_VERSION = '0.0.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'libptformat'
|
|
||||||
I18N_PACKAGE = 'libptformat'
|
I18N_PACKAGE = 'libptformat'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,6 @@ QM_DSP_VERSION = '1.7.1'
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
QM_DSP_LIB_VERSION = '1.7.1'
|
QM_DSP_LIB_VERSION = '1.7.1'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'qm-dsp'
|
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
top = '.'
|
top = '.'
|
||||||
out = 'build'
|
out = 'build'
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,6 @@ LIBSURFACES_VERSION = '4.1.0'
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
LIBSURFACES_LIB_VERSION = '4.1.0'
|
LIBSURFACES_LIB_VERSION = '4.1.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'libsurfaces'
|
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
top = '.'
|
top = '.'
|
||||||
out = 'build'
|
out = 'build'
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@ TEMPORAL_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
TEMPORAL_LIB_VERSION = '0.0.0'
|
TEMPORAL_LIB_VERSION = '0.0.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'temporal'
|
APPNAME = 'temporal'
|
||||||
I18N_PACKAGE = 'libtemporal'
|
I18N_PACKAGE = 'libtemporal'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,6 @@ import os
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
VAMP_PYIN_LIB_VERSION = '0.0.0'
|
VAMP_PYIN_LIB_VERSION = '0.0.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'libardourvamppyin'
|
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
top = '.'
|
top = '.'
|
||||||
out = 'build'
|
out = 'build'
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,6 @@ WAVEVIEW_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
WAVEVIEW_LIB_VERSION = '0.0.0'
|
WAVEVIEW_LIB_VERSION = '0.0.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'waveview'
|
|
||||||
I18N_PACKAGE = 'libwaveview'
|
I18N_PACKAGE = 'libwaveview'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,6 @@ WIDGETS_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
WIDGETS_LIB_VERSION = '0.0.0'
|
WIDGETS_LIB_VERSION = '0.0.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'widgets'
|
|
||||||
I18N_PACKAGE = 'libwidgets'
|
I18N_PACKAGE = 'libwidgets'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,6 @@ ZCONVOLVER_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
ZCONVOLVER_LIB_VERSION = '4.0.0'
|
ZCONVOLVER_LIB_VERSION = '4.0.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'zita-convolver'
|
|
||||||
I18N_PACKAGE = 'libzita-convolver'
|
I18N_PACKAGE = 'libzita-convolver'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,6 @@ ZRESAMPLER_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
||||||
# micro increment <=> no interface changes
|
# micro increment <=> no interface changes
|
||||||
ZRESAMPLER_LIB_VERSION = '1.6.0'
|
ZRESAMPLER_LIB_VERSION = '1.6.0'
|
||||||
|
|
||||||
# Variables for 'waf dist'
|
|
||||||
APPNAME = 'zita-resampler'
|
|
||||||
I18N_PACKAGE = 'libzita-resampler'
|
I18N_PACKAGE = 'libzita-resampler'
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue