[libdevice-gsm-perl] 01/10: Initial Debianisation

Christoph Biedl cbiedl at moszumanska.debian.org
Sat Nov 18 09:27:45 UTC 2017


This is an automated email from the git hooks/post-receive script.

cbiedl pushed a commit to branch master
in repository libdevice-gsm-perl.

commit 7a04cace02878750dedc8428f37da75b9eb8ab59
Author: Christoph Biedl <debian.axhn at manchmal.in-ulm.de>
Date:   Wed Mar 7 22:17:09 2012 +0100

    Initial Debianisation
---
 debian/changelog                       |  5 ++++
 debian/compat                          |  1 +
 debian/control                         | 20 ++++++++++++++++
 debian/copyright                       | 28 ++++++++++++++++++++++
 debian/libdevice-gsm-perl.docs         |  1 +
 debian/libdevice-gsm-perl.examples     |  1 +
 debian/patches/10-fix-pod-errors.patch | 44 ++++++++++++++++++++++++++++++++++
 debian/patches/series                  |  1 +
 debian/rules                           |  4 ++++
 debian/source/format                   |  1 +
 debian/watch                           |  2 ++
 11 files changed, 108 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0ac4099
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libdevice-gsm-perl (1.58-1) unstable; urgency=low
+
+  * Initial Release. Closes: #465227
+
+ -- Christoph Biedl <debian.axhn at manchmal.in-ulm.de>  Wed, 7 Mar 2012 22:17:09 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..908b21a
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,20 @@
+Source: libdevice-gsm-perl
+Section: perl
+Priority: optional
+Maintainer: Christoph Biedl <debian.axhn at manchmal.in-ulm.de>
+Build-Depends: debhelper (>= 8),
+    libdevice-modem-perl
+Build-Depends-Indep: perl
+Standards-Version: 3.9.3
+Homepage: http://search.cpan.org/dist/Device-Gsm/
+
+Package: libdevice-gsm-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+    libdevice-modem-perl,
+Description: Perl extension to interface GSM phones / modems
+ Device::Gsm class implements basic GSM functions, network registration
+ and SMS sending.
+ .
+ This class supports also PDU mode to send SMS messages, and should be
+ fairly usable.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..d57954b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135
+Maintainer: Cosimo Streppone <cosimo at cpan.org>
+Source: http://search.cpan.org/dist/Device-Gsm/
+Name: Device-Gsm
+
+Files: *
+Copyright: 2002-2011, Cosimo Streppone <cosimo at cpan.org>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2012, Christoph Biedl <debian.axhn at manchmal.in-ulm.de>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian systems, the complete text of the Artistic License can be
+ found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ 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 1, or (at your option)
+ any later version.
+ .
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.
diff --git a/debian/libdevice-gsm-perl.docs b/debian/libdevice-gsm-perl.docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/libdevice-gsm-perl.docs
@@ -0,0 +1 @@
+README
diff --git a/debian/libdevice-gsm-perl.examples b/debian/libdevice-gsm-perl.examples
new file mode 100644
index 0000000..e39721e
--- /dev/null
+++ b/debian/libdevice-gsm-perl.examples
@@ -0,0 +1 @@
+examples/*
diff --git a/debian/patches/10-fix-pod-errors.patch b/debian/patches/10-fix-pod-errors.patch
new file mode 100644
index 0000000..1b22e98
--- /dev/null
+++ b/debian/patches/10-fix-pod-errors.patch
@@ -0,0 +1,44 @@
+From: Christoph Biedl <debian.axhn at manchmal.in-ulm.de>
+Subject: Patch: Fix pod errors
+Date: Wed, 7 Mar 2012 22:41:12 +0100
+Bug: https://rt.cpan.org/Ticket/Display.html?id=75619
+
+diff --git a/Gsm.pm b/Gsm.pm
+index 8e3378b..125d082 100644
+--- a/Gsm.pm
++++ b/Gsm.pm
+@@ -1306,7 +1306,7 @@ Send out an SMS message quickly:
+ 
+ The allowed parameters to send_sms() are:
+ 
+-=over -
++=over
+ 
+ =item C<class>
+ 
+
+diff --git a/lib/Device/Gsm/Sms.pm b/lib/Device/Gsm/Sms.pm
+index 1242bf4..8d9ef95 100644
+--- a/lib/Device/Gsm/Sms.pm
++++ b/lib/Device/Gsm/Sms.pm
+@@ -241,13 +241,13 @@ sub decode {
+             
+                 my $mti = $token->MTI();
+ 
+-=cut
+-                # If MTI has bit 1 on, this could be a SMS-STATUS message (0x02), or (0x03???)
+-                if( $mti >= SMS_STATUS ) {
+-                    _log('skipping unhandled message type ['.$mti.']');
+-                    return undef;
+-                }
+-=cut
++#=cut
++#                # If MTI has bit 1 on, this could be a SMS-STATUS message (0x02), or (0x03???)
++#                if( $mti >= SMS_STATUS ) {
++#                    _log('skipping unhandled message type ['.$mti.']');
++#                    return undef;
++#                }
++#=cut
+ 
+                 if( $mti != $type ) {
+ #_log('token PDUTYPE, data='.$token->data().' MTI='.$token->get('MTI').' ->MTI()='.$token->MTI());
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..9c693d0
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+10-fix-pod-errors.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..703e540
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Device-Gsm/   .*/Device-Gsm-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdevice-gsm-perl.git



More information about the Pkg-perl-cvs-commits mailing list