Compare commits
5 Commits
debian/2.2
...
debian/2.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
da997e6041 | ||
|
|
789c3bb8f3 | ||
|
|
7703689954 | ||
|
|
63a53ee03b | ||
|
|
8f617063ea |
14
debian/changelog
vendored
14
debian/changelog
vendored
@@ -1,3 +1,17 @@
|
||||
libgtop2 (2.28.4-3) unstable; urgency=low
|
||||
|
||||
* debian/patches/06_kfreebsd_sys_pipe.patch: Don't include sys/pipe.h on
|
||||
kFreeBSD. Defining _KERNEL to include sys/pipe.h subsequently breaks
|
||||
sys/conf.h; since sys/pipe.h is not meant to be used in userland, and
|
||||
libgtop2 builds anyway on kFreeBSD without it, don't include it.
|
||||
Thanks to Steven Chamberlain for the patch. Closes: #667984
|
||||
* Update Vcs-* URLs.
|
||||
* Drop Build-Depends on gir1.2-glib-2.0 and let libgirepository1.0-dev pull
|
||||
this dependency.
|
||||
* Bump Standards-Version to 3.9.3.
|
||||
|
||||
-- Michael Biebl <biebl@debian.org> Fri, 13 Apr 2012 20:13:21 +0200
|
||||
|
||||
libgtop2 (2.28.4-2) unstable; urgency=low
|
||||
|
||||
* debian/watch: Track .xz tarballs.
|
||||
|
||||
11
debian/control
vendored
11
debian/control
vendored
@@ -7,7 +7,7 @@ Source: libgtop2
|
||||
Section: libs
|
||||
Priority: optional
|
||||
Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
|
||||
Uploaders: Andreas Henriksson <andreas@fatal.se>, Emilio Pozuelo Monfort <pochu@debian.org>, Josselin Mouette <joss@debian.org>, Michael Biebl <biebl@debian.org>, Sebastian Dröge <slomo@debian.org>
|
||||
Uploaders: Andreas Henriksson <andreas@fatal.se>, Emilio Pozuelo Monfort <pochu@debian.org>, Josselin Mouette <joss@debian.org>, Martin Pitt <mpitt@debian.org>, Michael Biebl <biebl@debian.org>, Sebastian Dröge <slomo@debian.org>
|
||||
Build-Depends: debhelper (>= 8),
|
||||
gettext,
|
||||
pkg-config,
|
||||
@@ -24,11 +24,10 @@ Build-Depends: debhelper (>= 8),
|
||||
libkvm-dev [kfreebsd-any],
|
||||
gtk-doc-tools (>= 1.4),
|
||||
gobject-introspection (>= 0.6.7),
|
||||
libgirepository1.0-dev (>= 0.6.7),
|
||||
gir1.2-glib-2.0
|
||||
Standards-Version: 3.9.2
|
||||
Vcs-Svn: svn://svn.debian.org/svn/pkg-gnome/desktop/unstable/libgtop2
|
||||
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-gnome/desktop/unstable/libgtop2
|
||||
libgirepository1.0-dev (>= 0.10.7-1~)
|
||||
Standards-Version: 3.9.3
|
||||
Vcs-Svn: svn://anonscm.debian.org/svn/pkg-gnome/desktop/unstable/libgtop2
|
||||
Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/libgtop2
|
||||
|
||||
Package: libgtop2-7
|
||||
Architecture: any
|
||||
|
||||
9
debian/control.in
vendored
9
debian/control.in
vendored
@@ -19,11 +19,10 @@ Build-Depends: debhelper (>= 8),
|
||||
libkvm-dev [kfreebsd-any],
|
||||
gtk-doc-tools (>= 1.4),
|
||||
gobject-introspection (>= 0.6.7),
|
||||
libgirepository1.0-dev (>= 0.6.7),
|
||||
gir1.2-glib-2.0
|
||||
Standards-Version: 3.9.2
|
||||
Vcs-Svn: svn://svn.debian.org/svn/pkg-gnome/desktop/unstable/libgtop2
|
||||
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-gnome/desktop/unstable/libgtop2
|
||||
libgirepository1.0-dev (>= 0.10.7-1~)
|
||||
Standards-Version: 3.9.3
|
||||
Vcs-Svn: svn://anonscm.debian.org/svn/pkg-gnome/desktop/unstable/libgtop2
|
||||
Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/libgtop2
|
||||
|
||||
Package: libgtop2-7
|
||||
Architecture: any
|
||||
|
||||
22
debian/patches/06_kfreebsd_sys_pipe.patch
vendored
Normal file
22
debian/patches/06_kfreebsd_sys_pipe.patch
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
Description: Don't include sys/pipe.h on kFreeBSD
|
||||
Defining _KERNEL to include sys/pipe.h subsequently breaks sys/conf.h;
|
||||
since sys/pipe.h is not meant to be used in userland, and libgtop2 builds
|
||||
anyway on kFreeBSD without it, don't include it.
|
||||
Author: Steven Chamberlain <steven@pyro.eu.org>
|
||||
Bug-Debian: http://bugs.debian.org/667984
|
||||
|
||||
Index: libgtop2-2.28.4/sysdeps/freebsd/procmap.c
|
||||
===================================================================
|
||||
--- libgtop2-2.28.4.orig/sysdeps/freebsd/procmap.c 2012-04-07 22:49:20.000000000 +0100
|
||||
+++ libgtop2-2.28.4/sysdeps/freebsd/procmap.c 2012-04-07 22:51:00.163079809 +0100
|
||||
@@ -38,10 +38,7 @@
|
||||
#include <sys/vnode.h>
|
||||
#undef _KVM_VNODE
|
||||
|
||||
-#define _KERNEL
|
||||
-#include <sys/pipe.h>
|
||||
#include <sys/conf.h>
|
||||
-#undef _KERNEL
|
||||
#if (__FreeBSD_version >= 800038) || (__FreeBSD_kernel_version >= 800038)
|
||||
#define _WANT_FILE
|
||||
#include <sys/file.h>
|
||||
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@@ -3,4 +3,5 @@
|
||||
03_kfreebsd_installdirs.patch
|
||||
04_kfreebsd_version_check.patch
|
||||
05_kfreebsd_8.0.patch
|
||||
06_kfreebsd_sys_pipe.patch
|
||||
99_ltmain_as-needed.patch
|
||||
|
||||
Reference in New Issue
Block a user