[DRE-commits] r5745 - in trunk/libglobalhotkeys-ruby: . debian

Vincent Carmona vinc-mai-guest at alioth.debian.org
Tue Aug 3 14:45:31 UTC 2010


Author: vinc-mai-guest
Date: 2010-08-03 14:45:29 +0000 (Tue, 03 Aug 2010)
New Revision: 5745

Added:
   trunk/libglobalhotkeys-ruby/debian/
   trunk/libglobalhotkeys-ruby/debian/changelog
   trunk/libglobalhotkeys-ruby/debian/compat
   trunk/libglobalhotkeys-ruby/debian/control
   trunk/libglobalhotkeys-ruby/debian/copyright
   trunk/libglobalhotkeys-ruby/debian/libglobalhotkeys-ruby1.8.docs
   trunk/libglobalhotkeys-ruby/debian/libglobalhotkeys-ruby1.8.examples
   trunk/libglobalhotkeys-ruby/debian/rules
   trunk/libglobalhotkeys-ruby/debian/watch
Log:
[svn-inject] Application des modifications Debian (0.1.1-1) pour le trunk


Property changes on: trunk/libglobalhotkeys-ruby/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: trunk/libglobalhotkeys-ruby/debian/changelog
===================================================================
--- trunk/libglobalhotkeys-ruby/debian/changelog	                        (rev 0)
+++ trunk/libglobalhotkeys-ruby/debian/changelog	2010-08-03 14:45:29 UTC (rev 5745)
@@ -0,0 +1,8 @@
+libglobalhotkeys-ruby (0.1.1-1) UNRELEASED; urgency=low
+
+  * Initial release for debian (closes: Bug#590960)
+  * Change name from rghk to libglobalhotkeys-ruby.
+    ruby library are usually named libname-ruby.
+  * Install documentation and example.
+
+ -- Vincent Carmona <vinc4mai at gmail.com>  Fri, 30 Jul 2010 17:24:56 +0200

Added: trunk/libglobalhotkeys-ruby/debian/compat
===================================================================
--- trunk/libglobalhotkeys-ruby/debian/compat	                        (rev 0)
+++ trunk/libglobalhotkeys-ruby/debian/compat	2010-08-03 14:45:29 UTC (rev 5745)
@@ -0,0 +1 @@
+7

Added: trunk/libglobalhotkeys-ruby/debian/control
===================================================================
--- trunk/libglobalhotkeys-ruby/debian/control	                        (rev 0)
+++ trunk/libglobalhotkeys-ruby/debian/control	2010-08-03 14:45:29 UTC (rev 5745)
@@ -0,0 +1,15 @@
+Source: libglobalhotkeys-ruby
+Section: ruby
+Priority: optional
+Maintainer: Vincent Carmona <vinc4mai at gmail.com>
+Standards-Version: 3.8.4
+Build-Depends: debhelper (>= 7), ruby1.8, ruby1.8-dev, libgtk2.0-dev, libx11-dev, rdoc1.8
+Homepage: http://zik.rubyforge.org/rghk
+
+Package: libglobalhotkeys-ruby
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Recommends: libgtk2-ruby1.8
+Description: Ruby binding to define global hotkeys.
+ Aims to provide easy global hotkeys setting for ruby applications so users 
+ can interact with an application even if it does not have the focus.

Added: trunk/libglobalhotkeys-ruby/debian/copyright
===================================================================
--- trunk/libglobalhotkeys-ruby/debian/copyright	                        (rev 0)
+++ trunk/libglobalhotkeys-ruby/debian/copyright	2010-08-03 14:45:29 UTC (rev 5745)
@@ -0,0 +1,31 @@
+This package was debianized by Vincent Carmona <vinc4mai at gmail.com>
+Fri, 30 Jul 2010 17:24:56 +0200
+
+It was downloaded from: http://rubyforge.org/frs/?group_id=5494 
+
+Upstream Author: Vincent Carmona <vinc4mai at gmail.com>
+
+Copyright:
+        Copyright (C) 2010 by Vincent Carmona <vinc4mai at gmail.com>
+
+License: GPL-2
+    ZiK is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+    .
+    ZiK 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 General Public License for more details.
+    .
+    You should have received a copy of the GNU General Public License
+    along with ZiK; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA 
+
+X-Comment: On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in the /usr/share/common-licenses/GPL- file.
+
+Packaging:
+        Copyright (C) 2010 by Vincent Carmona <vinc4mai at gmail.com>
+        released under GPL-2

Added: trunk/libglobalhotkeys-ruby/debian/libglobalhotkeys-ruby1.8.docs
===================================================================
--- trunk/libglobalhotkeys-ruby/debian/libglobalhotkeys-ruby1.8.docs	                        (rev 0)
+++ trunk/libglobalhotkeys-ruby/debian/libglobalhotkeys-ruby1.8.docs	2010-08-03 14:45:29 UTC (rev 5745)
@@ -0,0 +1 @@
+doc

Added: trunk/libglobalhotkeys-ruby/debian/libglobalhotkeys-ruby1.8.examples
===================================================================
--- trunk/libglobalhotkeys-ruby/debian/libglobalhotkeys-ruby1.8.examples	                        (rev 0)
+++ trunk/libglobalhotkeys-ruby/debian/libglobalhotkeys-ruby1.8.examples	2010-08-03 14:45:29 UTC (rev 5745)
@@ -0,0 +1 @@
+example/*

Added: trunk/libglobalhotkeys-ruby/debian/rules
===================================================================
--- trunk/libglobalhotkeys-ruby/debian/rules	                        (rev 0)
+++ trunk/libglobalhotkeys-ruby/debian/rules	2010-08-03 14:45:29 UTC (rev 5745)
@@ -0,0 +1,54 @@
+#!/usr/bin/make -f
+
+package=libglobalhotkeys-ruby
+RUBY=ruby1.8
+RDOC=rdoc1.8
+INSTALL=install
+INSTALL_DATA=$(INSTALL) -m 644
+INSTALL_DIR=$(INSTALL) -m 755 -d
+
+clean:
+	dh_testdir
+	dh_testroot
+	
+	[ ! -f Makefile ] || make realclean
+	[ ! -d debian/doc ] || rm -rf doc
+	[ ! -f build ] || rm -f build
+	
+	dh_clean
+
+build-doc:
+	$(RDOC) globalhotkeys.c
+
+build: build-doc
+	$(RUBY) extconf.rb
+	$(MAKE)
+	touch build
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_prep
+
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/$(package) sitedir=$(CURDIR)/debian/$(package)/usr/lib/ruby
+
+binary-indep: install
+
+binary-arch: install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_installexamples
+	dh_compress
+	dh_fixperms
+	dh_shlibdeps
+	dh_strip
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+
+.PHONY: clean binary binary-indep binary-arch install


Property changes on: trunk/libglobalhotkeys-ruby/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/libglobalhotkeys-ruby/debian/watch
===================================================================
--- trunk/libglobalhotkeys-ruby/debian/watch	                        (rev 0)
+++ trunk/libglobalhotkeys-ruby/debian/watch	2010-08-03 14:45:29 UTC (rev 5745)
@@ -0,0 +1,2 @@
+version=3
+http://rubyforge.org/frs/?group_id=5494 .*/rghk-([\d+\.]*)\.tar\.gz debian uupdate




More information about the Pkg-ruby-extras-commits mailing list