summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac3
-rw-r--r--debian/control8
-rwxr-xr-xdebian/rules4
4 files changed, 10 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index cf2946f..5f588d3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,9 @@
slv2 (0.5.0) unstable; urgency=low
* Update LV2 UI header (API break)
+ * *** API BREAK *** (Interface version 7)
- -- Dave Robillard <dave@drobilla.net> Thu, 17 Jan 2008 14:36:28 -0500
+ -- Dave Robillard <dave@drobilla.net> Thu, 17 Jan 2008 18:34:29 -0500
slv2 (0.4.5) unstable; urgency=low
diff --git a/configure.ac b/configure.ac
index bee034c..fefc7ec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,6 +33,7 @@ AM_INIT_AUTOMAKE
# 0.4.3 = 6,0,0 (oops, should have been 6,3,0)
# 0.4.4 = 7,0,1
# 0.4.5 = 7,0,1
+# 0.5.0 = 8,0,0
SLV2_VERSION="0.5.0"
SLV2_API_CURRENT="8"
@@ -68,7 +69,7 @@ AM_PROG_CC_C_O
AC_PROG_LIBTOOL
# LV2 core package
-PKG_CHECK_MODULES(LV2CORE, lv2core >= 1)
+PKG_CHECK_MODULES(LV2CORE, lv2core >= 1, , [AC_ERROR([SLV2 Requires the LV2 core package (http://lv2plug.in/spec/)])])
# Check for debugging flag
debug="no"
diff --git a/debian/control b/debian/control
index 9418b51..52dc4f6 100644
--- a/debian/control
+++ b/debian/control
@@ -6,20 +6,20 @@ Standards-Version: 3.7.3
Section: libs
Package: slv2
-Depends: slv2-6
+Depends: slv2-8
Architecture: any
Description: A library for simple use of LV2 plugins
SLV2 is a library geared towards music and audio applications which makes
the use of LV2 plugins <http://lv2plug.in> as simple as possible.
Package: slv2-dev
-Depends: slv2-6-dev
+Depends: slv2-8-dev
Architecture: any
Description: Development files (headers) for SLV2
Files required for compiling programs which use SLV2, and developer
documentation.
-Package: slv2-6
+Package: slv2-8
Section: libs
Architecture: any
Pre-Depends: make
@@ -28,7 +28,7 @@ Description: A library for simple use of LV2 plugins
SLV2 is a library geared towards music and audio applications which makes
the use of LV2 plugins <http://lv2plug.in> as simple as possible.
-Package: slv2-6-dev
+Package: slv2-8-dev
Section: libdevel
Architecture: any
Pre-Depends: make
diff --git a/debian/rules b/debian/rules
index 9f3eca8..7ac2503 100755
--- a/debian/rules
+++ b/debian/rules
@@ -63,8 +63,8 @@ install: build
dh_clean -k
dh_installdirs
- $(MAKE) DESTDIR=$(CURDIR)/debian/slv2-6 install-exec
- $(MAKE) DESTDIR=$(CURDIR)/debian/slv2-6-dev install-data install-man
+ $(MAKE) DESTDIR=$(CURDIR)/debian/slv2-8 install-exec
+ $(MAKE) DESTDIR=$(CURDIR)/debian/slv2-8-dev install-data install-man
# Build architecture-independent files here.