From bc827d078af5a1bbf19a0e9afccabe1402dfe60e Mon Sep 17 00:00:00 2001 From: stsdc Date: Sat, 20 Jan 2018 14:05:08 +0100 Subject: [PATCH] fix debian package data --- data/com.github.stsdc.monitor.appdata.xml | 2 +- debian/changelog | 8 ++++++++ debian/control | 6 +++--- debian/rules | 17 ++++++++++++++++- meson.build | 2 +- 5 files changed, 29 insertions(+), 6 deletions(-) diff --git a/data/com.github.stsdc.monitor.appdata.xml b/data/com.github.stsdc.monitor.appdata.xml index b2a4031a..d294ff25 100644 --- a/data/com.github.stsdc.monitor.appdata.xml +++ b/data/com.github.stsdc.monitor.appdata.xml @@ -25,7 +25,7 @@ https://github.com/stsdc/monitor/issues -​ +​
  • Fix showing icon for some apps
  • diff --git a/debian/changelog b/debian/changelog index ac9050d6..bab896b9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +com.github.stsdc.monitor (0.3.4) xenial; urgency=low + + * Fix showing icon for some apps + * Pressing Enter focuses on process list + * Filtering: process will be highlighted if its group has no other processes + +-- Stanisław Dac Sat, 20 Jan 2018 14:01:21 +0100 + com.github.stsdc.monitor (0.3.2) xenial; urgency=low * Ukrainian translation diff --git a/debian/control b/debian/control index f7887494..7faeed8b 100644 --- a/debian/control +++ b/debian/control @@ -2,8 +2,8 @@ Source: com.github.stsdc.monitor Section: system Priority: extra Maintainer: Stanisław Dac -Build-Depends: cmake (>= 2.8), - cmake-elementary, +Build-Depends: meson, + appstream, debhelper (>= 9), libgtk-3-dev, libglib2.0-dev, @@ -13,7 +13,7 @@ Build-Depends: cmake (>= 2.8), libwnck-3-dev, libgtop2-dev - + Standards-Version: 3.9.3 Package: com.github.stsdc.monitor diff --git a/debian/rules b/debian/rules index e50e7cd8..526662e9 100755 --- a/debian/rules +++ b/debian/rules @@ -10,5 +10,20 @@ #export DH_VERBOSE=1 %: - dh $@ + dh $@ +override_dh_auto_clean: + rm -rf debian/build + +override_dh_auto_configure: + mkdir -p debian/build + cd debian/build && meson --prefix=/usr ../.. + +override_dh_auto_build: + cd debian/build && ninja -v + +override_dh_auto_test: + cd debian/build && ninja test + +override_dh_auto_install: +cd debian/build && DESTDIR=${CURDIR}/debian/com.github.stsdc.monitor ninja install diff --git a/meson.build b/meson.build index 24b5bad2..838486c3 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ -project('com.github.stsdc.monitor', 'vala', 'c', version: '0.3.3') +project('com.github.stsdc.monitor', 'vala', 'c', version: '0.3.4') gnome = import('gnome') i18n = import('i18n')