Codebase list dbus-sharp-glib / bf3a400
Initial release. (Closes: #598946) Git-Dch: ignore Mirco Bauer 13 years ago
9 changed file(s) with 149 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 dbus-sharp-glib (0.5.0-1) experimental; urgency=low
1
2 * Initial release. (Closes: #598946)
3
4 -- Mirco Bauer <meebey@debian.org> Sun, 03 Oct 2010 21:32:47 +0200
0 Source: dbus-sharp-glib
1 Section: cli-mono
2 Priority: optional
3 Maintainer: Debian CLI Libraries Team <pkg-cli-libs-team@lists.alioth.debian.org>
4 Uploaders: Mirco Bauer <meebey@debian.org>
5 Build-Depends: debhelper (>= 8)
6 Build-Depends-Indep: cli-common-dev (>= 0.5.7),
7 mono-devel (>= 2.4.3),
8 pkg-config,
9 libdbus1.0-cil-dev (>= 0.7),
10 monodoc-base
11 Standards-Version: 3.9.1
12 Homepage: http://github.com/mono/dbus-sharp-glib
13 Vcs-Git: git://git.debian.org/pkg-cli-libs/packages/dbus-sharp-glib.git
14 Vcs-Browser: http://git.debian.org/?p=pkg-cli-libs/packages/dbus-sharp-glib.git
15
16 Package: libdbus-glib1.0-cil
17 Architecture: all
18 Depends: ${cli:Depends}, ${misc:Depends}
19 Description: CLI implementation of D-Bus (GLib mainloop integration)
20 dbus-sharp is a fork of ndesk-dbus, which is a C# implementation of
21 D-Bus. It's often referred to as "managed D-Bus" to avoid confusion
22 with existing bindings (which wrap libdbus).
23 .
24 D-Bus is a message bus, used for sending messages between
25 applications. Conceptually, it fits somewhere in between raw sockets
26 and CORBA in terms of complexity.
27 .
28 This package provides integration into the GLib mainloop and contains
29 the dbus-sharp-glib library itself.
30
31 Package: libdbus-glib1.0-cil-dev
32 Architecture: all
33 Depends: libdbus-glib1.0-cil (= ${binary:Version}), libdbus1.0-cil-dev, ${misc:Depends}
34 Description: CLI implementation of D-Bus (GLib mainloop integration) - development files
35 dbus-sharp is a fork of ndesk-dbus, which is a C# implementation of
36 D-Bus. It's often referred to as "managed D-Bus" to avoid confusion
37 with existing bindings (which wrap libdbus).
38 .
39 D-Bus is a message bus, used for sending messages between
40 applications. Conceptually, it fits somewhere in between raw sockets
41 and CORBA in terms of complexity.
42 .
43 This package contains development files for dbus-sharp-glib, and
44 should be used for compilation.
0 Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
1 Upstream-Name: dbus-sharp-glib
2 Upstream-Maintainer: dbus-sharp team
3 Upstream-Source: http://github.com/mono/dbus-sharp/downloads
4 Upstream-Vcs-Browser: http://github.com/mono/dbus-sharp-glib/tree/master
5
6 Files: *
7 Copyright: 2006-2009 Alp Toker <alp@atoker.com>
8 License: MIT/X11
9 Permission is hereby granted, free of charge, to any person obtaining
10 a copy of this software and associated documentation files (the
11 "Software"), to deal in the Software without restriction, including
12 without limitation the rights to use, copy, modify, merge, publish,
13 distribute, sublicense, and/or sell copies of the Software, and to
14 permit persons to whom the Software is furnished to do so, subject to
15 the following conditions:
16
17 The above copyright notice and this permission notice shall be
18 included in all copies or substantial portions of the Software.
19
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
24 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
28 Files: debian/*
29 Copyright: 2010 Mirco Bauer <meebey@debian.org>
30 License: GPL
31 This program is free software: you can redistribute it and/or modify
32 it under the terms of the GNU General Public License as published by
33 the Free Software Foundation, either version 3 of the License, or
34 (at your option) any later version.
35
36 This program is distributed in the hope that it will be useful,
37 but WITHOUT ANY WARRANTY; without even the implied warranty of
38 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39 GNU General Public License for more details.
40
41 You should have received a copy of the GNU General Public License
42 along with this program. If not, see <http://www.gnu.org/licenses/>.
43
44 On Debian systems the full text of the GNU General Public License can be
45 found in the `/usr/share/common-licenses/GPL' file.
0 /usr/lib/cli/dbus-sharp-glib-1.0/dbus-sharp-glib.dll
0 #!/usr/bin/make -f
1 #export DH_VERBOSE=1
2
3 include /usr/share/cli-common/cli.make
4 DH_OPTIONS =
5
6 DEB_API_VERSION = 0.5
7 DEB_ABI_VERSION = 1.0
8 DEB_CLI_DIR = debian/tmp/usr/lib/cli/dbus-sharp-glib-$(DEB_ABI_VERSION)/
9 DEB_DOC_DIR = $(CURDIR)/doc
10 DEB_LIB_FILES = $(CURDIR)/src/dbus-sharp-glib.dll
11 DEB_LIBCONF_FILES = $(CURDIR)/src/dbus-sharp-glib.dll.config
12 DEB_CLEAN_FILES = $(CURDIR)/src/dbus-sharp-glib.zip $(CURDIR)/src/dbus-sharp-glib.tree $(DEB_DOC_DIR)
13
14 override_dh_auto_configure:
15 dh_auto_configure -- GMCS=/usr/bin/mono-csc
16
17 override_dh_auto_build:
18 dh_auto_build
19 mkdir -p $(DEB_DOC_DIR);
20 for LIB in $(DEB_LIB_FILES); do \
21 mdoc update \
22 -fno-assembly-versions \
23 --out=$(DEB_DOC_DIR) \
24 $$LIB; \
25 mdoc assemble \
26 --format ecma \
27 --out $${LIB/.dll/} \
28 $(DEB_DOC_DIR); \
29 done
30
31 override_dh_auto_install:
32 dh_auto_install
33 mkdir -p $(DEB_CLI_DIR)
34 for FILE in $(DEB_LIB_FILES) $(DEB_LIBCONF_FILES); do \
35 install $$FILE $(CURDIR)/$(DEB_CLI_DIR); \
36 done
37
38 override_dh_auto_clean:
39 dh_auto_clean
40 rm -rf $(DEB_CLEAN_FILES)
41
42 override_dh_makeclilibs:
43 dh_makeclilibs -m$(DEB_API_VERSION)
44
45 %:
46 dh $@ --with=cli
0 version=3
1 http://github.com/mono/dbus-sharp/downloads .+/dbus-sharp-glib-([\d\.]+)\.tar\.gz