[Pkg-ruby-extras-commits] r1159 - in packages-wip: .
libserialport-ruby libserialport-ruby/branches
libserialport-ruby/branches/upstream
libserialport-ruby/branches/upstream/current
libserialport-ruby/branches/upstream/current/debian
Arnaud Cornet
nohar-guest at alioth.debian.org
Fri Dec 1 21:32:48 CET 2006
Author: nohar-guest
Date: 2006-12-01 21:32:47 +0100 (Fri, 01 Dec 2006)
New Revision: 1159
Added:
packages-wip/libserialport-ruby/
packages-wip/libserialport-ruby/branches/
packages-wip/libserialport-ruby/branches/upstream/
packages-wip/libserialport-ruby/branches/upstream/current/
packages-wip/libserialport-ruby/branches/upstream/current/debian/
packages-wip/libserialport-ruby/branches/upstream/current/debian/changelog
packages-wip/libserialport-ruby/branches/upstream/current/debian/control
packages-wip/libserialport-ruby/branches/upstream/current/debian/copyright
packages-wip/libserialport-ruby/branches/upstream/current/debian/rules
packages-wip/libserialport-ruby/tags/
Log:
[svn-inject] Installing original source of libserialport-ruby
Added: packages-wip/libserialport-ruby/branches/upstream/current/debian/changelog
===================================================================
--- packages-wip/libserialport-ruby/branches/upstream/current/debian/changelog 2006-12-01 20:13:31 UTC (rev 1158)
+++ packages-wip/libserialport-ruby/branches/upstream/current/debian/changelog 2006-12-01 20:32:47 UTC (rev 1159)
@@ -0,0 +1,30 @@
+ruby-serialport (0.6) unstable; urgency=low
+
+ * Windows support
+ * Get/set modem parameters
+ * Read and write timeouts
+ * Open method
+
+ -- Guillaume Pierronnet <moumar at duron.maison.chello.fr> Thu, 13 Feb 2003 20:59:37 +0100
+
+ruby-serialport (0.5-1) unstable; urgency=low
+
+ * Cygwin support
+
+ -- Guillaume Pierronnet <moumar at duron.maison.chello.fr> Fri, 25 Oct 2002 13:48:44 +0200
+
+ruby-serialport (0.4-1) unstable; urgency=low
+
+ * Modified to support 8 serial ports
+
+ -- Guillaume Pierronnet <moumar at duron.maison.chello.fr> Fri, 20 Sep 2002 15:26:20 +0200
+
+ruby-serialport (0.3-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Guillaume Pierronnet <moumar at netcourrier.com> Mon, 21 Sep 2001 11:19:36 +0900
+
+Local variables:
+mode: debian-changelog
+End:
Added: packages-wip/libserialport-ruby/branches/upstream/current/debian/control
===================================================================
--- packages-wip/libserialport-ruby/branches/upstream/current/debian/control 2006-12-01 20:13:31 UTC (rev 1158)
+++ packages-wip/libserialport-ruby/branches/upstream/current/debian/control 2006-12-01 20:32:47 UTC (rev 1159)
@@ -0,0 +1,13 @@
+Source: ruby-serialport
+Section: interpreters
+Priority: optional
+Maintainer: Guillaume Pierronnet <moumar at netcourrier.com>
+Standards-Version: 3.1.1
+Build-Depends: debhelper (>= 2.1.2), ruby (>= 1.6.2-6), ruby-dev (>= 1.6.2-6)
+
+Package: ruby-serialport
+Architecture: any
+Depends: ${shlibs:Depends}, ruby (>= 1.6)
+Description: serial port module for Ruby
+ serial port module for ruby
+
Added: packages-wip/libserialport-ruby/branches/upstream/current/debian/copyright
===================================================================
--- packages-wip/libserialport-ruby/branches/upstream/current/debian/copyright 2006-12-01 20:13:31 UTC (rev 1158)
+++ packages-wip/libserialport-ruby/branches/upstream/current/debian/copyright 2006-12-01 20:32:47 UTC (rev 1159)
@@ -0,0 +1,18 @@
+This package was debianized by Guillaume Pierronnet <moumar at netcourrier.com>
+Mon, 25 Mar 2002 22:19:36 +0100.
+
+It was downloaded from http://davedd.free.fr/ruby-serialport/
+
+ This program 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.
+
+ This program 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 this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Added: packages-wip/libserialport-ruby/branches/upstream/current/debian/rules
===================================================================
--- packages-wip/libserialport-ruby/branches/upstream/current/debian/rules 2006-12-01 20:13:31 UTC (rev 1158)
+++ packages-wip/libserialport-ruby/branches/upstream/current/debian/rules 2006-12-01 20:32:47 UTC (rev 1159)
@@ -0,0 +1,83 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+export DH_VERBOSE=1
+
+# This is the debhelper compatability version to use.
+export DH_COMPAT=2
+
+PACKAGE_NAME=ruby-serialport
+#GNU_ARCH=$(shell ruby -e 'puts RUBY_PLATFORM')
+
+#RBV=1.6
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ ruby extconf.rb
+ $(MAKE)
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp install-stamp
+
+ # Add here commands to clean up after the build process.
+ -$(MAKE) distclean
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean
+ dh_installdirs
+
+ # Add here commands to install the package into debian/tmp.
+ $(MAKE) install DESTDIR=`pwd`/debian/$(PACKAGE_NAME)
+# mkdir -p debian/tmp/$(RBV)/$(GNU_ARCH)
+# cp serialport.so debian/$(PACKAGE_NAME)/usr/lib/ruby/$(RBV)/$(GNU_ARCH)/
+
+ touch install-stamp
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# dh_testversion
+ dh_testdir
+ dh_testroot
+# dh_installdebconf
+ dh_installdocs README*
+ dh_installexamples
+# dh_installmenu
+# dh_installemacsen
+# dh_installpam
+# dh_installinit
+# dh_installcron
+# dh_installmanpages
+# dh_installinfo
+# dh_undocumented
+ dh_installchangelogs
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ # You may want to make some executables suid here.
+# dh_suidregister
+ dh_makeshlibs
+ dh_installdeb
+# dh_perl
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
Property changes on: packages-wip/libserialport-ruby/branches/upstream/current/debian/rules
___________________________________________________________________
Name: svn:executable
+
More information about the Pkg-ruby-extras-commits
mailing list