Codebase list smstools / dd939c0
Import Debian changes 3.1.21-2 smstools (3.1.21-2) unstable; urgency=medium * move to unstable * debian/control: bump standard to 4.1.1 (no changes) * debian/control: move maintainer to mobcom * debian/control: add VCS URLs Thorsten Alteholz 6 years ago
5 changed file(s) with 47 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
0 smstools (3.1.21-2) unstable; urgency=medium
1
2 * move to unstable
3 * debian/control: bump standard to 4.1.1 (no changes)
4 * debian/control: move maintainer to mobcom
5 * debian/control: add VCS URLs
6
7 -- Thorsten Alteholz <debian@alteholz.de> Fri, 13 Oct 2017 19:39:26 +0200
8
09 smstools (3.1.21-1) experimental; urgency=medium
110
211 * new upstream version
00 Source: smstools
11 Section: comm
22 Priority: optional
3 Maintainer: Thorsten Alteholz <debian@alteholz.de>
3 Maintainer: Debian Mobcom Maintainers <Debian-mobcom-maintainers@lists.alioth.debian.org>
4 Uploaders: Thorsten Alteholz <debian@alteholz.de>
45 Build-Depends: debhelper (>= 10)
56 , libmm-dev
67 , po-debconf
78 , quilt
9 Vcs-Browser: https://anonscm.debian.org/cgit/debian-mobcom/smstools.git
10 Vcs-Git: https://anonscm.debian.org/git/debian-mobcom/smstools.git
811 Homepage: http://smstools3.kekekasvi.com
9 Standards-Version: 3.9.8
12 Standards-Version: 4.1.1
1013
1114 Package: smstools
1215 Architecture: any
00 Description: fix path to gawk
11 Author: Thorsten Alteholz <debian@alteholz.de>
2 Index: smstools3/scripts/hex2bin
2 Index: smstools-3.1.21/scripts/hex2bin
33 ===================================================================
4 --- smstools3.orig/scripts/hex2bin 2006-05-26 20:11:56.000000000 +0200
5 +++ smstools3/scripts/hex2bin 2017-05-10 13:46:15.298516671 +0200
4 --- smstools-3.1.21.orig/scripts/hex2bin 2017-10-13 14:01:27.390230987 +0200
5 +++ smstools-3.1.21/scripts/hex2bin 2017-10-13 14:01:27.382230709 +0200
66 @@ -1,4 +1,4 @@
77 -#!/bin/gawk -f
88 +#!/usr/bin/gawk -f
99
1010 # This script reads a hex-dump and converts it to a binary file.
1111 # The hex-dump must contain one or more hexadecimal numbers separated
12 Index: smstools3/scripts/hex2dec
12 Index: smstools-3.1.21/scripts/hex2dec
1313 ===================================================================
14 --- smstools3.orig/scripts/hex2dec 2006-05-26 20:12:34.000000000 +0200
15 +++ smstools3/scripts/hex2dec 2017-05-10 13:46:08.334106368 +0200
14 --- smstools-3.1.21.orig/scripts/hex2dec 2017-10-13 14:01:27.390230987 +0200
15 +++ smstools-3.1.21/scripts/hex2dec 2017-10-13 14:01:27.382230709 +0200
1616 @@ -1,4 +1,4 @@
1717 -#!/bin/gawk -f
1818 +#!/usr/bin/gawk -f
0 Description: introduce architecture dependent compile flags
1 Author: Thorsten Alteholz <debian@alteholz.de>
2 Index: smstools-3.1.21/src/Makefile
3 ===================================================================
4 --- smstools-3.1.21.orig/src/Makefile 2017-10-13 15:20:40.227235240 +0200
5 +++ smstools-3.1.21/src/Makefile 2017-10-13 15:21:34.721118505 +0200
6 @@ -3,6 +3,8 @@
7 # Select your setup size:
8 CFLAGS = -D NUMBER_OF_MODEMS=64 `dpkg-buildflags --get CFLAGS` `dpkg-buildflags --get CPPFLAGS`
9
10 +ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH)
11 +
12 # Uncomment for Solaris
13 # CFLAGS += -D SOLARIS
14 # This might be also needed for Solaris:
15 @@ -13,6 +15,9 @@
16
17 # Uncomment this to disable usage of inotify
18 #CFLAGS += -D DISABLE_INOTIFY
19 +ifneq (,$(findstring kfreebsd,$(ARCH)))
20 + CFLAGS += -D DISABLE_INOTIFY
21 +endif
22
23 # Uncomment for FreeBSD if statistics are enabled
24 #CFLAGS += -I/usr/local/include
33 spelling.patch
44
55 gawk-path-fix.patch
6
7 kfreebsd.patch