[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#865971: marked as done (stable-pu: package tbdialout/1.7.2-2)



Your message dated Sat, 07 Oct 2017 11:33:55 +0100
with message-id <1507372435.18586.64.camel@adam-barratt.org.uk>
and subject line Closing bugs for 9.2 point release
has caused the Debian Bug report #865971,
regarding stable-pu: package tbdialout/1.7.2-2
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
865971: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=865971
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: pu

Adding a '+' to the default settings for this plugin makes it work
seamlessly with no user attempt to configure it.

Without the '+', if it sees a phone number +1234567000 it creates the
URI tel:1234567000 which is not a valid tel: URI as per RFC 3966[1]

With the '+' in the default preferences, it creates the correct URI,
tel:+1234567000

The relevant bug report is 865961[2]

The debdiff includes other minor changes:
- remove obsolete Dm-Upload-Allowed from debian/control
- update debian/copyright
- update debian/watch

Regards,

Daniel



1. http://www.faqs.org/rfcs/rfc3966.html
2. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=865961
diff -Nru tbdialout-1.7.2/debian/changelog tbdialout-1.7.2/debian/changelog
--- tbdialout-1.7.2/debian/changelog	2014-05-02 18:58:02.000000000 +0200
+++ tbdialout-1.7.2/debian/changelog	2017-06-26 08:51:10.000000000 +0200
@@ -1,3 +1,9 @@
+tbdialout (1.7.2-2) unstable; urgency=low
+
+  * Include leading plus symbol with tel: URI scheme.  (Closes: #865961)
+
+ -- Daniel Pocock <daniel@pocock.pro>  Mon, 26 Jun 2017 08:51:10 +0200
+
 tbdialout (1.7.2-1) unstable; urgency=low
 
   * Initial packaging.  (Closes: #746687)
diff -Nru tbdialout-1.7.2/debian/control tbdialout-1.7.2/debian/control
--- tbdialout-1.7.2/debian/control	2014-05-02 18:58:02.000000000 +0200
+++ tbdialout-1.7.2/debian/control	2017-06-26 08:51:10.000000000 +0200
@@ -5,7 +5,6 @@
 Uploaders: Daniel Pocock <daniel@pocock.pro>
 Build-Depends: debhelper (>= 9), mozilla-devscripts (>= 0.19~)
 Build-Depends-Indep: zip
-DM-Upload-Allowed: yes
 Standards-Version: 3.9.5
 Vcs-Git: git://git.debian.org/pkg-mozext/tbdialout.git
 Vcs-Browser: http://git.debian.org/?p=pkg-mozext/tbdialout.git;a=summary
diff -Nru tbdialout-1.7.2/debian/copyright tbdialout-1.7.2/debian/copyright
--- tbdialout-1.7.2/debian/copyright	2014-05-02 18:58:02.000000000 +0200
+++ tbdialout-1.7.2/debian/copyright	2014-06-12 17:29:46.000000000 +0200
@@ -10,6 +10,17 @@
 Copyright: 2010, Nickolay Ponomarev <asqueella@gmail.com>
 License: MPL-1.1
 
+Files: content/options.js content/options.xul content/overlay.js content/thunderbirdOverlay.xul
+Copyright: 2010-2011, Chris Hastie <chris@oak-wood.co.uk>
+License: MPL-1.1 or GPL-2.0 or LGPL-2.1
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
+ .
+ On Debian systems, the full text of the GNU Lesser General Public
+ License version 2.1 can be found in the file
+ `/usr/share/common-licenses/LGPL-2.1'.
+
 Files: debian/*
 Copyright: 2014, Daniel Pocock http://danielpocock.com
 License: MPL-1.1
diff -Nru tbdialout-1.7.2/debian/patches/0002_default_proto_tel_uri.patch tbdialout-1.7.2/debian/patches/0002_default_proto_tel_uri.patch
--- tbdialout-1.7.2/debian/patches/0002_default_proto_tel_uri.patch	2014-05-02 18:58:02.000000000 +0200
+++ tbdialout-1.7.2/debian/patches/0002_default_proto_tel_uri.patch	2017-06-26 08:43:20.000000000 +0200
@@ -1,13 +1,16 @@
 diff --git a/defaults/preferences/tbdialout.js b/defaults/preferences/tbdialout.js
-index af5c78f..9e509f1 100644
+index af5c78f..2ec3bcd 100644
 --- a/defaults/preferences/tbdialout.js
 +++ b/defaults/preferences/tbdialout.js
-@@ -1,4 +1,4 @@
+@@ -1,6 +1,6 @@
 -pref( "extensions.tbdialout.proto", "callto:" );
 +pref( "extensions.tbdialout.proto", "tel:" );
  pref( "extensions.tbdialout.prefix", "" );
- pref( "extensions.tbdialout.plus", "" );
+-pref( "extensions.tbdialout.plus", "" );
++pref( "extensions.tbdialout.plus", "+" );
  pref( "extensions.tbdialout.tbbuttonadded", false );
+ pref( "extensions.tbdialout.customurl", "" );
+ pref( "extensions.tbdialout.customuser", "" );
 @@ -15,4 +15,4 @@ pref( "extensions.tbdialout.ami.host", "" );
  pref( "extensions.tbdialout.ami.port", 5038 );
  pref( "extensions.tbdialout.ami.user", "" );
diff -Nru tbdialout-1.7.2/debian/watch tbdialout-1.7.2/debian/watch
--- tbdialout-1.7.2/debian/watch	2014-05-02 18:58:02.000000000 +0200
+++ tbdialout-1.7.2/debian/watch	2015-10-01 21:26:13.000000000 +0200
@@ -1,3 +1,4 @@
 version=3
-opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/TBDialOut-$1\.tar\.gz/ \
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/TBDialOut-$1\.tar\.gz/,\
+uversionmangle=s/pre/~/ \
   https://github.com/tipichris/TBDialOut/tags .*/v?(\d\S*)\.tar\.gz

--- End Message ---
--- Begin Message ---
Version: 9.2

Hi.

The updates referenced by each of these bugs was included in today's
point release of stretch.

Regards,

Adam

--- End Message ---

Reply to: