r13454 - in /packages/experimental/gio-standalone: ./ debian/

seb128 at users.alioth.debian.org seb128 at users.alioth.debian.org
Thu Nov 15 11:41:44 UTC 2007


Author: seb128
Date: Thu Nov 15 11:41:43 2007
New Revision: 13454

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=13454
Log:
add the gio-standalone package to SVN

Added:
    packages/experimental/gio-standalone/
    packages/experimental/gio-standalone/debian/
    packages/experimental/gio-standalone/debian/changelog
    packages/experimental/gio-standalone/debian/compat
    packages/experimental/gio-standalone/debian/control
    packages/experimental/gio-standalone/debian/control.in
    packages/experimental/gio-standalone/debian/copyright
    packages/experimental/gio-standalone/debian/libgio-bin.install
    packages/experimental/gio-standalone/debian/libgio-dev.install
    packages/experimental/gio-standalone/debian/libgio-fam.install
    packages/experimental/gio-standalone/debian/libgio0.install
    packages/experimental/gio-standalone/debian/rules   (with props)

Added: packages/experimental/gio-standalone/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/experimental/gio-standalone/debian/changelog?rev=13454&op=file
==============================================================================
--- packages/experimental/gio-standalone/debian/changelog (added)
+++ packages/experimental/gio-standalone/debian/changelog Thu Nov 15 11:41:43 2007
@@ -1,0 +1,34 @@
+gio-standalone (0.1.2-0ubuntu1) hardy; urgency=low
+
+  * New upstream version:
+    - Fix build on solaris / OSX
+    - Leak fixes
+    - Fix typo in APIs: availible -> available
+    - We now handle the case where a GVfs implementation fails to initialize. 
+      For instance gvfs fails if there is no session bus.
+    - g_memory_output_stream_set_free_on_close was renamed 
+      to g_memory_output_stream_set_free_data and frees on finalize, not close.
+      This makes more sense and is more consistent with GMemoryInputStream.
+    - Remove c++ keywords from public header files
+    - Clean up warnings in code
+    - Keep around async i/o worker threads a bit longer 
+      than the previous 0.5 secs
+  * debian/control.in:
+    - libgio0 Suggests libgio-fam
+  * debian/rules:
+    - updated shlibs version
+
+ -- Sebastien Bacher <seb128 at canonical.com>  Thu, 15 Nov 2007 12:18:02 +0100
+
+gio-standalone (0.1.1-0ubuntu1) hardy; urgency=low
+
+  * New upstream version
+
+ -- Sebastien Bacher <seb128 at canonical.com>  Tue, 06 Nov 2007 16:15:39 -0500
+
+gio (0.0.20071101svn-0ubuntu1) hardy; urgency=low
+
+  * Initial ubuntu upload
+
+ -- Sebastien Bacher <seb128 at canonical.com>  Wed, 31 Oct 2007 16:46:33 -0400
+

Added: packages/experimental/gio-standalone/debian/compat
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/experimental/gio-standalone/debian/compat?rev=13454&op=file
==============================================================================
--- packages/experimental/gio-standalone/debian/compat (added)
+++ packages/experimental/gio-standalone/debian/compat Thu Nov 15 11:41:43 2007
@@ -1,0 +1,1 @@
+5

Added: packages/experimental/gio-standalone/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/experimental/gio-standalone/debian/control?rev=13454&op=file
==============================================================================
--- packages/experimental/gio-standalone/debian/control (added)
+++ packages/experimental/gio-standalone/debian/control Thu Nov 15 11:41:43 2007
@@ -1,0 +1,62 @@
+Source: gio-standalone
+Priority: optional
+Maintainer: Sebastien Bacher <seb128 at ubuntu.com>
+Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 5), autotools-dev, cdbs, libglib2.0-dev (>= 2.13.8), libselinux1-dev, linux-libc-dev, libgamin-dev | libfam-dev, gnome-pkg-tools
+Standards-Version: 3.7.2
+Section: libs
+
+Package: libgio-dev
+Section: libdevel
+Architecture: any
+Depends: libgio0 (= ${binary:Version}), libglib2.0-dev
+Description: GLib Input, Output and Streaming Library (development files)
+ GIO is the input, output and streaming API of glib.
+ It on the one hand provides a set of various streaming
+ classes to access data from different sources in a convenient way
+ and on the other hand it provides a high level file system 
+ abstraction to access file and directories not only local but also
+ on the network. For the latter you need to install gvfs.
+ .
+ This is a temporary packages until gio gets merged into glib.
+
+Package: libgio0
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Suggests: libgio-fam
+Description: GLib Input, Output and Streaming Library (library)
+ GIO is the input, output and streaming API of glib.
+ It on the one hand provides a set of various streaming
+ classes to access data from different sources in a convenient way
+ and on the other hand it provides a high level file system 
+ abstraction to access file and directories not only local but also
+ on the network. For the latter you need to install gvfs.
+ .
+ This is a temporary packages until gio gets merged into glib.
+
+Package: libgio-fam
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: GLib Input, Output and Streaming Library (fam module)
+ GIO is the input, output and streaming API of glib.
+ It on the one hand provides a set of various streaming
+ classes to access data from different sources in a convenient way
+ and on the other hand it provides a high level file system 
+ abstraction to access file and directories not only local but also
+ on the network. For the latter you need to install gvfs.
+ .
+ This is a temporary packages until gio gets merged into glib.
+
+Package: libgio-bin
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: GLib Input, Output and Streaming Library (binaries)
+ GIO is the input, output and streaming API of glib.
+ It on the one hand provides a set of various streaming
+ classes to access data from different sources in a convenient way
+ and on the other hand it provides a high level file system 
+ abstraction to access file and directories not only local but also
+ on the network. For the latter you need to install gvfs.
+ .
+ This is a temporary packages until gio gets merged into glib.

Added: packages/experimental/gio-standalone/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/experimental/gio-standalone/debian/control.in?rev=13454&op=file
==============================================================================
--- packages/experimental/gio-standalone/debian/control.in (added)
+++ packages/experimental/gio-standalone/debian/control.in Thu Nov 15 11:41:43 2007
@@ -1,0 +1,62 @@
+Source: gio-standalone
+Priority: optional
+Maintainer: Sebastien Bacher <seb128 at ubuntu.com>
+Uploaders: @GNOME_TEAM@
+Build-Depends: debhelper (>= 5), autotools-dev, cdbs, libglib2.0-dev (>= 2.13.8), libselinux1-dev, linux-libc-dev, libgamin-dev | libfam-dev, gnome-pkg-tools
+Standards-Version: 3.7.2
+Section: libs
+
+Package: libgio-dev
+Section: libdevel
+Architecture: any
+Depends: libgio0 (= ${binary:Version}), libglib2.0-dev
+Description: GLib Input, Output and Streaming Library (development files)
+ GIO is the input, output and streaming API of glib.
+ It on the one hand provides a set of various streaming
+ classes to access data from different sources in a convenient way
+ and on the other hand it provides a high level file system 
+ abstraction to access file and directories not only local but also
+ on the network. For the latter you need to install gvfs.
+ .
+ This is a temporary packages until gio gets merged into glib.
+
+Package: libgio0
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Suggests: libgio-fam
+Description: GLib Input, Output and Streaming Library (library)
+ GIO is the input, output and streaming API of glib.
+ It on the one hand provides a set of various streaming
+ classes to access data from different sources in a convenient way
+ and on the other hand it provides a high level file system 
+ abstraction to access file and directories not only local but also
+ on the network. For the latter you need to install gvfs.
+ .
+ This is a temporary packages until gio gets merged into glib.
+
+Package: libgio-fam
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: GLib Input, Output and Streaming Library (fam module)
+ GIO is the input, output and streaming API of glib.
+ It on the one hand provides a set of various streaming
+ classes to access data from different sources in a convenient way
+ and on the other hand it provides a high level file system 
+ abstraction to access file and directories not only local but also
+ on the network. For the latter you need to install gvfs.
+ .
+ This is a temporary packages until gio gets merged into glib.
+
+Package: libgio-bin
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: GLib Input, Output and Streaming Library (binaries)
+ GIO is the input, output and streaming API of glib.
+ It on the one hand provides a set of various streaming
+ classes to access data from different sources in a convenient way
+ and on the other hand it provides a high level file system 
+ abstraction to access file and directories not only local but also
+ on the network. For the latter you need to install gvfs.
+ .
+ This is a temporary packages until gio gets merged into glib.

