Skip to content

Commit

Permalink
debian packaging update: include pyspatialite
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Sep 1, 2011
1 parent 23c5f34 commit a4f1929
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion debian/changelog
Expand Up @@ -5,8 +5,9 @@ qgis (1.8.0) UNRELEASED; urgency=low
* add zonal statistics plugins and globe plugin
* migrate unstable package to dh_python2
* add ubuntu oneiric
* include internal pyspatialite in python-qgis

-- Jürgen E. Fischer <jef@norbit.de> Tue, 23 Aug 2011 22:25:08 +0200
-- Jürgen E. Fischer <jef@norbit.de> Thu, 01 Sep 2011 23:20:25 +0200

qgis (1.7.0) UNRELEASED; urgency=low

Expand Down
2 changes: 2 additions & 0 deletions debian/python-qgis.install.in
@@ -1,3 +1,5 @@
usr/lib/python*/*-packages/qgis/*.py
usr/lib/python*/*-packages/qgis/*.so
usr/lib/python*/*-packages/pyspatialite/*.py
usr/lib/python*/*-packages/pyspatialite/*.so
usr/lib/libqgispython.so.{QGIS_ABI}
4 changes: 3 additions & 1 deletion src/core/qgsexpression.cpp
Expand Up @@ -60,7 +60,9 @@ static QVariant tvl2variant( TVL v )
{
case False: return 0;
case True: return 1;
case Unknown: return QVariant();
case Unknown:
default:
return QVariant();
}
}

Expand Down

0 comments on commit a4f1929

Please sign in to comment.