--- tone-generator-1.5.4+15.10.20150731.orig/debian/changelog +++ tone-generator-1.5.4+15.10.20150731/debian/changelog @@ -0,0 +1,37 @@ +tone-generator (1.5.4+15.10.20150731-0ubuntu1) wily; urgency=medium + + [ Tiago Salem Herrmann ] + * Use phone role for busy and call waiting tones. (LP: #1476361, + #1466963) + + -- CI Train Bot Fri, 31 Jul 2015 19:02:55 +0000 + +tone-generator (1.5.4+14.10.20140905-0ubuntu1) utopic; urgency=low + + [ Ricardo Salveti de Araujo ] + * Setting up the alert role for the dtmf sound + + -- Ubuntu daily release Fri, 05 Sep 2014 01:19:08 +0000 + +tone-generator (1.5.4+14.10.20140814-0ubuntu1) utopic; urgency=low + + [ Ricardo Salveti de Araujo ] + * Lowering default dtmf volume (LP: #1356428). Fixing vcs entries in + debian/control . (LP: #1356428) + + -- Ubuntu daily release Thu, 14 Aug 2014 20:32:55 +0000 + +tone-generator (1.5.4+14.10.20140731-0ubuntu1) utopic; urgency=low + + [ Martti Piirainen ] + * Initial release. Based on https://github.com/nemomobile/tone-generator + + [ Tony Espy ] + * Inital version of tone-generator daemon. Forked from: + https://github.com/nemomobile/tone-generator + * Add initial Debian/packaging + + [ CI bot ] + * This is a dummy commit used to seed this package for CI. + + -- Ubuntu daily release Thu, 31 Jul 2014 21:08:00 +0000 --- tone-generator-1.5.4+15.10.20150731.orig/debian/compat +++ tone-generator-1.5.4+15.10.20150731/debian/compat @@ -0,0 +1 @@ +9 --- tone-generator-1.5.4+15.10.20150731.orig/debian/control +++ tone-generator-1.5.4+15.10.20150731/debian/control @@ -0,0 +1,60 @@ +Source: tone-generator +Section: sound +Priority: optional +Maintainer: Ubuntu Developers +Build-Depends: + autotools-dev, + debhelper (>= 9), + dh-autoreconf, + libdbus-1-dev, + libdbus-glib-1-dev, + libglib2.0-dev, + libpulse-dev, + libtool, +Standards-Version: 3.9.5 +# If you aren't a member of ~phablet-team but need to upload +# packaging changes, just go ahead. ~phablet-team will notice +# and sync up the code again. +Vcs-Bzr: http://bazaar.launchpad.net/~phablet-team/tone-generator/trunk/files +Vcs-Browser: https://code.launchpad.net/~phablet-team/tone-generator/trunk + +Package: tone-generator +Architecture: any +Depends: + dbus, + pulseaudio, + ${misc:Depends}, + ${shlibs:Depends}, +Recommends: + telephony-service, +Description: Telephony Tone Generator (daemon) + tone generator is simple daemon which provides + generation of playback tones for DTMF (dialer + keypad tones), call progress indication, and + other miscellaneous telephony-related tones. + . + This package includes the core daemon. + +Package: tone-generator-dbg +Section: debug +Priority: extra +Architecture: any +Depends: + tone-generator (= ${binary:Version}), + ${misc:Depends}, +Description: Telephony Tone Generator (debugging files) + tone generator is simple daemon which provides + generation of playback tones for DTMF (dialer + keypad tones), call progress indication, and + other miscellaneous telephony-related tones. + +Package: tone-generator-scripts +Architecture: all +Depends: + tone-generator (>= ${source:Version}), + ${misc:Depends}, +Description: Telephony Tone Generator (test scripts) + tone generator is simple daemon which provides + generation of playback tones for DTMF (dialer + keypad tones), call progress indication, and + other miscellaneous telephony-related tones. --- tone-generator-1.5.4+15.10.20150731.orig/debian/copyright +++ tone-generator-1.5.4+15.10.20150731/debian/copyright @@ -0,0 +1,22 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Source: https://launchpad.net/~phablet-team/tone-generator/ubuntu +Comment: This package is a fork of: https://github.com/nemomobile/tone-generator + +Files: * +Copyright: Copyright (C) 2010 Nokia Corporation +License: LGPL-2.1 + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser Public License as published by + the Free Software Foundation version 2 of the License. + . + 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 Lesser Public License for more details. + . + You should have received a copy of the GNU Lesser General Public + License along with this library; 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-2.1'. --- tone-generator-1.5.4+15.10.20150731.orig/debian/rules +++ tone-generator-1.5.4+15.10.20150731/debian/rules @@ -0,0 +1,17 @@ +#!/usr/bin/make -f + +CFLAGS += -Wl,-z,defs,--as-needed + +%: + dh $@ --parallel --with=autoreconf + +override_dh_installinit: + dh_installinit --no-restart-on-upgrade + +override_dh_install: + dh_install --fail-missing + +override_dh_strip: + dh_strip --dbg-package=tone-generator-dbg + + --- tone-generator-1.5.4+15.10.20150731.orig/debian/tone-generator-scripts.install +++ tone-generator-1.5.4+15.10.20150731/debian/tone-generator-scripts.install @@ -0,0 +1 @@ +test/* /usr/share/tone-generator/scripts --- tone-generator-1.5.4+15.10.20150731.orig/debian/tone-generator.conf +++ tone-generator-1.5.4+15.10.20150731/debian/tone-generator.conf @@ -0,0 +1,16 @@ +description "Starts the tone-generator service" + +start on started dbus and xsession SESSION=ubuntu-touch +stop on runlevel [06] + +respawn +respawn limit unlimited + +env DTMF_VOLUME=8 +env TONE_STANDARD="cept" +env PULSE_PROP='media.role=alert' +env IND_PROPS='media.role=phone' + +exec tonegend -s $TONE_STANDARD -b 100 -r 20 --volume-dtmf $DTMF_VOLUME -I $IND_PROPS +post-stop exec sleep 1 + --- tone-generator-1.5.4+15.10.20150731.orig/debian/tone-generator.install +++ tone-generator-1.5.4+15.10.20150731/debian/tone-generator.install @@ -0,0 +1,2 @@ +usr/bin/tonegend +debian/tone-generator.conf /usr/share/upstart/sessions