bumped version to alpha, made sure that .deb package version is larger than last release but smaller than final one

git-svn-id: https://zeitsenke.de/svn/SyncEvolution/trunk@587 15ad00c4-1369-45f4-8270-35d70d36bdcd
This commit is contained in:
Patrick Ohly 2008-04-16 17:37:10 +00:00
parent edfe7b8714
commit 2b9892cbf5
2 changed files with 3 additions and 2 deletions

View File

@ -37,7 +37,7 @@ $(IPHONE_FILENAME) : all
TYPE_deb = -D
TYPE_rpm = -R
REQUIRES_deb = --requires="`dpkg-shlibdeps -L$(srcdir)/src/shlibs.local -O src/syncevolution | sed -e 's/[^=]*=//'`"
VERSION_deb = 1:$(VERSION)
VERSION_deb = `echo 1:$(VERSION) | perl -p -e 's/(\d+\.\d+)([-a-z0-9]+)/sprintf("%0.1f+$$1$$2", ($$1 - 0.1))/e'`
VERSION_rpm = `echo $(VERSION) | sed -e s/-/_/g`
RELEASE = 2

View File

@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/syncevolution.cpp)
AM_INIT_AUTOMAKE(syncevolution, 0.7)
AM_INIT_AUTOMAKE(syncevolution, 0.8-alpha1)
AM_CONFIG_HEADER(config.h)
AC_LIBTOOL_DLOPEN
@ -256,6 +256,7 @@ if test "$enable_ebook" = "yes"; then
enable_any="yes"
fi
AM_CONDITIONAL([ENABLE_ECAL], [test "$enable_ecal" == "yes"])
if test "$enable_ecal" = "yes"; then
test "x${ECALFOUND}" == "xyes" || AC_MSG_ERROR([--enable-ecal requires pkg-config information for libecal, which was not found"])
AC_DEFINE(ENABLE_ECAL, 1, [libecal available])