Codebase list libvirt-glib / 1e4e37f
add debian packaging Guido Günther 14 years ago
12 changed file(s) with 124 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 libvirt-glib (0~0.git22fac-1) experimental; urgency=low
1
2 * Initial release (Closes: #535825)
3
4 -- Guido Günther <agx@sigxcpu.org> Sun, 19 Jul 2009 17:24:28 +0200
0 Source: libvirt-glib
1 Section: libs
2 Priority: extra
3 Maintainer: Guido Günther <agx@sigxcpu.org>
4 Build-Depends: cdbs, debhelper (>= 7), quilt, pkg-config,
5 libvirt-dev (>= 0.5.0), libglib2.0-dev (>= 2.10),
6 # when building from git:
7 automake, autoconf, libtool,
8 # for python bindings:
9 python-dev, python-support
10 Standards-Version: 3.8.2
11
12 Package: libvirt-glib0
13 Architecture: any
14 Depends: ${shlibs:Depends}, ${misc:Depends}
15 Description: libvirt glib mainloop integration
16 This shared library eases integration of libvirt's events into programs using
17 a glib mainloop.
18
19 Package: libvirt-glib0-dbg
20 Architecture: any
21 Section: debug
22 Depends: libvirt-glib0 (= ${binary:Version}), ${misc:Depends}
23 Description: libvirt glib mainloop integration
24 This shared library eases integration of libvirt's events into programs using
25 a glib mainloop.
26 .
27 This package contains the debugging symbols.
28
29 Package: libvirt-glib-dev
30 Architecture: any
31 Section: libdevel
32 Depends: libvirt-glib0 (= ${binary:Version}), ${misc:Depends}
33 Recommends: pkg-config
34 Description: libvirt glib mainloop integration
35 This shared library eases integration of libvirt's events into programs using
36 a glib mainloop.
37 .
38 This package contains the development headers.
39
40 Package: python-libvirt-glib
41 Architecture: any
42 Section: python
43 Depends: libvirt-glib0 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
44 Description: libvirt glib mainloop integration
45 This shared library eases integration of libvirt's events into programs using
46 a glib mainloop.
47 .
48 This package contains Python bindings.
49
0 This package was debianized by Guido Günther <agx@sigxcpu.org> on
1 Sun, 19 Jul 2009 17:24:28 +0200.
2
3 It was downloaded from http://libvirt.org/git/?p=libvirt-glib.git
4
5 Upstream Author:
6
7 Daniel P. Berrange <berrange@redhat.com>
8
9 Copyright:
10
11 Copyright (C) 2008 Daniel P. Berrange
12 Copyright (C) 2008 Red Hat, Inc.
13
14 License:
15
16 This library is free software; you can redistribute it and/or
17 modify it under the terms of the GNU Lesser General Public
18 License as published by the Free Software Foundation; either
19 version 2.1 of the License, or (at your option) any later version.
20
21 This library is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 Lesser General Public License for more details.
25
26 You should have received a copy of the GNU Lesser General Public
27 License along with this library; if not, write to the Free Software
28 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
29
30 On Debian systems, the complete text of the GNU Lesser General
31 Public License can be found in `/usr/share/common-licenses/LGPL'.
32
33 The Debian packaging is:
34
35 Copyright (C) 2009 Guido Günther <agx@sigxcpu.org>
36
37 and is licensed under the GPL version 2,
38 see `/usr/share/common-licenses/GPL-2'.
0 usr/bin
1 usr/sbin
0 usr/lib/libvirt-glib.so
1 usr/lib/libvirt-glib.a
2 usr/include/*
3 usr/lib/pkgconfig/*
0 usr/lib/libvirt-glib.so.*
0 usr/lib/python*/*/*.so
1 usr/lib/python*/*/*.py
0 #!/usr/bin/make -f
1
2 DEB_PYTHON_SYSTEM=pysupport
3
4 include /usr/share/cdbs/1/rules/debhelper.mk
5 include /usr/share/cdbs/1/class/autotools.mk
6 include /usr/share/cdbs/1/class/python-distutils.mk
7 include /usr/share/cdbs/1/rules/patchsys-quilt.mk
8 include /usr/share/cdbs/1/rules/patchsys-quilt.mk
9
10 DEB_PYTHON_SETUP_CMD := /dev/null
11 DEB_DBG_PACKAGES = libvirt-glib0-dbg
12 DEB_CONFIGURE_SCRIPT = ./autogen.sh
13
14 #post-patches::
15 # ./autogen.sh --prefix=/usr
16