Fran Dieguez
8f179da4ee
Update Galician translation
2021-02-24 00:10:02 +00:00
A S Alam
2a34650c28
Update Punjabi translation
2021-02-14 02:42:05 +00:00
Jordi Mas
d94138f45d
Update Catalan translation
2021-01-16 14:24:55 +01:00
Michael Catanzaro
7e214414bf
Revert "New API to retrieve disk stats in Linux"
...
This reverts commit 9e62440b31
.
2020-11-06 09:52:01 -06:00
Michael Catanzaro
30bf8d0418
Revert "Handle LVM and RAID"
...
This reverts commit 9cbb3b91f1
.
2020-11-06 09:52:00 -06:00
Michael Catanzaro
ea08151ae6
Revert "Code clean up and add example"
...
This reverts commit 7396970afe
.
2020-11-06 09:52:00 -06:00
Michael Catanzaro
2229253e11
Revert "Updated config and added reference"
...
This reverts commit e9da959773
.
2020-11-06 09:51:58 -06:00
James Dominic P. Guana
e9da959773
Updated config and added reference
2020-11-04 13:38:03 +00:00
James Dominic P. Guana
7396970afe
Code clean up and add example
2020-11-04 13:38:03 +00:00
James Dominic P. Guana
9cbb3b91f1
Handle LVM and RAID
2020-11-04 13:38:03 +00:00
James Dominic P. Guana
9e62440b31
New API to retrieve disk stats in Linux
2020-11-04 13:38:03 +00:00
Juliano Camargo
d49e17039e
Update Portuguese translation
2020-09-11 23:50:02 +00:00
Daniel Korostil
267ae64965
Update Ukrainian translation
2020-03-16 15:05:24 +00:00
Debian Janitor
f1e405d3ec
Update standards version to 4.4.1, no changes needed.
...
Fixes: lintian: out-of-date-standards-version
See-also: https://lintian.debian.org/tags/out-of-date-standards-version.html
2020-03-09 06:37:37 +00:00
Debian Janitor
c507201923
Fix day-of-week for changelog entry 2.0.1-3.
...
Fixes: lintian: debian-changelog-has-wrong-day-of-week
See-also: https://lintian.debian.org/tags/debian-changelog-has-wrong-day-of-week.html
2020-03-09 06:37:08 +00:00
Debian Janitor
120fde5359
Set upstream metadata fields: Bug-Database, Bug-Submit, Name (from ./configure), Repository, Repository-Browse.
...
Fixes: lintian: upstream-metadata-file-is-missing
See-also: https://lintian.debian.org/tags/upstream-metadata-file-is-missing.html
2020-03-09 06:36:38 +00:00
Jiri Grönroos
c20421275b
Update Finnish translation
2020-02-22 15:09:51 +00:00
Zander Brown
5e11fb4405
Update British English translation
2020-02-19 19:03:10 +00:00
Laurent Bigonville
f7ee4fa02e
debian/rules: Link against libbsd on kfreebsd ( Closes : #874301 )
2020-02-18 09:26:25 +01:00
sicklylife
6dcc9195ea
Update Japanese translation
2020-01-28 15:11:10 +00:00
sicklylife
317841ba04
Update Japanese translation
2020-01-28 15:05:30 +00:00
Ting-Wei Lan
4229d1ea20
Check if sbrk is available
...
The only use of sbrk in libgtop is in an example which always calls it
with 0. Since the use of sbrk provides no functionality, just skip these
calls when sbrk is not available.
This problem was first reported on FreeBSD Bugzilla because FreeBSD
decides not to support sbrk on ARM64 and RISC-V:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=221751
Fix https://gitlab.gnome.org/GNOME/libgtop/issues/46
2020-01-20 07:24:34 +00:00
Umarzuki Bin Mochlis Moktar
9e98bbd98b
Update Malay translation
2020-01-08 15:19:03 +00:00
Neel Chauhan
9b4a03ed0a
Support FreeBSD 13.0-CURRENT >= 1300062 vm_map_entry
2019-12-15 11:06:37 -05:00
Ting-Wei Lan
34242826d6
Check for kinfo_getfile on FreeBSD
...
Code in sysdeps/freebsd contains a lot of HAVE_KINFO_GETFILE checks, but
the macro is always undefined because the configure script doesn't check
for it. To fix it, add required checks for kinfo_getfile function.
2019-10-31 20:06:56 +01:00
Jordi Mas
9146c9d0e4
Update Catalan translation
2019-10-08 20:30:06 +02:00
Jeremy Bicha
ed6152c296
releasing package libgtop2 version 2.40.0-2
debian/2.40.0-2
2019-09-19 21:04:07 -04:00
Jeremy Bicha
9cd1916cbe
Build-Depend on dh-sequence-gir and dh-sequence-gnome
2019-09-19 20:48:14 -04:00
Jeremy Bicha
4993968718
Build-Depend on debhelper-compat 12 and drop debian/compat
2019-09-19 20:46:50 -04:00
Ting-Wei Lan
31db82efce
Mark glibtop_init_s as non-introspectable
...
This function isn't exported so it should be skipped.
https://gitlab.gnome.org/GNOME/gjs/issues/259
2019-07-24 09:21:32 +00:00
Ting-Wei Lan
0fd23dd185
Allow building with gettext ≥ 0.20
...
The use of AM_GNU_GETTEXT_VERSION in configure.ac instructs autopoint to
copy po/Makefile.in.in from the exact gettext version. It is fine if the
version of gettext installed on the system has the same minor version
number with the requested version, but it fails if you have a newer
version of gettext because of the mismatch between autoconf macros and
Makefile.in.in.
*** error: gettext infrastructure mismatch: using a Makefile.in.in
from gettext version 0.19 but the autoconf macros are from gettext
version 0.20
Instead of specifying the exact version with AM_GNU_GETTEXT_VERSION, we
can use AM_GNU_GETTEXT_REQUIRE_VERSION to ask autopoint to simply use
the gettext version installed on the system to prevent the mismatch.
This also bumps the version requirement on gettext to 0.19.6 because
AM_GNU_GETTEXT_REQUIRE_VERSION was added in this version.
2019-07-24 17:04:00 +08:00
Jeremy Bicha
7a25557774
releasing package libgtop2 version 2.40.0-1
debian/2.40.0-1
2019-03-16 09:52:32 -04:00
Jeremy Bicha
c9ce38b4d8
New upstream release
2019-03-16 09:51:43 -04:00
Jeremy Bicha
93a93851ab
Update upstream source from tag 'upstream/2.40.0'
...
Update to upstream version '2.40.0'
with Debian dir 5ddd883811
2019-03-16 09:51:42 -04:00
Jeremy Bicha
74493fc5a1
New upstream version 2.40.0
upstream/2.40.0
2019-03-16 09:51:32 -04:00
Jeremy Bicha
6e162c01ca
debian/watch: Watch for stable releases
2019-03-16 09:51:10 -04:00
Robert Roth
abccaf488a
Prepared release 2.40.0
2019-03-11 10:59:50 +02:00
Mart Raudsepp
8b37040b5b
Update Estonian translation
2019-03-10 17:10:13 +00:00
Corentin Noël
8871660dac
Fix several array and transfer annotations
2019-03-07 16:28:17 +01:00
Ask Hjorth Larsen
334f1e5c4c
Updated Danish translation
2019-02-24 14:52:58 +01:00
Kristjan SCHMIDT
e88e854e57
Update Esperanto translation
2019-02-24 11:07:31 +00:00
Robert Roth
00140eadc8
Prepared release 2.39.91
2019-02-18 20:52:54 +02:00
Javier Jardón
0c1be6e7b6
autogen.sh: Use autoreconf instead deprecated gnome-common
...
See https://wiki.gnome.org/Projects/GnomeCommon/Migration
2019-02-09 12:28:56 +00:00
Jeremy Bicha
d65edb6028
releasing package libgtop2 version 2.39.90-1
debian/2.39.90-1
2019-02-08 10:31:44 -05:00
Jeremy Bicha
db0d8c55c1
New upstream release
2019-02-07 21:52:46 -05:00
Jeremy Bicha
39ad554db1
Update upstream source from tag 'upstream/2.39.90'
...
Update to upstream version '2.39.90'
with Debian dir 5e73aefca8
2019-02-07 21:52:46 -05:00
Jeremy Bicha
657cfd5f49
New upstream version 2.39.90
upstream/2.39.90
2019-02-07 21:52:40 -05:00
Jeremy Bicha
68729d360d
Update debian/watch
2019-02-07 21:51:35 -05:00
Jeremy Bicha
c3176bb5ee
Update debian/gbp.conf
2019-02-07 21:51:12 -05:00
Robert Roth
30c771151d
Prepared release 2.39.90
2019-02-04 22:27:23 +02:00