Added: packages/experimental/gio-standalone/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/experimental/gio-standalone/debian/copyright?rev=13454&op=file
==============================================================================
--- packages/experimental/gio-standalone/debian/copyright (added)
+++ packages/experimental/gio-standalone/debian/copyright Thu Nov 15 11:41:43 2007
@@ -1,0 +1,44 @@
+This package was debianized by Sebastien Bacher <seb128 at canonical.com> on
+Wed, 31 Oct 2007 16:46:33 -0400.
+
+It was downloaded from svn://svn.gnome.org/svn/gio-standalone
+
+Upstream Author: 
+
+Alexander Larsson <alexl at redhat.com>
+
+Copyright: 
+
+Alexander Larsson <alexl at redhat.com>
+
+xdgmime:
+Copyright (C) 2003  Red Hat, Inc.
+Copyright (C) 2003  Jonathan Blandford <jrb at alum.mit.edu>
+Copyright (C) 2004  Matthias Clasen <mclasen at redhat.com>
+
+inotify:
+Copyright (C) 2005 John McCutchan
+Copyright (C) 2006 John McCutchan
+Copyright (C) 2007 John McCutchan
+
+License:
+
+    This package is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
+
+    This package is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL'.
+
+The Debian packaging is (C) 2007, Sebastien Bacher <seb128 at canonical.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: packages/experimental/gio-standalone/debian/libgio-bin.install
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/experimental/gio-standalone/debian/libgio-bin.install?rev=13454&op=file
==============================================================================
--- packages/experimental/gio-standalone/debian/libgio-bin.install (added)
+++ packages/experimental/gio-standalone/debian/libgio-bin.install Thu Nov 15 11:41:43 2007
@@ -1,0 +1,2 @@
+debian/tmp/usr/bin
+

Added: packages/experimental/gio-standalone/debian/libgio-dev.install
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/experimental/gio-standalone/debian/libgio-dev.install?rev=13454&op=file
==============================================================================
--- packages/experimental/gio-standalone/debian/libgio-dev.install (added)
+++ packages/experimental/gio-standalone/debian/libgio-dev.install Thu Nov 15 11:41:43 2007
@@ -1,0 +1,4 @@
+debian/tmp/usr/include
+debian/tmp/usr/share/gtk-doc
+debian/tmp/usr/lib/lib*.so
+debian/tmp/usr/lib/pkgconfig

Added: packages/experimental/gio-standalone/debian/libgio-fam.install
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/experimental/gio-standalone/debian/libgio-fam.install?rev=13454&op=file
==============================================================================
--- packages/experimental/gio-standalone/debian/libgio-fam.install (added)
+++ packages/experimental/gio-standalone/debian/libgio-fam.install Thu Nov 15 11:41:43 2007
@@ -1,0 +1,1 @@
+debian/tmp/usr/lib/gio/modules/libgiofam.so

Added: packages/experimental/gio-standalone/debian/libgio0.install
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/experimental/gio-standalone/debian/libgio0.install?rev=13454&op=file
==============================================================================
--- packages/experimental/gio-standalone/debian/libgio0.install (added)
+++ packages/experimental/gio-standalone/debian/libgio0.install Thu Nov 15 11:41:43 2007
@@ -1,0 +1,1 @@
+debian/tmp/usr/lib/lib*.so.*

Added: packages/experimental/gio-standalone/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/experimental/gio-standalone/debian/rules?rev=13454&op=file
==============================================================================
--- packages/experimental/gio-standalone/debian/rules (added)
+++ packages/experimental/gio-standalone/debian/rules Thu Nov 15 11:41:43 2007
@@ -1,0 +1,11 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/class/gnome.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
+include /usr/share/gnome-pkg-tools/1/rules/clean-la.mk
+-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
+
+DEB_DH_MAKESHLIBS_ARGS_libgio0 += -V 'libgio0 (>= 0.1.2)'

Propchange: packages/experimental/gio-standalone/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




More information about the pkg-gnome-commits mailing list