[Pkg-mono-svn-commits] rev 2555 - xsp/trunk/debian

Mirco Bauer meebey-guest at costa.debian.org
Sun May 21 18:52:15 UTC 2006


Author: meebey-guest
Date: 2006-05-21 18:52:12 +0000 (Sun, 21 May 2006)
New Revision: 2555

Modified:
   xsp/trunk/debian/changelog
   xsp/trunk/debian/control
   xsp/trunk/debian/rules
Log:
- 1.1.15-1 release



Modified: xsp/trunk/debian/changelog
===================================================================
--- xsp/trunk/debian/changelog	2006-05-20 14:46:41 UTC (rev 2554)
+++ xsp/trunk/debian/changelog	2006-05-21 18:52:12 UTC (rev 2555)
@@ -1,3 +1,12 @@
+xsp (1.1.15-1) unstable; urgency=low
+
+  * New upstream release
+  * Mirco 'meebey' Bauer
+    + Added MONO_ABI_(INCOMP|COMP)_VERSION variable to debian/rules, because
+      the compatible versions is not always equal to the XSP version.
+
+ -- Debian Mono Group <pkg-mono-group at lists.alioth.debian.org>  Wed, 17 May 2006 20:32:00 +0200
+
 xsp (1.1.13-1) unstable; urgency=low
 
   * New upstream release

Modified: xsp/trunk/debian/control
===================================================================
--- xsp/trunk/debian/control	2006-05-20 14:46:41 UTC (rev 2554)
+++ xsp/trunk/debian/control	2006-05-21 18:52:12 UTC (rev 2555)
@@ -8,7 +8,7 @@
 
 Package: mono-xsp-base
 Architecture: all
-Depends: ${cli:Depends}, mono-mcs, mono-classlib-1.0 (>= ${current-version}), mono-classlib-1.0 (<< ${next-version})
+Depends: ${cli:Depends}, mono-mcs, mono-classlib-1.0 (>= ${mono-abi-comp-version}), mono-classlib-1.0 (<< ${mono-abi-incomp-version})
 Conflicts: mono-utils (<= 1.1.9.2-1)
 Description: base libraries for XSP 1.1
  This is the core libraries needed to install the XSP application,
@@ -17,7 +17,7 @@
 
 Package: mono-xsp2-base
 Architecture: all
-Depends: ${cli:Depends}, mono-gmcs, mono-classlib-2.0 (>= ${current-version}), mono-classlib-2.0 (<< ${next-version})
+Depends: ${cli:Depends}, mono-gmcs, mono-classlib-2.0 (>= ${mono-abi-comp-version}), mono-classlib-2.0 (<< ${mono-abi-incomp-version})
 Description: base libraries for XSP 2.0
  This is the core libraries needed to install the XSP2 application,
  either through the standalone version (XSP2) or the Apache module

Modified: xsp/trunk/debian/rules
===================================================================
--- xsp/trunk/debian/rules	2006-05-20 14:46:41 UTC (rev 2554)
+++ xsp/trunk/debian/rules	2006-05-21 18:52:12 UTC (rev 2555)
@@ -10,6 +10,9 @@
 PKG_VERSION ?= $(shell echo $(DPKG_VERSION) | cut -f 1 -d '-' | cut -f 1-3 -d '.')
 NEXT_PKG_VERSION ?= $(shell echo $(PKG_VERSION) | perl -e '$$_=<>;/\.(\d+)$$/;$$a=$$1+1;s/\.(\d+)$$/.$$a/;print;')
 
+MONO_ABI_COMP_VERSION = 1.1.13
+MONO_ABI_INCOMP_VERSION = 1.1.14
+
 export MONO_SHARED_DIR=$(CURDIR)
 
 configure: configure-stamp templates.pot
@@ -152,7 +155,8 @@
 	dh_shlibdeps
 	dh_clideps -d
 	dh_gencontrol -- \
-		-Vcurrent-version=$(PKG_VERSION) -Vnext-version=$(NEXT_PKG_VERSION)
+		-Vmono-abi-comp-version=$(MONO_ABI_COMP_VERSION) \
+		-Vmono-abi-incomp-version=$(MONO_ABI_INCOMP_VERSION)
 	dh_md5sums
 	dh_builddeb
 




More information about the Pkg-mono-svn-commits mailing list