[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

compizconfig-python: Changes to 'debian-unstable'



 VERSION              |    2 +-
 debian/changelog     |    6 ++++++
 debian/control       |    2 +-
 src/compizconfig.pyx |   12 +++++++++---
 4 files changed, 17 insertions(+), 5 deletions(-)

New commits:
commit 3fc15bb7cde7ed3f1d186949fc89d05d51d33f7a
Author: Sean Finney <seanius@debian.org>
Date:   Tue Jun 3 01:07:01 2008 +0200

    new upstream release

diff --git a/debian/changelog b/debian/changelog
index df76280..26dac84 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+compizconfig-python (0.7.6-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Sean Finney <seanius@debian.org>  Tue, 03 Jun 2008 01:06:37 +0200
+
 compizconfig-python (0.7.4-1) unstable; urgency=low
 
   * New upstream release.
diff --git a/debian/control b/debian/control
index 25d036e..b7f2e60 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: compizconfig-python
 Priority: extra
 Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
 Uploaders: Sean Finney <seanius@debian.org>
-Build-Depends: autoconf, automake1.9, autotools-dev, compiz-dev (>= 0.7.3), debhelper (>= 5), libcompizconfig-dev (>= 0.7.3), libglib2.0-dev, libtool, libxml2-dev, libxslt1-dev, python-all-dev, python-pyrex
+Build-Depends: autoconf, automake1.9, autotools-dev, compiz-dev (>= 0.7.6), debhelper (>= 5), libcompizconfig-dev (>= 0.7.6), libglib2.0-dev, libtool, libxml2-dev, libxslt1-dev, python-all-dev, python-pyrex
 Standards-Version: 3.7.2
 Section: x11
 Vcs-Git: git://git.debian.org/git/pkg-xorg/bling/compizconfig-python.git

commit 573f90f5493d16e131b49890fc2a3978cb7be05d
Author: Guillaume Seguin <guillaume@segu.in>
Date:   Sat May 31 14:09:02 2008 +0200

    * Bump version to 0.7.6

diff --git a/VERSION b/VERSION
index 130f2d5..6410fd5 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-VERSION=0.7.5
+VERSION=0.7.6

commit 751f8550b8094c688be136098555db37ef0a4907
Author: Christopher Williams <crdlb@compiz-fusion.org>
Date:   Fri Apr 25 02:41:56 2008 -0400

    Add action info support

diff --git a/src/compizconfig.pyx b/src/compizconfig.pyx
index 3a7a3fa..d306a88 100644
--- a/src/compizconfig.pyx
+++ b/src/compizconfig.pyx
@@ -143,10 +143,14 @@ cdef struct CCSSettingListInfo:
     CCSSettingType listType
     void *         listInfo # actually CCSSettingInfo *, works around pyrex
 
+cdef struct CCSSettingActionInfo:
+    Bool internal
+
 cdef union CCSSettingInfo:
-    CCSSettingIntInfo   forInt
-    CCSSettingFloatInfo forFloat
-    CCSSettingListInfo  forList
+    CCSSettingIntInfo    forInt
+    CCSSettingFloatInfo  forFloat
+    CCSSettingListInfo   forList
+    CCSSettingActionInfo forAction
 
 cdef struct CCSSettingValue:
     CCSSettingValueUnion value
@@ -559,6 +563,8 @@ cdef class Setting:
         elif t == TypeFloat:
             info = (i.forFloat.min, i.forFloat.max,
                     i.forFloat.precision)
+        elif t in (TypeKey, TypeButton, TypeEdge, TypeBell):
+            info = (bool (i.forAction.internal),)
         if self.ccsSetting.type == TypeList:
             info = (SettingTypeString[t], info)
         self.info = info

commit 622170e6a2c649aa4aa9147fdd97c6b39f981022
Author: Guillaume Seguin <guillaume@segu.in>
Date:   Fri Apr 4 00:17:32 2008 +0200

    * Bump version to 0.7.5

diff --git a/VERSION b/VERSION
index 8eafcce..130f2d5 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-VERSION=0.7.4
+VERSION=0.7.5


Reply to: