Skip to content

Commit bc827d0

Browse files
author
stsdc
committed
fix debian package data
1 parent 7484abe commit bc827d0

File tree

5 files changed

+29
-6
lines changed

5 files changed

+29
-6
lines changed

data/com.github.stsdc.monitor.appdata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<url type="help">https://github.com/stsdc/monitor/issues</url>
2626

2727
<releases>
28-
​ <release version="0.3.3" date="2018-01-29">
28+
​ <release version="0.3.4" date="2018-01-29">
2929
​ <description>
3030
​ <ul>
3131
<li>Fix showing icon for some apps</li>

debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
com.github.stsdc.monitor (0.3.4) xenial; urgency=low
2+
3+
* Fix showing icon for some apps
4+
* Pressing Enter focuses on process list
5+
* Filtering: process will be highlighted if its group has no other processes
6+
7+
-- Stanisław Dac <[email protected]> Sat, 20 Jan 2018 14:01:21 +0100
8+
19
com.github.stsdc.monitor (0.3.2) xenial; urgency=low
210

311
* Ukrainian translation

debian/control

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Source: com.github.stsdc.monitor
22
Section: system
33
Priority: extra
44
Maintainer: Stanisław Dac <[email protected]>
5-
Build-Depends: cmake (>= 2.8),
6-
cmake-elementary,
5+
Build-Depends: meson,
6+
appstream,
77
debhelper (>= 9),
88
libgtk-3-dev,
99
libglib2.0-dev,
@@ -13,7 +13,7 @@ Build-Depends: cmake (>= 2.8),
1313
libwnck-3-dev,
1414
libgtop2-dev
1515

16-
16+
1717
Standards-Version: 3.9.3
1818

1919
Package: com.github.stsdc.monitor

debian/rules

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,20 @@
1010
#export DH_VERBOSE=1
1111

1212
%:
13-
dh $@
13+
dh $@
1414

15+
override_dh_auto_clean:
16+
rm -rf debian/build
17+
18+
override_dh_auto_configure:
19+
mkdir -p debian/build
20+
cd debian/build && meson --prefix=/usr ../..
21+
22+
override_dh_auto_build:
23+
cd debian/build && ninja -v
24+
25+
override_dh_auto_test:
26+
cd debian/build && ninja test
27+
28+
override_dh_auto_install:
29+
cd debian/build && DESTDIR=${CURDIR}/debian/com.github.stsdc.monitor ninja install

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
project('com.github.stsdc.monitor', 'vala', 'c', version: '0.3.3')
2+
project('com.github.stsdc.monitor', 'vala', 'c', version: '0.3.4')
33

44
gnome = import('gnome')
55
i18n = import('i18n')

0 commit comments

Comments
 (0)