diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 41 | ||||
-rw-r--r-- | debian/control | 3 | ||||
-rw-r--r-- | debian/libappindicator1.symbols | 2 | ||||
-rw-r--r-- | debian/libappindicator3-1.symbols | 2 | ||||
-rwxr-xr-x | debian/rules | 1 |
5 files changed, 43 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog index 88621f2..7cd43a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,42 @@ -libappindicator (0.4.1-0ubuntu1~ppa1) oneiric; urgency=low +libappindicator (0.4.1-0ubuntu4) precise; urgency=low - * New upstream release (0.4.0). + * rebuild for libindicator7 + * bindings/python/Makefile.am + - Don't specify pyglib-2.0-python2.6 in LDFLAGS + * debian/rules + - dhr_autoreconf + * debian/control + - added build dep on dh-autoreconf + * debian/libappindicator1.symbols, debian/libappindicator3-1.symbols + - added symbols + + -- Ken VanDine <ken.vandine@canonical.com> Wed, 25 Jan 2012 09:49:38 -0500 + +libappindicator (0.4.1-0ubuntu3) precise; urgency=low + + * s/pyglib-2.0-python2.6/pyglib-2.0-python2.7/ for python bindings. + + -- Adam Conrad <adconrad@ubuntu.com> Sat, 03 Dec 2011 21:28:16 -0700 + +libappindicator (0.4.1-0ubuntu2) oneiric; urgency=low + + * src/app-indicator.c: + - fix fallback icon of the GtkStatusIcon (LP: #820080), cherry + pick of r221 from lp:libappindicator + + -- Michael Vogt <michael.vogt@ubuntu.com> Fri, 30 Sep 2011 22:57:46 +0200 + +libappindicator (0.4.1-0ubuntu1) oneiric; urgency=low + + [ Ted Gould ] + * New upstream release. * Fix VAPI file for Vala bindings (LP: #789588) - * New upstream release (0.4.1). - * Fix build. - -- Ted Gould <ted@ubuntu.com> Wed, 28 Sep 2011 12:53:44 -0500 + [ Ken VanDine ] + * debian/control + - build depend on valac-0.14 + + -- Ken VanDine <ken.vandine@canonical.com> Wed, 28 Sep 2011 14:41:38 -0400 libappindicator (0.3.91-0ubuntu1) oneiric; urgency=low diff --git a/debian/control b/debian/control index a61696a..1f2a597 100644 --- a/debian/control +++ b/debian/control @@ -31,7 +31,8 @@ Build-Depends: debhelper (>= 7.0), gir1.2-glib-2.0, gir1.2-gtk-2.0, gir1.2-gtk-3.0, - valac-0.12 + dh-autoreconf, + valac-0.14 Standards-Version: 3.9.1 Homepage: https://launchpad.net/libappindicator Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-desktop/libappindicator/ubuntu diff --git a/debian/libappindicator1.symbols b/debian/libappindicator1.symbols index 4525737..0ee8bd0 100644 --- a/debian/libappindicator1.symbols +++ b/debian/libappindicator1.symbols @@ -12,6 +12,7 @@ libappindicator.so.1 libappindicator1 #MINVER# app_indicator_get_label_guide@Base 0.2.91 app_indicator_get_menu@Base 0.2.91 app_indicator_get_ordering_index@Base 0.2.91 + app_indicator_get_secondary_activate_target@Base 0.3.91 app_indicator_get_status@Base 0.2.91 app_indicator_get_type@Base 0.2.91 app_indicator_new@Base 0.2.91 @@ -24,5 +25,6 @@ libappindicator.so.1 libappindicator1 #MINVER# app_indicator_set_label@Base 0.2.91 app_indicator_set_menu@Base 0.2.91 app_indicator_set_ordering_index@Base 0.2.91 + app_indicator_set_secondary_activate_target@Base 0.3.91 app_indicator_set_status@Base 0.2.91 app_indicator_status_get_type@Base 0.2.91 diff --git a/debian/libappindicator3-1.symbols b/debian/libappindicator3-1.symbols index 03b5e24..0dc29aa 100644 --- a/debian/libappindicator3-1.symbols +++ b/debian/libappindicator3-1.symbols @@ -12,6 +12,7 @@ libappindicator3.so.1 libappindicator3-1 #MINVER# app_indicator_get_label_guide@Base 0.2.92 app_indicator_get_menu@Base 0.2.92 app_indicator_get_ordering_index@Base 0.2.92 + app_indicator_get_secondary_activate_target@Base 0.3.91 app_indicator_get_status@Base 0.2.92 app_indicator_get_type@Base 0.2.92 app_indicator_new@Base 0.2.92 @@ -24,5 +25,6 @@ libappindicator3.so.1 libappindicator3-1 #MINVER# app_indicator_set_label@Base 0.2.92 app_indicator_set_menu@Base 0.2.92 app_indicator_set_ordering_index@Base 0.2.92 + app_indicator_set_secondary_activate_target@Base 0.3.91 app_indicator_set_status@Base 0.2.92 app_indicator_status_get_type@Base 0.2.92 diff --git a/debian/rules b/debian/rules index 599b53e..b2507f5 100755 --- a/debian/rules +++ b/debian/rules @@ -18,6 +18,7 @@ API_VERSION = 0.1 DEB_CONFIGURE_EXTRA_FLAGS += --disable-scrollkeeper --enable-gtk-doc --enable-introspection configure-stamp-%: + dh_autoreconf mkdir build-$* cd build-$* && PYTHON=`which $*` \ $(DEB_CONFIGURE_SCRIPT) $(DEB_CONFIGURE_NORMAL_ARGS) --srcdir=.. |