Bug#851296: [PATCH 3/3] TransitionsPanel: URL quote in template, not variables

2017-10-30 Thread Ville Skyttä
---
 distro_tracker/vendor/debian/templates/debian/transitions-panel.html | 2 +-
 distro_tracker/vendor/debian/tracker_panels.py   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/distro_tracker/vendor/debian/templates/debian/transitions-panel.html 
b/distro_tracker/vendor/debian/templates/debian/transitions-panel.html
index e14453d..56f170c 100644
--- a/distro_tracker/vendor/debian/templates/debian/transitions-panel.html
+++ b/distro_tracker/vendor/debian/templates/debian/transitions-panel.html
@@ -41,7 +41,7 @@
 
 {% if panel.context.excuses %}
 
-https://qa.debian.org/excuses.php?package={{ 
panel.context.package_name }}">excuses:
+https://qa.debian.org/excuses.php?package={{ 
panel.context.package_name|urlencode:'' }}">excuses:
 
   {% for excuse in panel.context.excuses %}
   {{ excuse }}
diff --git a/distro_tracker/vendor/debian/tracker_panels.py 
b/distro_tracker/vendor/debian/tracker_panels.py
index 9569969..17f90b2 100644
--- a/distro_tracker/vendor/debian/tracker_panels.py
+++ b/distro_tracker/vendor/debian/tracker_panels.py
@@ -258,7 +258,7 @@ class TransitionsPanel(BasePanel):
 return {
 'transitions': self.package.package_transitions.all(),
 'excuses': excuses,
-'package_name': urlquote(self.package.name),
+'package_name': self.package.name,
 }
 
 @property
-- 
2.14.1



Bug#851296:

2017-10-30 Thread Ville Skyttä
Tags: patch

This set of patches should fix the mentioned issues and more of the
kind I could find with some grepping.



Bug#851296: [PATCH 1/3] Use urlquote_plus instead of urlquote for query string data

2017-10-30 Thread Ville Skyttä
---
 distro_tracker/vendor/debian/rules.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/distro_tracker/vendor/debian/rules.py 
b/distro_tracker/vendor/debian/rules.py
index 9a6ed00..16672b3 100644
--- a/distro_tracker/vendor/debian/rules.py
+++ b/distro_tracker/vendor/debian/rules.py
@@ -15,7 +15,7 @@ import re
 import requests
 
 from django import forms
-from django.utils.http import urlencode, urlquote
+from django.utils.http import urlencode, urlquote_plus
 from django.utils.safestring import mark_safe
 from django.conf import settings
 
@@ -263,7 +263,7 @@ def get_developer_information_url(developer_email):
 Return a URL to extra information about a developer, by email address.
 """
 URL_TEMPLATE = 'https://qa.debian.org/developer.php?email={email}'
-return URL_TEMPLATE.format(email=urlquote(developer_email))
+return URL_TEMPLATE.format(email=urlquote_plus(developer_email))
 
 
 def get_external_version_information_urls(package_name):
@@ -328,7 +328,7 @@ def _add_dmd_entry(extra, email):
 'display': 'DMD',
 'description': 'UDD\'s Debian Maintainer Dashboard',
 'link': 'https://udd.debian.org/dmd/?{email}#todo'.format(
-email=urlquote(email)
+email=urlquote_plus(email)
 )
 })
 
-- 
2.14.1



Bug#851296: [PATCH 3/3] TransitionsPanel: URL quote in template, not variables

2017-10-30 Thread Ville Skyttä
---
 distro_tracker/vendor/debian/templates/debian/transitions-panel.html | 2 +-
 distro_tracker/vendor/debian/tracker_panels.py   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/distro_tracker/vendor/debian/templates/debian/transitions-panel.html 
b/distro_tracker/vendor/debian/templates/debian/transitions-panel.html
index e14453d..56f170c 100644
--- a/distro_tracker/vendor/debian/templates/debian/transitions-panel.html
+++ b/distro_tracker/vendor/debian/templates/debian/transitions-panel.html
@@ -41,7 +41,7 @@
 
 {% if panel.context.excuses %}
 
-https://qa.debian.org/excuses.php?package={{ 
panel.context.package_name }}">excuses:
+https://qa.debian.org/excuses.php?package={{ 
panel.context.package_name|urlencode:'' }}">excuses:
 
   {% for excuse in panel.context.excuses %}
   {{ excuse }}
diff --git a/distro_tracker/vendor/debian/tracker_panels.py 
b/distro_tracker/vendor/debian/tracker_panels.py
index 9569969..17f90b2 100644
--- a/distro_tracker/vendor/debian/tracker_panels.py
+++ b/distro_tracker/vendor/debian/tracker_panels.py
@@ -258,7 +258,7 @@ class TransitionsPanel(BasePanel):
 return {
 'transitions': self.package.package_transitions.all(),
 'excuses': excuses,
-'package_name': urlquote(self.package.name),
+'package_name': self.package.name,
 }
 
 @property
-- 
2.14.1



Bug#851296:

2017-10-30 Thread Ville Skyttä
Tags: patch

This set of patches should fix the mentioned issues and more of the
kind I could find with some grepping.



Bug#851296: [PATCH 2/3] Missing URL encoding fixes

2017-10-30 Thread Ville Skyttä
---
 .../accounts/templates/accounts/subscriptions.html   |  6 +++---
 .../accounts/templates/accounts/user-widget.html |  2 +-
 .../core/templates/core/edit-team-membership.html|  6 +++---
 distro_tracker/core/templates/core/news_list.html|  2 +-
 distro_tracker/core/templates/core/package.html  |  2 +-
 distro_tracker/core/templates/core/team-list.html|  2 +-
 distro_tracker/core/templates/core/team-manage.html  |  2 +-
 distro_tracker/core/templates/core/team.html |  2 +-
 distro_tracker/vendor/debian/tracker_panels.py   | 20 +---
 9 files changed, 25 insertions(+), 19 deletions(-)

diff --git a/distro_tracker/accounts/templates/accounts/subscriptions.html 
b/distro_tracker/accounts/templates/accounts/subscriptions.html
index cc0243d..02fab38 100644
--- a/distro_tracker/accounts/templates/accounts/subscriptions.html
+++ b/distro_tracker/accounts/templates/accounts/subscriptions.html
@@ -30,7 +30,7 @@
 Unsubscribe all
 
 {% endif %}
-
+
 Modify keywords
 
 
@@ -77,7 +77,7 @@



-   
+   
Modify keywords
{% 
csrf_token %}

@@ -123,7 +123,7 @@


Modify keywords
-   Manage subscriptions
+   Manage subscriptions
{% if membership.muted %}
{% 
csrf_token %}
{% else %}
diff --git a/distro_tracker/accounts/templates/accounts/user-widget.html 
b/distro_tracker/accounts/templates/accounts/user-widget.html
index a5b0247..5838afa 100644
--- a/distro_tracker/accounts/templates/accounts/user-widget.html
+++ b/distro_tracker/accounts/templates/accounts/user-widget.html
@@ -1,7 +1,7 @@
 {% if user.is_authenticated %}
 Profile
 |
-Log out
+Log out
 {% else %}
 Register
 |
diff --git a/distro_tracker/core/templates/core/edit-team-membership.html 
b/distro_tracker/core/templates/core/edit-team-membership.html
index 06125ed..745aed2 100644
--- a/distro_tracker/core/templates/core/edit-team-membership.html
+++ b/distro_tracker/core/templates/core/edit-team-membership.html
@@ -35,14 +35,14 @@
 {% csrf_token %}
 
 
-
+
 Unmute
 
 {% else %}
 {% csrf_token %}
 
 
-
+
 Mute
 
 {% endif %}
@@ -70,7 +70,7 @@
 
 
 {% for page in page_obj.paginator.page_range %}
-{{ page }}
+{{ page }}
 {% endfor %}
 
 
diff --git a/distro_tracker/core/templates/core/news_list.html 
b/distro_tracker/core/templates/core/news_list.html
index c13952d..4f139ab 100644
--- a/distro_tracker/core/templates/core/news_list.html
+++ b/distro_tracker/core/templates/core/news_list.html
@@ -25,7 +25,7 @@
 
 
 {% for page in page_obj.paginator.page_range %}
-{{ page }}
+{{ page }}
 {% endfor %}
 
 
diff --git a/distro_tracker/core/templates/core/package.html 
b/distro_tracker/core/templates/core/package.html
index 2253794..1f29d33 100644
--- a/distro_tracker/core/templates/core/package.html
+++ b/distro_tracker/core/templates/core/package.html
@@ -33,7 +33,7 @@


{% else %}
-   
+   
{% endif %}
 
  Subscribe
diff --git a/distro_tracker/core/templates/core/team-list.html 
b/distro_tracker/core/templates/core/team-list.html
index ae1d1cc..4192515 100644
--- a/distro_tracker/core/templates/core/team-list.html
+++ b/distro_tracker/core/templates/core/team-list.html
@@ -27,7 +27,7 @@
 
 
 {% for page in page_obj.paginator.page_range %}
-{{ page }}
+{{ page }}
 {% endfor %}
 
 
diff --git a/distro_tracker/core/templates/core/team-manage.html 
b/distro_tracker/core/templates/core/team-manage.html
index c61eb8b..4cf0f7b 100644
--- a/distro_tracker/core/templates/core/team-manage.html
+++ b/distro_tracker/core/templates/core/team-manage.html
@@ -31,7 +31,7 @@
 
 
 {% for page in page_obj.paginator.page_range %}
-{{ page }}
+{{ page }}
 {% endfor %}
 
 
diff --git a/distro_tracker/core/templates/core/team.html 
b/distro_tracker/core/templates/core/team.html
index 722e243..de338de 100644
--- a/distro_tracker/core/templates/core/team.html
+++ b/distro_tracker/core/templates/core/team.html
@@ -116,7 +116,7 @@
 {% endif %}
{% if user_member_of_team %}

-   {% octicon 'trashcan' 'remove package 
from team' %}
+   {% octicon 'trashcan' 'remove 
package from team' %}

{% endif %}
   

Bug#851296: [PATCH 1/3] Use urlquote_plus instead of urlquote for query string data

2017-10-30 Thread Ville Skyttä
---
 distro_tracker/vendor/debian/rules.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/distro_tracker/vendor/debian/rules.py 
b/distro_tracker/vendor/debian/rules.py
index 9a6ed00..16672b3 100644
--- a/distro_tracker/vendor/debian/rules.py
+++ b/distro_tracker/vendor/debian/rules.py
@@ -15,7 +15,7 @@ import re
 import requests
 
 from django import forms
-from django.utils.http import urlencode, urlquote
+from django.utils.http import urlencode, urlquote_plus
 from django.utils.safestring import mark_safe
 from django.conf import settings
 
@@ -263,7 +263,7 @@ def get_developer_information_url(developer_email):
 Return a URL to extra information about a developer, by email address.
 """
 URL_TEMPLATE = 'https://qa.debian.org/developer.php?email={email}'
-return URL_TEMPLATE.format(email=urlquote(developer_email))
+return URL_TEMPLATE.format(email=urlquote_plus(developer_email))
 
 
 def get_external_version_information_urls(package_name):
@@ -328,7 +328,7 @@ def _add_dmd_entry(extra, email):
 'display': 'DMD',
 'description': 'UDD\'s Debian Maintainer Dashboard',
 'link': 'https://udd.debian.org/dmd/?{email}#todo'.format(
-email=urlquote(email)
+email=urlquote_plus(email)
 )
 })
 
-- 
2.14.1



Re: Packages looking for new maintainers

2017-10-28 Thread Ville Skyttä
On Fri, Oct 27, 2017 at 11:24 AM, Hedayat Vatankhah
 wrote:
> If nobody else wants it, I'd take kid3

Transferred, thanks!
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


[Desktop-packages] [Bug 1727696] [NEW] System does not shut down without Ctrl+Alt+F7

2017-10-26 Thread Ville Skyttä
Public bug reported:

This is a fresh 17.10 installation, for some reason defaulting to Xorg
instead of wayland (no choice given in the login screen).

Anyway, shutting down from X session doesn't work. Screen stays blank
black, cursor blinking in top left corner. Seems like it's stuck there
forever (haven't had patience to wait long enough).

Found a workaround: in the black screen cursor blinking state above, hit
Ctrl+Alt+F7. One second or so after that, the system shuts down cleanly
every time.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: xorg 1:7.7+19ubuntu3
ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
Uname: Linux 4.13.0-16-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.1
Architecture: amd64
BootLog: /dev/sda1: clean, 153154/2842624 files, 1254197/11368960 blocks
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Thu Oct 26 14:27:05 2017
DistUpgraded: Fresh install
DistroCodename: artful
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
 NVIDIA Corporation GK107M [GeForce GT 650M] [10de:0fd1] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
InstallationDate: Installed on 2017-10-26 (0 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
MachineType: ASUSTeK COMPUTER INC. N56VZ
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-16-generic 
root=UUID=be8c6652-102f-4bc2-9739-4c7954b40a80 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/22/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N56VZ.217
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N56VZ
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN56VZ.217:bd05/22/2013:svnASUSTeKCOMPUTERINC.:pnN56VZ:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN56VZ:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.family: N
dmi.product.name: N56VZ
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.83-1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.5-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful ubuntu

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1727696

Title:
  System does not shut down without Ctrl+Alt+F7

Status in xorg package in Ubuntu:
  New

Bug description:
  This is a fresh 17.10 installation, for some reason defaulting to Xorg
  instead of wayland (no choice given in the login screen).

  Anyway, shutting down from X session doesn't work. Screen stays blank
  black, cursor blinking in top left corner. Seems like it's stuck there
  forever (haven't had patience to wait long enough).

  Found a workaround: in the black screen cursor blinking state above,
  hit Ctrl+Alt+F7. One second or so after that, the system shuts down
  cleanly every time.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu3
  ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
  Uname: Linux 4.13.0-16-generic x86_64
  ApportVersion: 2.20.7-0ubuntu3.1
  Architecture: amd64
  BootLog: /dev/sda1: clean, 153154/2842624 files, 1254197/11368960 blocks
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Oct 26 14:27:05 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
   NVIDIA Corporation GK107M [GeForce GT 650M] [10de:0fd1] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
  InstallationDate: Installed on 2017-10-26 (0 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
  MachineType: ASUSTeK COMPUTER INC. N56VZ
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-16-generic 
root=UUID=be8c6652-102f-4bc2-9739-4c7954b40a80 ro quiet 

[Ubuntu-x-swat] [Bug 1727696] [NEW] System does not shut down without Ctrl+Alt+F7

2017-10-26 Thread Ville Skyttä
Public bug reported:

This is a fresh 17.10 installation, for some reason defaulting to Xorg
instead of wayland (no choice given in the login screen).

Anyway, shutting down from X session doesn't work. Screen stays blank
black, cursor blinking in top left corner. Seems like it's stuck there
forever (haven't had patience to wait long enough).

Found a workaround: in the black screen cursor blinking state above, hit
Ctrl+Alt+F7. One second or so after that, the system shuts down cleanly
every time.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: xorg 1:7.7+19ubuntu3
ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
Uname: Linux 4.13.0-16-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.1
Architecture: amd64
BootLog: /dev/sda1: clean, 153154/2842624 files, 1254197/11368960 blocks
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Thu Oct 26 14:27:05 2017
DistUpgraded: Fresh install
DistroCodename: artful
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
 NVIDIA Corporation GK107M [GeForce GT 650M] [10de:0fd1] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
InstallationDate: Installed on 2017-10-26 (0 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
MachineType: ASUSTeK COMPUTER INC. N56VZ
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-16-generic 
root=UUID=be8c6652-102f-4bc2-9739-4c7954b40a80 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/22/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N56VZ.217
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N56VZ
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN56VZ.217:bd05/22/2013:svnASUSTeKCOMPUTERINC.:pnN56VZ:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN56VZ:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.family: N
dmi.product.name: N56VZ
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.83-1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.5-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful ubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1727696

Title:
  System does not shut down without Ctrl+Alt+F7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1727696/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1727696] [NEW] System does not shut down without Ctrl+Alt+F7

2017-10-26 Thread Ville Skyttä
Public bug reported:

This is a fresh 17.10 installation, for some reason defaulting to Xorg
instead of wayland (no choice given in the login screen).

Anyway, shutting down from X session doesn't work. Screen stays blank
black, cursor blinking in top left corner. Seems like it's stuck there
forever (haven't had patience to wait long enough).

Found a workaround: in the black screen cursor blinking state above, hit
Ctrl+Alt+F7. One second or so after that, the system shuts down cleanly
every time.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: xorg 1:7.7+19ubuntu3
ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
Uname: Linux 4.13.0-16-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.1
Architecture: amd64
BootLog: /dev/sda1: clean, 153154/2842624 files, 1254197/11368960 blocks
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Thu Oct 26 14:27:05 2017
DistUpgraded: Fresh install
DistroCodename: artful
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
 NVIDIA Corporation GK107M [GeForce GT 650M] [10de:0fd1] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
InstallationDate: Installed on 2017-10-26 (0 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
MachineType: ASUSTeK COMPUTER INC. N56VZ
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-16-generic 
root=UUID=be8c6652-102f-4bc2-9739-4c7954b40a80 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/22/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N56VZ.217
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N56VZ
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN56VZ.217:bd05/22/2013:svnASUSTeKCOMPUTERINC.:pnN56VZ:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN56VZ:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.family: N
dmi.product.name: N56VZ
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.83-1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.5-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1727696

Title:
  System does not shut down without Ctrl+Alt+F7

Status in xorg package in Ubuntu:
  New

Bug description:
  This is a fresh 17.10 installation, for some reason defaulting to Xorg
  instead of wayland (no choice given in the login screen).

  Anyway, shutting down from X session doesn't work. Screen stays blank
  black, cursor blinking in top left corner. Seems like it's stuck there
  forever (haven't had patience to wait long enough).

  Found a workaround: in the black screen cursor blinking state above,
  hit Ctrl+Alt+F7. One second or so after that, the system shuts down
  cleanly every time.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu3
  ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
  Uname: Linux 4.13.0-16-generic x86_64
  ApportVersion: 2.20.7-0ubuntu3.1
  Architecture: amd64
  BootLog: /dev/sda1: clean, 153154/2842624 files, 1254197/11368960 blocks
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Oct 26 14:27:05 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
   NVIDIA Corporation GK107M [GeForce GT 650M] [10de:0fd1] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
  InstallationDate: Installed on 2017-10-26 (0 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
  MachineType: ASUSTeK COMPUTER INC. N56VZ
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-16-generic 
root=UUID=be8c6652-102f-4bc2-9739-4c7954b40a80 

[Bug 1727696] [NEW] System does not shut down without Ctrl+Alt+F7

2017-10-26 Thread Ville Skyttä
Public bug reported:

This is a fresh 17.10 installation, for some reason defaulting to Xorg
instead of wayland (no choice given in the login screen).

Anyway, shutting down from X session doesn't work. Screen stays blank
black, cursor blinking in top left corner. Seems like it's stuck there
forever (haven't had patience to wait long enough).

Found a workaround: in the black screen cursor blinking state above, hit
Ctrl+Alt+F7. One second or so after that, the system shuts down cleanly
every time.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: xorg 1:7.7+19ubuntu3
ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
Uname: Linux 4.13.0-16-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.1
Architecture: amd64
BootLog: /dev/sda1: clean, 153154/2842624 files, 1254197/11368960 blocks
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Thu Oct 26 14:27:05 2017
DistUpgraded: Fresh install
DistroCodename: artful
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
 NVIDIA Corporation GK107M [GeForce GT 650M] [10de:0fd1] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: ASUSTeK Computer Inc. N56VZ [1043:2103]
InstallationDate: Installed on 2017-10-26 (0 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
MachineType: ASUSTeK COMPUTER INC. N56VZ
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-16-generic 
root=UUID=be8c6652-102f-4bc2-9739-4c7954b40a80 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/22/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N56VZ.217
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N56VZ
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN56VZ.217:bd05/22/2013:svnASUSTeKCOMPUTERINC.:pnN56VZ:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN56VZ:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.family: N
dmi.product.name: N56VZ
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.83-1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.5-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1727696

Title:
  System does not shut down without Ctrl+Alt+F7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1727696/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Bug#879813: gkrelltop: [PATCH] Hush stderr on init

2017-10-26 Thread Ville Skyttä
Package: gkrelltop
Version: 2.2.13-1
Severity: minor

Dear Maintainer,

gkrelltop causes "available 0" (or 1) to be printed in stderr on
gkrellm startup. The attached patch makes it quiet.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful-updates
  APT policy: (500, 'artful-updates'), (500, 'artful-security'), (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-16-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gkrelltop depends on:
ii  gkrellm  2.3.10-1
ii  libc62.26-0ubuntu2

gkrelltop recommends no packages.

Versions of packages gkrelltop suggests:
pn  gkrelltopd  

-- no debconf information
>From 654dd98442e958c439f5ce3d6d92aef6552d1b71 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Thu, 26 Oct 2017 12:41:50 +0300
Subject: [PATCH] Hush stderr on init

---
 gkrelltop.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/gkrelltop.c b/gkrelltop.c
index 13ce593..fc68bdd 100644
--- a/gkrelltop.c
+++ b/gkrelltop.c
@@ -812,7 +812,6 @@ Monitor *init_plugin()
 #ifdefGKRELLM_HAVE_CLIENT_MODE_PLUGINS
 gkrellm_client_plugin_get_setup(GKRELLTOP_SERVE_NAME, top_client_setup);
 
-fprintf(stderr,"available %d", gkrelltop_server_available);
 if (gkrelltop_server_available)
 {
 find_top_three = gkrelltop_client_process_find_top_three;
-- 
2.14.1



Re: [Rpm-maint] [rpm-software-management/rpm] Invoke python-macro-helper with -Es python args (#341)

2017-10-25 Thread Ville Skyttä
> I don't think that passing -E is good

Could you elaborate on that a bit, especially when you think -s /is/
good? Without -s, code from user site packages is loaded, potentially
interfering with the commands. Without -E, PYTHONPATH from environment
can be used to do exactly the same.

(If python3 could be assumed, I would have used -I here. Which BTW is
what I did in https://bugzilla.redhat.com/show_bug.cgi?id=1506355)


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/341#issuecomment-339453344___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


[Rpm-maint] [rpm-software-management/rpm] Invoke python-macro-helper with -Es python args (#341)

2017-10-25 Thread Ville Skyttä
To limit environment and user home dir influence.
You can view, comment on, or merge this pull request online at:

  https://github.com/rpm-software-management/rpm/pull/341

-- Commit Summary --

  * Invoke python-macro-helper with -Es python args

-- File Changes --

M macros.in (6)
M scripts/python-macro-helper (2)

-- Patch Links --

https://github.com/rpm-software-management/rpm/pull/341.patch
https://github.com/rpm-software-management/rpm/pull/341.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/341
___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


Re: Packages looking for new maintainers

2017-10-25 Thread Ville Skyttä
On Mon, Oct 23, 2017 at 10:24 PM, Ville Skyttä <ville.sky...@iki.fi> wrote:
> Hello,

...again, updated lists below. The following packages are looking for
new maintainers, ping me if you're able to help out. When doing so,
please note your FAS account name.

1) No co-maintainers at the moment:

- isrcsubmit
- kid3
- mbox2eml
- modplugtools
- portecle
- python-flake8-import-order
- vdr-epgfixer
- vdr-ttxtsubs

2) Needs new main admin, co-maintainers pinged some time ago but no
reply received/noticed:

- python-libdiscid
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Packages looking for new maintainers

2017-10-25 Thread Ville Skyttä
On Wed, Oct 25, 2017 at 1:46 PM, Igor Gnatenko
<ignatenkobr...@fedoraproject.org> wrote:

It's a bit hard to read your message because the lines you wrote are
in the middle of quoted ones without any extra empty lines, I hope I
got your intent right.

> On Mon, 2017-10-23 at 22:24 +0300, Ville Skyttä wrote:
>> - git-bz
> Would be happy to take this

It's all yours, thanks!

>> - libmodplug
> And this
>> - pyflakes
> And finally this

libmodplug and pyflakes had found new main admins already, I suggest
contacting the current owners in case you're able to help out.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Packages looking for new maintainers

2017-10-25 Thread Ville Skyttä
On Wed, Oct 25, 2017 at 1:06 PM, Michael Cullen
 wrote:
> I can take ccache if no one else wants it

Transferred, thanks!
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Packages looking for new maintainers

2017-10-25 Thread Ville Skyttä
On Wed, Oct 25, 2017 at 9:04 AM, Umar Parooq  wrote:
> username: pyc0d3r, full name: umar abdullahi

src.fedoraproject.org doesn't know of such a username, so I'm afraid
I'm not able to transfer packages to you.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: [PATCH] Spelling fixes

2017-10-25 Thread Ville Skyttä
On Tue, Oct 24, 2017 at 6:14 PM, Raphael Hertzog  wrote:
> Hello Ville,
>
> thanks for your 3 patches. I applied them all. Are you interested
> in contributing more?
>
> I desperately need help as there are many things to work on.

Sure, I think I can lend a hand every now and then. Is the list of
things needing work available in public somewhere?



Re: Packages looking for new maintainers

2017-10-24 Thread Ville Skyttä
On Wed, Oct 25, 2017 at 7:30 AM, Umar Parooq  wrote:
> i can take zopfli

Thanks, but I'm unable to guess/locate your username in FAS. Could you
let me know what it is?

(Does a thing exist where I could search FAS users by real name, BTW?)
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Packages looking for new maintainers

2017-10-24 Thread Ville Skyttä
On Wed, Oct 25, 2017 at 1:43 AM, Francisco J. Tsao Santin  wrote:
> I review the list again, and I think I also can take reptyr.

Transferred, thanks!
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Packages looking for new maintainers

2017-10-24 Thread Ville Skyttä
On Tue, Oct 24, 2017 at 10:47 PM, Antonio Trande  wrote:
> I can take libmodplug and rpmdevtools.

libmodplug transferred, thanks! rpmdevtools was already transferred to
ngompa, I suggest contacting the current maintainers if you still want
to help out.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Packages looking for new maintainers

2017-10-24 Thread Ville Skyttä
On Tue, Oct 24, 2017 at 10:31 PM, Sandro Bonazzola  wrote:
> I can take pyflakes

Transferred, thanks!
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: Packages looking for new maintainers

2017-10-24 Thread Ville Skyttä
On Tue, Oct 24, 2017 at 9:56 PM, Jan Pokorný <jpoko...@redhat.com> wrote:
> On 23/10/17 22:24 +0300, Ville Skyttä wrote:
>> [...]
>> - jing-trang
>
> still somewhat interested in that package, would help to keep it in
> Fedora if that's not awfully a lot of work.

Nah, it's been a very low maintenance package, and is in a good shape
I think. Transferred, thanks!
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Re: [Rpm-maint] [rpm-software-management/rpm] Python macro improvements (#221)

2017-10-23 Thread Ville Skyttä
@pmatilai @Conan-Kudo ping?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/221#issuecomment-338811478___
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint


[PATCH] Use type="search" for search input fields

2017-10-23 Thread Ville Skyttä
---
 distro_tracker/accounts/templates/accounts/subscriptions.html | 2 +-
 distro_tracker/core/static/css/style.css  | 2 +-
 distro_tracker/core/templates/core/package-search-form.html   | 2 +-
 distro_tracker/core/templates/core/team.html  | 2 +-
 distro_tracker/vendor/debian/tracker_panels.py| 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/distro_tracker/accounts/templates/accounts/subscriptions.html 
b/distro_tracker/accounts/templates/accounts/subscriptions.html
index 0ce1c16..cc0243d 100644
--- a/distro_tracker/accounts/templates/accounts/subscriptions.html
+++ b/distro_tracker/accounts/templates/accounts/subscriptions.html
@@ -190,7 +190,7 @@



-   
+   

 

diff --git a/distro_tracker/core/static/css/style.css 
b/distro_tracker/core/static/css/style.css
index 2e01769..1ce957f 100644
--- a/distro_tracker/core/static/css/style.css
+++ b/distro_tracker/core/static/css/style.css
@@ -39,7 +39,7 @@ button, input, optgroup, select, textarea {
   margin-top: 5px;
   margin-bottom: 0px;
 }
-.code-search-form input[type="text"] {
+.code-search-form input[type="search"] {
   width: 90%;
   border-color: rgb(221, 221, 221);
 }
diff --git a/distro_tracker/core/templates/core/package-search-form.html 
b/distro_tracker/core/templates/core/package-search-form.html
index 9b1f659..6a621b0 100644
--- a/distro_tracker/core/templates/core/package-search-form.html
+++ b/distro_tracker/core/templates/core/package-search-form.html
@@ -5,7 +5,7 @@
{% if search_form_use_label %}
Enter a {{ 
DISTRO_TRACKER_VENDOR_NAME }} package name: 
{% endif %}
-   
+   


Go
diff --git a/distro_tracker/core/templates/core/team.html 
b/distro_tracker/core/templates/core/team.html
index a3bf459..722e243 100644
--- a/distro_tracker/core/templates/core/team.html
+++ b/distro_tracker/core/templates/core/team.html
@@ -167,7 +167,7 @@
 add packages
 
 {% 
csrf_token %}
-
+
 Add
 
 
diff --git a/distro_tracker/vendor/debian/tracker_panels.py 
b/distro_tracker/vendor/debian/tracker_panels.py
index 188cc66..2d48fb6 100644
--- a/distro_tracker/vendor/debian/tracker_panels.py
+++ b/distro_tracker/vendor/debian/tracker_panels.py
@@ -140,7 +140,7 @@ class SourceCodeSearchLinks(LinksPanel.ItemProvider):
 ' action="' + reverse('dtracker-code-search') + '"'
 ' method="get" target="_blank">'
 ''
-''
+''
 '')
 
 def get_panel_items(self):
-- 
2.14.1



[PATCH] Python 3.6 invalid escape sequence deprecation fixes

2017-10-23 Thread Ville Skyttä
https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior
---
 distro_tracker/core/utils/email_messages.py  | 2 +-
 distro_tracker/mail/control/commands/keywords.py | 4 ++--
 distro_tracker/project/urls.py   | 2 +-
 setup.py | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/distro_tracker/core/utils/email_messages.py 
b/distro_tracker/core/utils/email_messages.py
index d7d370e..db73758 100644
--- a/distro_tracker/core/utils/email_messages.py
+++ b/distro_tracker/core/utils/email_messages.py
@@ -65,7 +65,7 @@ def names_and_addresses_from_string(content):
 """
 all_parts = [
 name_and_address_from_string(part)
-for part in re.split('(?<=>)\s*,\s*', content)
+for part in re.split(r'(?<=>)\s*,\s*', content)
 ]
 return [
 part
diff --git a/distro_tracker/mail/control/commands/keywords.py 
b/distro_tracker/mail/control/commands/keywords.py
index 12a1a13..10ffd4f 100644
--- a/distro_tracker/mail/control/commands/keywords.py
+++ b/distro_tracker/mail/control/commands/keywords.py
@@ -277,7 +277,7 @@ class SetDefaultKeywordsCommand(Command, 
KeywordCommandMixin):
 self.keywords)
 
 def handle(self):
-keywords = re.split('[,\s]+', self.keywords)
+keywords = re.split(r'[,\s]+', self.keywords)
 user_email, _ = UserEmail.objects.get_or_create(email=self.email)
 email_settings, _ = \
 EmailSettings.objects.get_or_create(user_email=user_email)
@@ -333,7 +333,7 @@ class SetPackageKeywordsCommand(Command, 
KeywordCommandMixin):
 Actual implementation of the keyword command version which handles
 subscription specific keywords.
 """
-keywords = re.split('[,\s]+', self.keywords)
+keywords = re.split(r'[,\s]+', self.keywords)
 subscription = self.get_subscription(self.email, self.package)
 if not subscription:
 return
diff --git a/distro_tracker/project/urls.py b/distro_tracker/project/urls.py
index 5a5b091..2b69f4c 100644
--- a/distro_tracker/project/urls.py
+++ b/distro_tracker/project/urls.py
@@ -78,7 +78,7 @@ urlpatterns = [
 
 # Permanent redirect for the old RSS URL
 url(r'^(?P(lib)?.)/(?P(\1).+)'
-'/news\.rss20\.xml$',
+r'/news\.rss20\.xml$',
 legacy_rss_redirect),
 
 url(r'^search$', PackageSearchView.as_view(),
diff --git a/setup.py b/setup.py
index 9277b53..8282f04 100755
--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@ def find_package_data(basedir):
 
 
 with open('debian/changelog') as f:
-res = re.search('\((\d.*)\)', f.readline())
+res = re.search(r'\((\d.*)\)', f.readline())
 version = res.group(1)
 
 setup(name='DistroTracker',
-- 
2.14.1



[PATCH] Spelling fixes

2017-10-23 Thread Ville Skyttä
---
 distro_tracker/auto_news/tests.py   | 2 +-
 distro_tracker/core/tests/tests_models.py   | 2 +-
 distro_tracker/core/tests/tests_tasks.py| 2 +-
 distro_tracker/core/utils/email_messages.py | 2 +-
 distro_tracker/core/utils/linkify.py| 2 +-
 distro_tracker/mail/tests/tests_control.py  | 4 ++--
 distro_tracker/mail/tests/tests_dispatch.py | 2 +-
 distro_tracker/project/settings/defaults.py | 4 ++--
 distro_tracker/test/tests.py| 2 +-
 distro_tracker/vendor/debian/tests.py   | 2 +-
 functional_tests/tests.py   | 2 +-
 11 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/distro_tracker/auto_news/tests.py 
b/distro_tracker/auto_news/tests.py
index beb4905..4956ccc 100644
--- a/distro_tracker/auto_news/tests.py
+++ b/distro_tracker/auto_news/tests.py
@@ -296,7 +296,7 @@ class GenerateNewsFromRepositoryUpdatesTest(TestCase):
 
 def test_multiple_new_versions_different_repos(self):
 """
-Tests the case when there are mutliple new versions of a source package
+Tests the case when there are multiple new versions of a source package
 each in a different repository.
 """
 source_package_name = 'dummy-package'
diff --git a/distro_tracker/core/tests/tests_models.py 
b/distro_tracker/core/tests/tests_models.py
index 159a92f..1216528 100644
--- a/distro_tracker/core/tests/tests_models.py
+++ b/distro_tracker/core/tests/tests_models.py
@@ -481,7 +481,7 @@ class PackageManagerTest(TestCase):
 
 def test_pseudo_package_create(self):
 """
-Tests that the pseudo packages manager creates pseudo pacakges.
+Tests that the pseudo packages manager creates pseudo packages.
 """
 p = PackageName.pseudo_packages.create(name='pseudo-package')
 
diff --git a/distro_tracker/core/tests/tests_tasks.py 
b/distro_tracker/core/tests/tests_tasks.py
index e5a5dbf..7279a2a 100644
--- a/distro_tracker/core/tests/tests_tasks.py
+++ b/distro_tracker/core/tests/tests_tasks.py
@@ -78,7 +78,7 @@ class JobTests(TestCase):
 def assert_task_dependency_preserved(self, task, dependent_tasks):
 """
 Helper method which cheks whether the given dependent tasks were
-executed after their dependency was satisifed.
+executed after their dependency was satisfied.
 """
 task_index = self.execution_list.index(task)
 for task in dependent_tasks:
diff --git a/distro_tracker/core/utils/email_messages.py 
b/distro_tracker/core/utils/email_messages.py
index d7d370e..d2dcdc4 100644
--- a/distro_tracker/core/utils/email_messages.py
+++ b/distro_tracker/core/utils/email_messages.py
@@ -244,7 +244,7 @@ def decode_header(header, default_encoding='utf-8'):
 def unfold_header(header):
 """
 Unfolding is the process to remove the line wrapping added by mail agents.
-An header is a single logical line and they are not allowed to be 
multi-line
+A header is a single logical line and they are not allowed to be multi-line
 values.
 
 We need to unfold their values in particular when we want to reuse the
diff --git a/distro_tracker/core/utils/linkify.py 
b/distro_tracker/core/utils/linkify.py
index 483484f..7450e30 100644
--- a/distro_tracker/core/utils/linkify.py
+++ b/distro_tracker/core/utils/linkify.py
@@ -119,7 +119,7 @@ class LinkifyUbuntuBugLinks(LinkifyDebianBugLinks):
 class LinkifyCVELinks(Linkify):
 """
 Detect "CVE-2014-1234" words and transform them into links to the
-CVE tracker at cve.mitre.org. The exact URL can be overriden with a
+CVE tracker at cve.mitre.org. The exact URL can be overridden with a
 ``DISTRO_TRACKER_CVE_URL`` configuration setting to redirect
 the URL to a custom tracker.
 """
diff --git a/distro_tracker/mail/tests/tests_control.py 
b/distro_tracker/mail/tests/tests_control.py
index 8b3ce2e..5f94f61 100644
--- a/distro_tracker/mail/tests/tests_control.py
+++ b/distro_tracker/mail/tests/tests_control.py
@@ -1621,7 +1621,7 @@ class SubscribeToPackageTest(EmailControlTest):
 
 def test_subscribe_and_confirm_normal(self):
 """
-Tests that the user is subscribed to the pacakge after running
+Tests that the user is subscribed to the package after running
 subscribe and confirm.
 """
 package_name = self.package.name
@@ -1917,7 +1917,7 @@ class UnsubscribeFromPackageTest(EmailControlTest):
 
 def test_unsubscribe_and_confirm_normal(self):
 """
-Tests that the user is unsubscribed from the pacakge after running
+Tests that the user is unsubscribed from the package after running
 unsubscribe and confirm.
 """
 package_name = self.package.name
diff --git a/distro_tracker/mail/tests/tests_dispatch.py 
b/distro_tracker/mail/tests/tests_dispatch.py
index 2b7968b..56c31d4 100644
--- a/distro_tracker/mail/tests/tests_dispatch.py
+++ b/distro_tracker/mail/tests/tests_dispatch.py
@@ 

Re: Packages looking for new maintainers

2017-10-23 Thread Ville Skyttä
On Mon, Oct 23, 2017 at 10:41 PM, Francisco J. Tsao Santin
 wrote:
> I can take netmask :-)

Transferred, thanks.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Packages looking for new maintainers

2017-10-23 Thread Ville Skyttä
Hello,

The following packages are looking for new maintainers, ping me if
you're able to help out.

1) No co-maintainers at the moment:

- git-bz
- isrcsubmit
- jing-trang
- kid3
- mbox2eml
- modplugtools
- netmask
- portecle
- python-flake8-import-order
- vdr-epgfixer
- vdr-ttxtsubs

2) Needs new main admin, co-maintainers pinged some time ago but no
reply received/noticed:

- ccache
- libmodplug
- pyflakes
- python-libdiscid
- reptyr
- rpmdevtools
- zopfli
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org


Bug#878714: python-keyring: [PATCH] Install the keyring executable

2017-10-15 Thread Ville Skyttä
Package: python-keyring
Version: 10.4.0-1
Severity: wishlist

Dear Maintainer,

The keyring executable referred to by upstream documentation and
installed by its setup.py is not included in the Debian package. It
would be a useful addition; patch implementing its inclusion is
attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-16-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages python-keyring depends on:
ii  python2.7.14-2ubuntu1
ii  python-dbus   1.2.4-1build3
ii  python-secretstorage  2.3.1-2

Versions of packages python-keyring recommends:
ii  python-keyrings.alt  2.2-2

Versions of packages python-keyring suggests:
ii  gnome-keyring 3.20.1-1ubuntu1
pn  libkf5wallet-bin  

-- no debconf information


0001-Install-the-keyring-executable.patch.gz
Description: application/gzip


[Python-modules-team] Bug#878714: python-keyring: [PATCH] Install the keyring executable

2017-10-15 Thread Ville Skyttä
Package: python-keyring
Version: 10.4.0-1
Severity: wishlist

Dear Maintainer,

The keyring executable referred to by upstream documentation and
installed by its setup.py is not included in the Debian package. It
would be a useful addition; patch implementing its inclusion is
attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-16-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages python-keyring depends on:
ii  python2.7.14-2ubuntu1
ii  python-dbus   1.2.4-1build3
ii  python-secretstorage  2.3.1-2

Versions of packages python-keyring recommends:
ii  python-keyrings.alt  2.2-2

Versions of packages python-keyring suggests:
ii  gnome-keyring 3.20.1-1ubuntu1
pn  libkf5wallet-bin  

-- no debconf information


0001-Install-the-keyring-executable.patch.gz
Description: application/gzip
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

Bug#878678: reportbug: [PATCH] Store SMTP password with libsecret if available

2017-10-15 Thread Ville Skyttä
Package: reportbug
Version: 7.1.7ubuntu1
Severity: wishlist

Dear Maintainer,

Attached is a 'git am'able patch that adds support for storing SMTP
passwords with libsecret if available. When stored this way, SMTP
passwords don't need to be specified at all in reportbugrc.

-- Package-specific info:
** Environment settings:
EDITOR="emacs"
PAGER="less"
DEBEMAIL="ville.sky...@iki.fi"
DEBFULLNAME="Ville Skytt\udcc3\udca4"
INTERFACE="text"

** /home/scop/.reportbugrc:
reportbug_version "7.1.7ubuntu1"
mode novice
ui text
smtphost "smtp.gmail.com:587"
smtpuser "vsky...@gmail.com"
smtppasswd 
smtptls
no-cc

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-16-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages reportbug depends on:
ii  apt1.5
ii  python33.6.3-0ubuntu2
ii  python3-reportbug  7.1.7ubuntu1

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail  
pn  debconf-utils   
pn  debsums 
pn  dlocate 
ii  emacs25-bin-common  25.2+1-6
ii  file1:5.32-1
ii  gir1.2-gtk-3.0  3.22.21-0ubuntu1
ii  gir1.2-vte-2.91 0.48.4-0ubuntu1
ii  gnupg   2.1.15-1ubuntu8
pn  postfix | exim4 | mail-transport-agent  
ii  python3-gi  3.24.1-2build1
ii  python3-gi-cairo3.24.1-2build1
pn  python3-gtkspellcheck   
pn  python3-urwid   
ii  xdg-utils   1.1.1-1ubuntu2

Versions of packages python3-reportbug depends on:
ii  apt1.5
ii  file   1:5.32-1
ii  python33.6.3-0ubuntu2
ii  python3-debian 0.1.30
ii  python3-debianbts  2.6.1
ii  python3-requests   2.18.1-1

python3-reportbug suggests no packages.

-- no debconf information


0001-submit.py-Store-SMTP-password-with-libsecret-if-avai.patch.gz
Description: application/gzip


Bug#878599: git: [PATCH] Ship git-credential-libsecret

2017-10-14 Thread Ville Skyttä
Package: git
Version: 1:2.14.1-1ubuntu4
Severity: wishlist

Dear Maintainer,

The git package doesn't currently ship with support for any kind of a
secret storage for credentials. The attached patch fixes it, by
shipping git-credential-libsecret from contrib/.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-16-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages git depends on:
ii  dpkg 1.18.24ubuntu1
ii  git-man  1:2.14.1-1ubuntu4
ii  libc62.26-0ubuntu2
ii  libcurl3-gnutls  7.55.1-1ubuntu2
ii  liberror-perl0.17024-1
ii  libexpat12.2.3-1
ii  libpcre3 2:8.39-5ubuntu3
ii  perl 5.26.0-8ubuntu1
ii  zlib1g   1:1.2.11.dfsg-0ubuntu2

Versions of packages git recommends:
ii  less 481-2.1ubuntu2
ii  openssh-client [ssh-client]  1:7.5p1-10
ii  patch2.7.5-1build1

Versions of packages git suggests:
ii  gettext-base  0.19.8.1-4ubuntu1
pn  git-cvs   
pn  git-daemon-run | git-daemon-sysvinit  
pn  git-doc   
pn  git-el
ii  git-email 1:2.14.1-1ubuntu4
pn  git-gui   
pn  git-mediawiki 
pn  git-svn   
ii  gitk  1:2.14.1-1ubuntu4
pn  gitweb

-- no debconf information


0001-Ship-git-credential-libsecret.patch.gz
Description: application/gzip


[PATCH] Spelling fixes

2017-10-14 Thread Ville Skyttä
---
 CHANGES | 22 +++---
 CWRU/changelog  |  8 
 NEWS|  6 +++---
 bashhist.c  |  2 +-
 bashline.c  |  4 ++--
 builtins/gen-helpfiles.c|  2 +-
 builtins/help.def   |  2 +-
 configure.ac|  2 +-
 cross-build/cygwin32.cache  |  2 +-
 doc/bash.1  |  2 +-
 doc/bash.html   |  2 +-
 doc/bash.info   |  2 +-
 doc/bashref.html|  2 +-
 doc/bashref.info|  2 +-
 doc/bashref.texi|  2 +-
 examples/complete/bash_completion   |  4 ++--
 examples/functions/autoload |  2 +-
 examples/functions/autoload.v2  |  2 +-
 examples/functions/autoload.v3  |  2 +-
 examples/functions/sort-pos-params  |  2 +-
 examples/loadables/necho.c  |  2 +-
 examples/loadables/pathchk.c|  2 +-
 examples/startup-files/Bash_aliases |  2 +-
 expr.c  |  2 +-
 include/posixdir.h  |  2 +-
 subst.h |  2 +-
 tests/array.tests   |  4 ++--
 tests/builtins.tests|  2 +-
 tests/errors.tests  |  2 +-
 tests/new-exp2.sub  |  2 +-
 tests/printf.tests  |  2 +-
 tests/printf1.sub   |  2 +-
 tests/source5.sub   |  2 +-
 33 files changed, 51 insertions(+), 51 deletions(-)

diff --git a/CHANGES b/CHANGES
index 43cb1341..fffd68c1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -998,7 +998,7 @@ bb. Aliases whose value ends in a shell metacharacter now 
expand in a way to
 
 4.  New Features in Readline
 
-a.  The history truncation code now uses the same error recovery mechansim as
+a.  The history truncation code now uses the same error recovery mechanism as
 the history writing code, and restores the old version of the history file
 on error.  The error recovery mechanism handles symlinked history files.
 
@@ -1335,7 +1335,7 @@ c.  Fixed a bug that caused the pattern removal and 
pattern substitution word
 expansions and case statement word expansion to not match the empty string.
 
 d.  Fixed a bug that caused the tzset() function to not work after changing
-the TZ enviroment variable.
+the TZ environment variable.
 
 e.  Fixed a bug that caused the RHS of an assignment statement to undergo
 word splitting when it contained an unquoted $@.
@@ -1386,7 +1386,7 @@ t.  Fixed a problem with the bash malloc's internal idea 
of the top of the
 memory heap that resulted in incorrect decisions to try to reduce the
 break and give memory back to the kernel.
 
-u.  There are changes to the expansions peformed on compound array assignments,
+u.  There are changes to the expansions performed on compound array 
assignments,
 in an effort to make foo=( [ind1]=bar [ind2]=baz ) identical to
 foo[ind1]=bar foo[ind2]=baz.
 
@@ -2388,7 +2388,7 @@ j.  Fixed a bug in brace expansion that caused unwanted 
zero padding of the
 k.  Fixed a bug that prevented the |& construct from working as intended when
 used with a simple command with additional redirections.
 
-l.  Fixed a bug with the case statment ;& terminator that caused the shell to
+l.  Fixed a bug with the case statement ;& terminator that caused the shell to
 dereference a NULL pointer.
 
 m.  Fixed a bug that caused assignment statements or redirections preceding
@@ -3453,7 +3453,7 @@ x.  Fixed a bug that caused the shell to dump core when 
performing filename
 y.  Returned to the original Bourne shell rules for parsing ``:  no recursive
 parsing of embedded quoted strings or ${...} constructs.
 
-z.  The inheritence of the DEBUG, RETURN, and ERR traps is now dependent only
+z.  The inheritance of the DEBUG, RETURN, and ERR traps is now dependent only
 on the settings of the `functrace' and `errtrace' shell options, rather
 than whether or not the shell is in debugging mode.
 
@@ -3688,7 +3688,7 @@ and the previous version, bash-3.1-alpha1.
 a.  Added some system-specific signal names.
 
 b.  Fixed a typo in the ulimit builtin to make `x' the right option to
-maniuplate the limit on file locks.
+manipulate the limit on file locks.
 
 c.  Fixed a problem with using += to append to index 0 of an array variable
 when not using subscript syntax.
@@ -5006,7 +5006,7 @@ c.  Fixed a problem which caused the display to be messed 
up when the last
 line of a multi-line prompt (possibly containing invisible characters)
 was longer than the screen width.
 
-d.  Fixed a problem with the vi-mode `r' command that ocurred on systems with
+d.  Fixed a problem with the vi-mode `r' command that occurred on systems with
 support for multibyte characters when running in a locale without any
 multibyte characters.
 
@@ -5661,7 

Bug#878586: avahi: [PATCH] avahi-daemon-check-dns.sh: Avoid some stat and which calls

2017-10-14 Thread Ville Skyttä
Package: avahi-daemon
Version: 0.6.32-1ubuntu1
Severity: minor
File: avahi

Dear Maintainer,

Patch with some which and stat call avoidances is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-16-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages avahi-daemon depends on:
ii  adduser  3.113+nmu3ubuntu5
ii  bind9-host [host]1:9.10.3.dfsg.P4-12.6ubuntu1
ii  dbus 1.10.22-1ubuntu1
ii  init-system-helpers  1.49ubuntu1
ii  libavahi-common3 0.6.32-1ubuntu1
ii  libavahi-core7   0.6.32-1ubuntu1
ii  libc62.26-0ubuntu2
ii  libcap2  1:2.25-1.1
ii  libdaemon0   0.14-6
ii  libdbus-1-3  1.10.22-1ubuntu1
ii  libexpat12.2.3-1
ii  lsb-base 9.20160110ubuntu5

Versions of packages avahi-daemon recommends:
ii  libnss-mdns  0.10-8ubuntu1

Versions of packages avahi-daemon suggests:
ii  avahi-autoipd  0.6.32-1ubuntu1

-- no debconf information


0001-avahi-daemon-check-dns.sh-Avoid-some-stat-and-which-.patch.gz
Description: application/gzip


[Pkg-utopia-maintainers] Bug#878586: avahi: [PATCH] avahi-daemon-check-dns.sh: Avoid some stat and which calls

2017-10-14 Thread Ville Skyttä
Package: avahi-daemon
Version: 0.6.32-1ubuntu1
Severity: minor
File: avahi

Dear Maintainer,

Patch with some which and stat call avoidances is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-16-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages avahi-daemon depends on:
ii  adduser  3.113+nmu3ubuntu5
ii  bind9-host [host]1:9.10.3.dfsg.P4-12.6ubuntu1
ii  dbus 1.10.22-1ubuntu1
ii  init-system-helpers  1.49ubuntu1
ii  libavahi-common3 0.6.32-1ubuntu1
ii  libavahi-core7   0.6.32-1ubuntu1
ii  libc62.26-0ubuntu2
ii  libcap2  1:2.25-1.1
ii  libdaemon0   0.14-6
ii  libdbus-1-3  1.10.22-1ubuntu1
ii  libexpat12.2.3-1
ii  lsb-base 9.20160110ubuntu5

Versions of packages avahi-daemon recommends:
ii  libnss-mdns  0.10-8ubuntu1

Versions of packages avahi-daemon suggests:
ii  avahi-autoipd  0.6.32-1ubuntu1

-- no debconf information


0001-avahi-daemon-check-dns.sh-Avoid-some-stat-and-which-.patch.gz
Description: application/gzip
___
Pkg-utopia-maintainers mailing list
Pkg-utopia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-utopia-maintainers

Bug#878583: bash: [PATCH] bashrc: Avoid a stat call when /usr/lib/command-not-found is available

2017-10-14 Thread Ville Skyttä
Package: bash
Version: 4.4-5ubuntu1
Severity: minor

Dear Maintainer,

diff --git a/etc.bash.bashrc b/etc.bash.bashrc
index 54687b1..c01e89a 100644
--- a/etc.bash.bashrc
+++ b/etc.bash.bashrc
@@ -41 +41 @@ PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
-if [ -x /usr/lib/command-not-found -o -x 
/usr/share/command-not-found/command-not-found ]; then
+if [[ -x /usr/lib/command-not-found || -x 
/usr/share/command-not-found/command-not-found ]]; then


-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-16-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages bash depends on:
ii  base-files   9.6ubuntu101
ii  dash 0.5.8-2.3ubuntu1
ii  debianutils  4.8.2
ii  libc62.26-0ubuntu2
ii  libtinfo56.0+20160625-1ubuntu1

Versions of packages bash recommends:
pn  bash-completion  

Versions of packages bash suggests:
pn  bash-doc  

-- no debconf information



[PATCH] Spelling fixes

2017-10-14 Thread Ville Skyttä
Signed-off-by: Ville Skyttä <ville.sky...@iki.fi>
---
 cache.c|  2 +-
 cache.h|  2 +-
 filters/syntax-highlighting.sh |  2 +-
 tests/t0109-gitconfig.sh   | 10 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/cache.c b/cache.c
index 2ccdc4e..0901e6e 100644
--- a/cache.c
+++ b/cache.c
@@ -318,7 +318,7 @@ static int process_slot(struct cache_slot *slot)
/* If the cache slot does not exist (or its key doesn't match the
 * current key), lets try to create a new cache slot for this
 * request. If this fails (for whatever reason), lets just generate
-* the content without caching it and fool the caller to belive
+* the content without caching it and fool the caller to believe
 * everything worked out (but print a warning on stdout).
 */
 
diff --git a/cache.h b/cache.h
index 9392836..470da4f 100644
--- a/cache.h
+++ b/cache.h
@@ -19,7 +19,7 @@ typedef void (*cache_fill_fn)(void);
  *   fn  content generator function for this key
  *
  * Return value
- *   0 indicates success, everyting else is an error
+ *   0 indicates success, everything else is an error
  */
 extern int cache_process(int size, const char *path, const char *key, int ttl,
 cache_fill_fn fn);
diff --git a/filters/syntax-highlighting.sh b/filters/syntax-highlighting.sh
index 4fa7928..840bc34 100755
--- a/filters/syntax-highlighting.sh
+++ b/filters/syntax-highlighting.sh
@@ -1,6 +1,6 @@
 #!/bin/sh
 # This script can be used to implement syntax highlighting in the cgit
-# tree-view by refering to this file with the source-filter or repo.source-
+# tree-view by referring to this file with the source-filter or repo.source-
 # filter options in cgitrc.
 #
 # This script requires a shell supporting the ${var##pattern} syntax.
diff --git a/tests/t0109-gitconfig.sh b/tests/t0109-gitconfig.sh
index 5a84258..3ba6684 100755
--- a/tests/t0109-gitconfig.sh
+++ b/tests/t0109-gitconfig.sh
@@ -10,16 +10,16 @@ test -n "$(which strace 2>/dev/null)" || {
 }
 
 test_no_home_access () {
-   non_existant_path="/path/to/some/place/that/does/not/possibly/exist"
-   while test -d "$non_existant_path"; do
-   non_existant_path="$non_existant_path/$(date +%N)"
+   non_existent_path="/path/to/some/place/that/does/not/possibly/exist"
+   while test -d "$non_existent_path"; do
+   non_existent_path="$non_existent_path/$(date +%N)"
done &&
strace \
-   -E HOME="$non_existant_path" \
+   -E HOME="$non_existent_path" \
-E CGIT_CONFIG="$PWD/cgitrc" \
-E QUERY_STRING="url=$1" \
-e access -f -o strace.out cgit &&
-   test_must_fail grep "$non_existant_path" strace.out
+   test_must_fail grep "$non_existent_path" strace.out
 }
 
 test_no_home_access_success() {
-- 
2.14.1

___
CGit mailing list
CGit@lists.zx2c4.com
https://lists.zx2c4.com/mailman/listinfo/cgit


[PATCH] Use type='search' for the search box

2017-10-14 Thread Ville Skyttä
Signed-off-by: Ville Skyttä <ville.sky...@iki.fi>
---
 ui-shared.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui-shared.c b/ui-shared.c
index 07c78a5..9d8f66b 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -1027,7 +1027,7 @@ void cgit_print_pageheader(void)
html_option("committer", "committer", ctx.qry.grep);
html_option("range", "range", ctx.qry.grep);
html("\n");
-   html("\n");
html("\n");
@@ -1042,7 +1042,7 @@ void cgit_print_pageheader(void)
html("\n");
-   html("\n");
html("\n");
-- 
2.14.1

___
CGit mailing list
CGit@lists.zx2c4.com
https://lists.zx2c4.com/mailman/listinfo/cgit


[PATCH] filter: pipe_fh should be local

2017-10-14 Thread Ville Skyttä
From: "Jason A. Donenfeld" 

Signed-off-by: Jason A. Donenfeld 
---
 cgit.h   |  1 -
 filter.c | 13 +++--
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/cgit.h b/cgit.h
index 0b88dcd..005ae63 100644
--- a/cgit.h
+++ b/cgit.h
@@ -71,7 +71,6 @@ struct cgit_exec_filter {
char *cmd;
char **argv;
int old_stdout;
-   int pipe_fh[2];
int pid;
 };
 
diff --git a/filter.c b/filter.c
index 949c931..70f5b74 100644
--- a/filter.c
+++ b/filter.c
@@ -42,6 +42,7 @@ void cgit_cleanup_filters(void)
 static int open_exec_filter(struct cgit_filter *base, va_list ap)
 {
struct cgit_exec_filter *filter = (struct cgit_exec_filter *)base;
+   int pipe_fh[2];
int i;
 
for (i = 0; i < filter->base.argument_count; i++)
@@ -49,19 +50,19 @@ static int open_exec_filter(struct cgit_filter *base, 
va_list ap)
 
filter->old_stdout = chk_positive(dup(STDOUT_FILENO),
"Unable to duplicate STDOUT");
-   chk_zero(pipe(filter->pipe_fh), "Unable to create pipe to subprocess");
+   chk_zero(pipe(pipe_fh), "Unable to create pipe to subprocess");
filter->pid = chk_non_negative(fork(), "Unable to create subprocess");
if (filter->pid == 0) {
-   close(filter->pipe_fh[1]);
-   chk_non_negative(dup2(filter->pipe_fh[0], STDIN_FILENO),
+   close(pipe_fh[1]);
+   chk_non_negative(dup2(pipe_fh[0], STDIN_FILENO),
"Unable to use pipe as STDIN");
execvp(filter->cmd, filter->argv);
die_errno("Unable to exec subprocess %s", filter->cmd);
}
-   close(filter->pipe_fh[0]);
-   chk_non_negative(dup2(filter->pipe_fh[1], STDOUT_FILENO),
+   close(pipe_fh[0]);
+   chk_non_negative(dup2(pipe_fh[1], STDOUT_FILENO),
"Unable to use pipe as STDOUT");
-   close(filter->pipe_fh[1]);
+   close(pipe_fh[1]);
return 0;
 }
 
-- 
2.14.1

___
CGit mailing list
CGit@lists.zx2c4.com
https://lists.zx2c4.com/mailman/listinfo/cgit


Bug#878580: bash: [PATCH] Spelling fix

2017-10-14 Thread Ville Skyttä
Package: bash
Version: 4.4-5ubuntu1
Severity: minor

Dear Maintainer,

diff --git a/README.abs-guide b/README.abs-guide
index 7a69558..0d541fe 100644
--- a/README.abs-guide
+++ b/README.abs-guide
@@ -20 +20 @@ the only way to really learn scripting is to write scripts.
-The guide is availabe at http://tldp.org/LDP/abs/html/
+The guide is available at http://tldp.org/LDP/abs/html/


-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-16-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages bash depends on:
ii  base-files   9.6ubuntu101
ii  dash 0.5.8-2.3ubuntu1
ii  debianutils  4.8.2
ii  libc62.26-0ubuntu2
ii  libtinfo56.0+20160625-1ubuntu1

Versions of packages bash recommends:
pn  bash-completion  

Versions of packages bash suggests:
pn  bash-doc  

-- no debconf information



Bug#878538: reportbug: [PATCH] Preserve given order of attachments

2017-10-14 Thread Ville Skyttä
Package: reportbug
Version: 7.1.7ubuntu1
Severity: minor

Dear Maintainer,

Patch implementing preservation of given order of attachments to
reportbug is attached.

-- Package-specific info:
** Environment settings:
EDITOR="emacs"
PAGER="less"
DEBEMAIL="ville.sky...@iki.fi"
DEBFULLNAME="Ville Skytt\udcc3\udca4"
INTERFACE="text"

** /home/scop/.reportbugrc:
reportbug_version "7.1.7ubuntu1"
mode novice
ui text
smtphost "smtp.gmail.com:587"
smtpuser "vsky...@gmail.com"
smtppasswd 
smtptls
no-cc

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages reportbug depends on:
ii  apt1.5
ii  python33.6.3-0ubuntu2
ii  python3-reportbug  7.1.7ubuntu1

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail  
pn  debconf-utils   
pn  debsums 
pn  dlocate 
ii  emacs25-bin-common  25.2+1-6
ii  file1:5.32-1
ii  gir1.2-gtk-3.0  3.22.21-0ubuntu1
ii  gir1.2-vte-2.91 0.48.4-0ubuntu1
ii  gnupg   2.1.15-1ubuntu8
pn  postfix | exim4 | mail-transport-agent  
ii  python3-gi  3.24.1-2build1
ii  python3-gi-cairo3.24.1-2build1
pn  python3-gtkspellcheck   
pn  python3-urwid   
ii  xdg-utils   1.1.1-1ubuntu2

Versions of packages python3-reportbug depends on:
ii  apt1.5
ii  file   1:5.32-1
ii  python33.6.3-0ubuntu2
ii  python3-debian 0.1.30
ii  python3-debianbts  2.6.1
ii  python3-requests   2.18.1-1

python3-reportbug suggests no packages.

-- no debconf information


0001-Preserve-given-order-of-attachments.patch.gz
Description: application/gzip


[Reportbug-maint] Bug#878538: reportbug: [PATCH] Preserve given order of attachments

2017-10-14 Thread Ville Skyttä
Package: reportbug
Version: 7.1.7ubuntu1
Severity: minor

Dear Maintainer,

Patch implementing preservation of given order of attachments to
reportbug is attached.

-- Package-specific info:
** Environment settings:
EDITOR="emacs"
PAGER="less"
DEBEMAIL="ville.sky...@iki.fi"
DEBFULLNAME="Ville Skytt\udcc3\udca4"
INTERFACE="text"

** /home/scop/.reportbugrc:
reportbug_version "7.1.7ubuntu1"
mode novice
ui text
smtphost "smtp.gmail.com:587"
smtpuser "vsky...@gmail.com"
smtppasswd 
smtptls
no-cc

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages reportbug depends on:
ii  apt1.5
ii  python33.6.3-0ubuntu2
ii  python3-reportbug  7.1.7ubuntu1

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail  
pn  debconf-utils   
pn  debsums 
pn  dlocate 
ii  emacs25-bin-common  25.2+1-6
ii  file1:5.32-1
ii  gir1.2-gtk-3.0  3.22.21-0ubuntu1
ii  gir1.2-vte-2.91 0.48.4-0ubuntu1
ii  gnupg   2.1.15-1ubuntu8
pn  postfix | exim4 | mail-transport-agent  
ii  python3-gi  3.24.1-2build1
ii  python3-gi-cairo3.24.1-2build1
pn  python3-gtkspellcheck   
pn  python3-urwid   
ii  xdg-utils   1.1.1-1ubuntu2

Versions of packages python3-reportbug depends on:
ii  apt1.5
ii  file   1:5.32-1
ii  python33.6.3-0ubuntu2
ii  python3-debian 0.1.30
ii  python3-debianbts  2.6.1
ii  python3-requests   2.18.1-1

python3-reportbug suggests no packages.

-- no debconf information


0001-Preserve-given-order-of-attachments.patch.gz
Description: application/gzip
___
Reportbug-maint mailing list
Reportbug-maint@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reportbug-maint

Bug#878437: Acknowledgement (reportbug: Python 3.6 invalid escape sequence deprecation fixes)

2017-10-14 Thread Ville Skyttä
Here's an updated patch, including same fixes to bin/* too.


0001-Python-3.6-invalid-escape-sequence-deprecation-fixes.patch.gz
Description: GNU Zip compressed data


[Reportbug-maint] Bug#878437: Acknowledgement (reportbug: Python 3.6 invalid escape sequence deprecation fixes)

2017-10-14 Thread Ville Skyttä
Here's an updated patch, including same fixes to bin/* too.


0001-Python-3.6-invalid-escape-sequence-deprecation-fixes.patch.gz
Description: GNU Zip compressed data
___
Reportbug-maint mailing list
Reportbug-maint@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reportbug-maint

Bug#878523: debian-policy: [PATCH] Spelling fixes

2017-10-14 Thread Ville Skyttä
Package: debian-policy
Version: 4.1.0.0
Severity: minor

Dear Maintainer,

Patch with trivial spelling fixes is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages debian-policy depends on:
ii  libjs-sphinxdoc  1.5.6-2

debian-policy recommends no packages.

Versions of packages debian-policy suggests:
ii  doc-base  0.10.7

-- no debconf information


0001-Spelling-fixes.patch.gz
Description: application/gzip


Bug#878522: lintian: [PATCH] Skip all POD synopsis tests if Test::Pod is not available

2017-10-14 Thread Ville Skyttä
Package: lintian
Version: 2.5.55
Severity: minor

Dear Maintainer,

Patch for skipping all POD synopsis tests when Test::Pod is not
available is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-4ubuntu1
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1build1
ii  dpkg  1.18.24ubuntu1
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4ubuntu1
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.34-1
ii  libclone-perl 0.38-2build2
ii  libdpkg-perl  1.18.24ubuntu1
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1build3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8ubuntu1
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-1
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2build1
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8ubuntu1
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1build3

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.18.24ubuntu1
ii  libhtml-parser-perl3.72-3build1
ii  libtext-template-perl  1.46-1

-- no debconf information


0001-t-scripts-pod-synopsis.t-Skip-all-if-Test-Pod-is-not.patch.gz
Description: application/gzip


Bug#878522: lintian: [PATCH] Skip all POD synopsis tests if Test::Pod is not available

2017-10-14 Thread Ville Skyttä
Package: lintian
Version: 2.5.55
Severity: minor

Dear Maintainer,

Patch for skipping all POD synopsis tests when Test::Pod is not
available is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-4ubuntu1
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1build1
ii  dpkg  1.18.24ubuntu1
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4ubuntu1
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.34-1
ii  libclone-perl 0.38-2build2
ii  libdpkg-perl  1.18.24ubuntu1
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1build3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8ubuntu1
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-1
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2build1
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8ubuntu1
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1build3

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.18.24ubuntu1
ii  libhtml-parser-perl3.72-3build1
ii  libtext-template-perl  1.46-1

-- no debconf information


0001-t-scripts-pod-synopsis.t-Skip-all-if-Test-Pod-is-not.patch.gz
Description: application/gzip


Bug#878521: lintian: [PATCH] Various link fixes and updates

2017-10-14 Thread Ville Skyttä
Package: lintian
Version: 2.5.55
Severity: minor

Dear Maintainer,

Patch containing various link fixes and updates is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-4ubuntu1
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1build1
ii  dpkg  1.18.24ubuntu1
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4ubuntu1
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.34-1
ii  libclone-perl 0.38-2build2
ii  libdpkg-perl  1.18.24ubuntu1
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1build3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8ubuntu1
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-1
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2build1
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8ubuntu1
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1build3

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.18.24ubuntu1
ii  libhtml-parser-perl3.72-3build1
ii  libtext-template-perl  1.46-1

-- no debconf information


0001-Various-link-fixes-and-updates.patch.gz
Description: application/gzip


Bug#878521: lintian: [PATCH] Various link fixes and updates

2017-10-14 Thread Ville Skyttä
Package: lintian
Version: 2.5.55
Severity: minor

Dear Maintainer,

Patch containing various link fixes and updates is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-4ubuntu1
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1build1
ii  dpkg  1.18.24ubuntu1
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4ubuntu1
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.34-1
ii  libclone-perl 0.38-2build2
ii  libdpkg-perl  1.18.24ubuntu1
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1build3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8ubuntu1
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-1
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2build1
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8ubuntu1
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1build3

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.18.24ubuntu1
ii  libhtml-parser-perl3.72-3build1
ii  libtext-template-perl  1.46-1

-- no debconf information


0001-Various-link-fixes-and-updates.patch.gz
Description: application/gzip


Bug#878517: lintian: [PATCH] Manual reference fixups

2017-10-14 Thread Ville Skyttä
Package: lintian
Version: 2.5.55
Severity: minor

Dear Maintainer,

Attached is a series of 'git am'able fixes related to manual
references. After this, they should be correct and up to date again.

(Aside, the previous patches I sent got applied, thanks for that, but
somehow also with charset issues related to my surname in git
logs. Not a biggie, but perhaps it'll work this time; I'm gzipping the
attachments.)

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-4ubuntu1
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1build1
ii  dpkg  1.18.24ubuntu1
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4ubuntu1
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.34-1
ii  libclone-perl 0.38-2build2
ii  libdpkg-perl  1.18.24ubuntu1
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1build3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8ubuntu1
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-1
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2build1
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8ubuntu1
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1build3

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.18.24ubuntu1
ii  libhtml-parser-perl3.72-3build1
ii  libtext-template-perl  1.46-1

-- no debconf information


0002-private-refresh-manual-refs-Open-std-streams-in-utf-.patch.gz
Description: application/gzip


0004-private-refresh-manual-refs-Fix-parsing-of-current-P.patch.gz
Description: application/gzip


0006-Refresh-manual-references-and-pointers-to-them.patch.gz
Description: application/gzip


0003-private-refresh-manual-refs-Exclude-trailing-vX.Y.-f.patch.gz
Description: application/gzip


0001-private-refresh-manual-refs-Parse-menu-perl-and-pyth.patch.gz
Description: application/gzip


0005-private-refresh-manual-refs-Don-t-trump-earlier-refs.patch.gz
Description: application/gzip


Bug#878517: lintian: [PATCH] Manual reference fixups

2017-10-14 Thread Ville Skyttä
Package: lintian
Version: 2.5.55
Severity: minor

Dear Maintainer,

Attached is a series of 'git am'able fixes related to manual
references. After this, they should be correct and up to date again.

(Aside, the previous patches I sent got applied, thanks for that, but
somehow also with charset issues related to my surname in git
logs. Not a biggie, but perhaps it'll work this time; I'm gzipping the
attachments.)

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-4ubuntu1
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1build1
ii  dpkg  1.18.24ubuntu1
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4ubuntu1
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.34-1
ii  libclone-perl 0.38-2build2
ii  libdpkg-perl  1.18.24ubuntu1
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1build3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8ubuntu1
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-1
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2build1
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8ubuntu1
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1build3

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.18.24ubuntu1
ii  libhtml-parser-perl3.72-3build1
ii  libtext-template-perl  1.46-1

-- no debconf information


0002-private-refresh-manual-refs-Open-std-streams-in-utf-.patch.gz
Description: application/gzip


0004-private-refresh-manual-refs-Fix-parsing-of-current-P.patch.gz
Description: application/gzip


0006-Refresh-manual-references-and-pointers-to-them.patch.gz
Description: application/gzip


0003-private-refresh-manual-refs-Exclude-trailing-vX.Y.-f.patch.gz
Description: application/gzip


0001-private-refresh-manual-refs-Parse-menu-perl-and-pyth.patch.gz
Description: application/gzip


0005-private-refresh-manual-refs-Don-t-trump-earlier-refs.patch.gz
Description: application/gzip


Bug#878449: lintian: [PATCH] Update debconf reference mapping

2017-10-13 Thread Ville Skyttä
Thanks. However I see the data/output/manual-references part of the
latter patch was not applied, was it omitted on purpose?



Bug#878449: lintian: [PATCH] Update debconf reference mapping

2017-10-13 Thread Ville Skyttä
Thanks. However I see the data/output/manual-references part of the
latter patch was not applied, was it omitted on purpose?



Bug#878449: Info received (Bug#878449: Acknowledgement (lintian: [PATCH] Update debconf reference mapping))

2017-10-13 Thread Ville Skyttä
...and here's the corresponding spec ref update.
From e1caf5c816a212f3e9df3e4a5e9243837009e54c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 22:25:29 +0300
Subject: [PATCH 2/2] Update debconf-spec refs

---
 checks/debconf.desc   |  8 
 data/output/manual-references | 16 +---
 2 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/checks/debconf.desc b/checks/debconf.desc
index d5d3ac19a..336e18efa 100644
--- a/checks/debconf.desc
+++ b/checks/debconf.desc
@@ -24,7 +24,7 @@ Severity: important
 Certainty: certain
 Info: Valid fields are currently "Template:", "Type:", "Choices:", "Default:",
  and "Description:".
-Ref: debconf-spec aen45, debconf-devel(7)
+Ref: debconf-spec 3.1, debconf-devel(7)
 
 Tag: no-template-name
 Severity: important
@@ -75,20 +75,20 @@ Severity: important
 Certainty: certain
 Info: Templates using the "select" or "multiselect" data types must provide
  a "Choices:" field listing the possible values of the template.
-Ref: debconf-spec aen45, debconf-devel(7)
+Ref: debconf-spec 3.1, debconf-devel(7)
 
 Tag: boolean-template-has-bogus-default
 Severity: important
 Certainty: certain
 Info: The "boolean" type in a debconf template, can have only two values: true
  and false.  The default has been set to something different.
-Ref: debconf-spec aen45, debconf-devel(7)
+Ref: debconf-spec 3.1, debconf-devel(7)
 
 Tag: no-template-description
 Severity: important
 Certainty: certain
 Info: The templates file contains a template without a "Description:" field.
-Ref: debconf-spec aen45, debconf-devel(7)
+Ref: debconf-spec 3, debconf-devel(7)
 
 Tag: duplicate-long-description-in-template
 Severity: minor
diff --git a/data/output/manual-references b/data/output/manual-references
index c40a22194..886636fa2 100644
--- a/data/output/manual-references
+++ b/data/output/manual-references
@@ -7,15 +7,17 @@
 # If  is empty, that line specifies the title and URL for the whole
 # manual.  If  is empty, that manual is not available on the web.
 #
-# Last updated: 2016-08-22
+# Last updated: 2017-10-13
 
 debconf-specConfiguration management::https://www.debian.org/doc/packaging-manuals/debconf_specification.html
-debconf-spec::aen27::Introduction::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN27
-debconf-spec::aen30::Configuration Data::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN30
-debconf-spec::aen45::Templates::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN45
-debconf-spec::aen101::Configuration frontends::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN101
-debconf-spec::aen106::Communication with the frontend::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN106
-debconf-spec::aen283::Debian install-time configuration::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN283
+debconf-spec::1::Introduction::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.2
+debconf-spec::2::Configuration Data::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.3
+debconf-spec::2.1::The configuration space::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.3.2
+debconf-spec::3::Templates::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.4
+debconf-spec::3.1::Template information::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.4.4
+debconf-spec::4::Configuration frontends::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.5
+debconf-spec::5::Communication with the frontend::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.6
+debconf-spec::6::Debian install-time configuration::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.7
 devrefDebian Developer's Reference::https://www.debian.org/doc/developers-reference/
 devref::1::Scope of This Document::https://www.debian.org/doc/developers-reference/ch01.html
 devref::2::Applying to Become a Maintainer::https://www.debian.org/doc/developers-reference/ch02.html
-- 
2.14.1



Bug#878449: Info received (Bug#878449: Acknowledgement (lintian: [PATCH] Update debconf reference mapping))

2017-10-13 Thread Ville Skyttä
...and here's the corresponding spec ref update.
From e1caf5c816a212f3e9df3e4a5e9243837009e54c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 22:25:29 +0300
Subject: [PATCH 2/2] Update debconf-spec refs

---
 checks/debconf.desc   |  8 
 data/output/manual-references | 16 +---
 2 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/checks/debconf.desc b/checks/debconf.desc
index d5d3ac19a..336e18efa 100644
--- a/checks/debconf.desc
+++ b/checks/debconf.desc
@@ -24,7 +24,7 @@ Severity: important
 Certainty: certain
 Info: Valid fields are currently "Template:", "Type:", "Choices:", "Default:",
  and "Description:".
-Ref: debconf-spec aen45, debconf-devel(7)
+Ref: debconf-spec 3.1, debconf-devel(7)
 
 Tag: no-template-name
 Severity: important
@@ -75,20 +75,20 @@ Severity: important
 Certainty: certain
 Info: Templates using the "select" or "multiselect" data types must provide
  a "Choices:" field listing the possible values of the template.
-Ref: debconf-spec aen45, debconf-devel(7)
+Ref: debconf-spec 3.1, debconf-devel(7)
 
 Tag: boolean-template-has-bogus-default
 Severity: important
 Certainty: certain
 Info: The "boolean" type in a debconf template, can have only two values: true
  and false.  The default has been set to something different.
-Ref: debconf-spec aen45, debconf-devel(7)
+Ref: debconf-spec 3.1, debconf-devel(7)
 
 Tag: no-template-description
 Severity: important
 Certainty: certain
 Info: The templates file contains a template without a "Description:" field.
-Ref: debconf-spec aen45, debconf-devel(7)
+Ref: debconf-spec 3, debconf-devel(7)
 
 Tag: duplicate-long-description-in-template
 Severity: minor
diff --git a/data/output/manual-references b/data/output/manual-references
index c40a22194..886636fa2 100644
--- a/data/output/manual-references
+++ b/data/output/manual-references
@@ -7,15 +7,17 @@
 # If  is empty, that line specifies the title and URL for the whole
 # manual.  If  is empty, that manual is not available on the web.
 #
-# Last updated: 2016-08-22
+# Last updated: 2017-10-13
 
 debconf-specConfiguration management::https://www.debian.org/doc/packaging-manuals/debconf_specification.html
-debconf-spec::aen27::Introduction::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN27
-debconf-spec::aen30::Configuration Data::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN30
-debconf-spec::aen45::Templates::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN45
-debconf-spec::aen101::Configuration frontends::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN101
-debconf-spec::aen106::Communication with the frontend::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN106
-debconf-spec::aen283::Debian install-time configuration::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#AEN283
+debconf-spec::1::Introduction::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.2
+debconf-spec::2::Configuration Data::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.3
+debconf-spec::2.1::The configuration space::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.3.2
+debconf-spec::3::Templates::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.4
+debconf-spec::3.1::Template information::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.4.4
+debconf-spec::4::Configuration frontends::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.5
+debconf-spec::5::Communication with the frontend::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.6
+debconf-spec::6::Debian install-time configuration::https://www.debian.org/doc/packaging-manuals/debconf_specification.html#id-1.7
 devrefDebian Developer's Reference::https://www.debian.org/doc/developers-reference/
 devref::1::Scope of This Document::https://www.debian.org/doc/developers-reference/ch01.html
 devref::2::Applying to Become a Maintainer::https://www.debian.org/doc/developers-reference/ch02.html
-- 
2.14.1



Bug#878449: Acknowledgement (lintian: [PATCH] Update debconf reference mapping)

2017-10-13 Thread Ville Skyttä
On a second thought, here's a simpler fix that may help with parsing
some others as well.
From c758e4d02993deb2205da744cdf0e9f4e6ad4a46 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 22:08:02 +0300
Subject: [PATCH] private/refresh-manual-refs: Update debconf reference
 mapping, strip whitespace with $index_re

The usual $index_re now applies, tweaked to strip surrounding whitespace.
---
 private/refresh-manual-refs | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/private/refresh-manual-refs b/private/refresh-manual-refs
index 906d31084..3960e3e66 100755
--- a/private/refresh-manual-refs
+++ b/private/refresh-manual-refs
@@ -62,7 +62,7 @@ my $title_re = qr/(.+?)<\/title\s?>/i;
 my $link_re
   = qr//;
 my $index_re
-  = qr/([A-Z]|[A-Z]?[\d\.]+?)\.?\s+([\w\s[:punct:]]+?)<\/a>/;
+  = qr/\s*([A-Z]|[A-Z]?[\d\.]+?)\.?\s+([\w\s[:punct:]]+?)\s*<\/a>/;
 my $fields = [['url'], ['section'], ['title']];
 my $dbk_index_re
   = qr/([\d.]+?)\.\s+([\w\s[:punct:]]+?)<\/a\s*>/i;
@@ -132,8 +132,7 @@ my %manuals = (
 join(q{/},
 'https://www.debian.org',
 'doc/packaging-manuals/debconf_specification.html'),
-qr/([\w\s[:punct:]]+?)<\/a>/,
-[['section', 'url'], ['title']]
+$index_re, $fields
 ],
 'fhs' => [
 '/usr/share/doc/debian-policy/fhs/fhs-2.3.html',
-- 
2.14.1



Bug#878449: Acknowledgement (lintian: [PATCH] Update debconf reference mapping)

2017-10-13 Thread Ville Skyttä
On a second thought, here's a simpler fix that may help with parsing
some others as well.
From c758e4d02993deb2205da744cdf0e9f4e6ad4a46 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 22:08:02 +0300
Subject: [PATCH] private/refresh-manual-refs: Update debconf reference
 mapping, strip whitespace with $index_re

The usual $index_re now applies, tweaked to strip surrounding whitespace.
---
 private/refresh-manual-refs | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/private/refresh-manual-refs b/private/refresh-manual-refs
index 906d31084..3960e3e66 100755
--- a/private/refresh-manual-refs
+++ b/private/refresh-manual-refs
@@ -62,7 +62,7 @@ my $title_re = qr/(.+?)<\/title\s?>/i;
 my $link_re
   = qr//;
 my $index_re
-  = qr/([A-Z]|[A-Z]?[\d\.]+?)\.?\s+([\w\s[:punct:]]+?)<\/a>/;
+  = qr/\s*([A-Z]|[A-Z]?[\d\.]+?)\.?\s+([\w\s[:punct:]]+?)\s*<\/a>/;
 my $fields = [['url'], ['section'], ['title']];
 my $dbk_index_re
   = qr/([\d.]+?)\.\s+([\w\s[:punct:]]+?)<\/a\s*>/i;
@@ -132,8 +132,7 @@ my %manuals = (
 join(q{/},
 'https://www.debian.org',
 'doc/packaging-manuals/debconf_specification.html'),
-qr/([\w\s[:punct:]]+?)<\/a>/,
-[['section', 'url'], ['title']]
+$index_re, $fields
 ],
 'fhs' => [
 '/usr/share/doc/debian-policy/fhs/fhs-2.3.html',
-- 
2.14.1



Bug#878449: lintian: [PATCH] Update debconf reference mapping

2017-10-13 Thread Ville Skyttä
Package: lintian
Version: 2.5.53ubuntu2
Severity: normal

Dear Maintainer,

'git am'able fix updating debconf reference mapping is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-4ubuntu1
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1build1
ii  dpkg  1.18.24ubuntu1
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4ubuntu1
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.34-1
ii  libclone-perl 0.38-2build2
ii  libdpkg-perl  1.18.24ubuntu1
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1build3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8ubuntu1
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-1
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2build1
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8ubuntu1
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1build3

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.18.24ubuntu1
ii  libhtml-parser-perl3.72-3build1
pn  libtext-template-perl  

-- no debconf information
>From b6ad595bc7ec8c87f3f2d06276ca590cda41c539 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 22:08:02 +0300
Subject: [PATCH] private/refresh-manual-refs: Update debconf reference mapping

References have section numbers and possible surrounding whitespace now.
---
 private/refresh-manual-refs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/private/refresh-manual-refs b/private/refresh-manual-refs
index 906d31084..13ed70772 100755
--- a/private/refresh-manual-refs
+++ b/private/refresh-manual-refs
@@ -132,8 +132,8 @@ my %manuals = (
 join(q{/},
 'https://www.debian.org',
 'doc/packaging-manuals/debconf_specification.html'),
-qr/([\w\s[:punct:]]+?)<\/a>/,
-[['section', 'url'], ['title']]
+qr/\s*([\d\.]+?)\.\s+([\w\s[:punct:]]+?)\s*<\/a>/,
+[['url'], ['section'], ['title']]
 ],
 'fhs' => [
 '/usr/share/doc/debian-policy/fhs/fhs-2.3.html',
-- 
2.14.1



Bug#878449: lintian: [PATCH] Update debconf reference mapping

2017-10-13 Thread Ville Skyttä
Package: lintian
Version: 2.5.53ubuntu2
Severity: normal

Dear Maintainer,

'git am'able fix updating debconf reference mapping is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-4ubuntu1
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1build1
ii  dpkg  1.18.24ubuntu1
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4ubuntu1
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.34-1
ii  libclone-perl 0.38-2build2
ii  libdpkg-perl  1.18.24ubuntu1
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1build3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8ubuntu1
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-1
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2build1
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8ubuntu1
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1build3

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.18.24ubuntu1
ii  libhtml-parser-perl3.72-3build1
pn  libtext-template-perl  

-- no debconf information
>From b6ad595bc7ec8c87f3f2d06276ca590cda41c539 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 22:08:02 +0300
Subject: [PATCH] private/refresh-manual-refs: Update debconf reference mapping

References have section numbers and possible surrounding whitespace now.
---
 private/refresh-manual-refs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/private/refresh-manual-refs b/private/refresh-manual-refs
index 906d31084..13ed70772 100755
--- a/private/refresh-manual-refs
+++ b/private/refresh-manual-refs
@@ -132,8 +132,8 @@ my %manuals = (
 join(q{/},
 'https://www.debian.org',
 'doc/packaging-manuals/debconf_specification.html'),
-qr/([\w\s[:punct:]]+?)<\/a>/,
-[['section', 'url'], ['title']]
+qr/\s*([\d\.]+?)\.\s+([\w\s[:punct:]]+?)\s*<\/a>/,
+[['url'], ['section'], ['title']]
 ],
 'fhs' => [
 '/usr/share/doc/debian-policy/fhs/fhs-2.3.html',
-- 
2.14.1



Bug#878446: lintian: [PATCH] Spelling fixes

2017-10-13 Thread Ville Skyttä
Package: lintian
Version: 2.5.53ubuntu2
Severity: minor

Dear Maintainer,

'git am'able patch containing spelling fixes is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-4ubuntu1
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1build1
ii  dpkg  1.18.24ubuntu1
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4ubuntu1
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.34-1
ii  libclone-perl 0.38-2build2
ii  libdpkg-perl  1.18.24ubuntu1
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1build3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8ubuntu1
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-1
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2build1
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8ubuntu1
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1build3

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.18.24ubuntu1
ii  libhtml-parser-perl3.72-3build1
pn  libtext-template-perl  

-- no debconf information
>From 86dc452a32ea7e4df8d95f08b01a67efd7c13c55 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 21:34:39 +0300
Subject: [PATCH] Spelling fixes

---
 checks/conffiles.pm | 2 +-
 checks/debconf.desc | 2 +-
 checks/files.desc   | 6 +++---
 checks/scripts.desc | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/checks/conffiles.pm b/checks/conffiles.pm
index 90db31547..180a11cd3 100644
--- a/checks/conffiles.pm
+++ b/checks/conffiles.pm
@@ -83,7 +83,7 @@ sub run {
 }
 next unless $file =~ m{\A etc/ }xsm and $file->is_file;
 
-   # If there is a /etc/foo, it must be a conffile (with a few exceptions).
+   # If there is an /etc/foo, it must be a conffile (with a few 
exceptions).
 if (not exists($conffiles{$file})
 and $file !~ m{ /README $}xsm
 and $file ne 'etc/init.d/skeleton'
diff --git a/checks/debconf.desc b/checks/debconf.desc
index d5d3ac19a..6bf813869 100644
--- a/checks/debconf.desc
+++ b/checks/debconf.desc
@@ -309,7 +309,7 @@ Tag: template-uses-unsplit-choices
 Severity: normal
 Certainty: possible
 Info: The use of _Choices in templates is deprecated.
- An _Choices field must be translated as a single string.
+ A _Choices field must be translated as a single string.
  .
  Using __Choices allows each choice to be translated separately, easing
  translation and is therefore recommended.
diff --git a/checks/files.desc b/checks/files.desc
index 4f575b86d..4ba0d7da3 100644
--- a/checks/files.desc
+++ b/checks/files.desc
@@ -82,7 +82,7 @@ Tag: package-installs-apt-preferences
 Severity: serious
 Certainty: possible
 Ref: apt_preferences(5)
-Info: Debian packages should not install files under 
/etc/apt/preferences.d/ or install a /etc/apt/preferences file.
+Info: Debian packages should not install files under 
/etc/apt/preferences.d/ or install an /etc/apt/preferences file.
  This directory is under the control of the local administrator.
  .
  Package should not override local administrator choices.
@@ -92,7 +92,7 @@ Severity: serious
 Certainty: possible
 Ref: sources.list(5)
 Info: Debian packages should not install files under 
/etc/apt/sources.list.d/
- or install a /etc/apt/sources.list file.
+ or install an /etc/apt/sources.list file.
  This directory is under the control of the local administrator.
  .
  Package should not override local administrator choices.
@@ -1741,7 +1741,7 @@ Info: The package is architecture-dependent, ships a 
shared library in
  a public library search path and is marked Multi-Arch:
  foreign. Typically, shared libraries are marked Multi-Arch:
  same when possible. Sometimes, private shared libraries are put
- into the public library search path to accomodate 

Bug#878446: lintian: [PATCH] Spelling fixes

2017-10-13 Thread Ville Skyttä
Package: lintian
Version: 2.5.53ubuntu2
Severity: minor

Dear Maintainer,

'git am'able patch containing spelling fixes is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-4ubuntu1
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1build1
ii  dpkg  1.18.24ubuntu1
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4ubuntu1
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.34-1
ii  libclone-perl 0.38-2build2
ii  libdpkg-perl  1.18.24ubuntu1
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1build3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8ubuntu1
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-1
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2build1
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8ubuntu1
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1build3

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.18.24ubuntu1
ii  libhtml-parser-perl3.72-3build1
pn  libtext-template-perl  

-- no debconf information
>From 86dc452a32ea7e4df8d95f08b01a67efd7c13c55 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 21:34:39 +0300
Subject: [PATCH] Spelling fixes

---
 checks/conffiles.pm | 2 +-
 checks/debconf.desc | 2 +-
 checks/files.desc   | 6 +++---
 checks/scripts.desc | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/checks/conffiles.pm b/checks/conffiles.pm
index 90db31547..180a11cd3 100644
--- a/checks/conffiles.pm
+++ b/checks/conffiles.pm
@@ -83,7 +83,7 @@ sub run {
 }
 next unless $file =~ m{\A etc/ }xsm and $file->is_file;
 
-   # If there is a /etc/foo, it must be a conffile (with a few exceptions).
+   # If there is an /etc/foo, it must be a conffile (with a few 
exceptions).
 if (not exists($conffiles{$file})
 and $file !~ m{ /README $}xsm
 and $file ne 'etc/init.d/skeleton'
diff --git a/checks/debconf.desc b/checks/debconf.desc
index d5d3ac19a..6bf813869 100644
--- a/checks/debconf.desc
+++ b/checks/debconf.desc
@@ -309,7 +309,7 @@ Tag: template-uses-unsplit-choices
 Severity: normal
 Certainty: possible
 Info: The use of _Choices in templates is deprecated.
- An _Choices field must be translated as a single string.
+ A _Choices field must be translated as a single string.
  .
  Using __Choices allows each choice to be translated separately, easing
  translation and is therefore recommended.
diff --git a/checks/files.desc b/checks/files.desc
index 4f575b86d..4ba0d7da3 100644
--- a/checks/files.desc
+++ b/checks/files.desc
@@ -82,7 +82,7 @@ Tag: package-installs-apt-preferences
 Severity: serious
 Certainty: possible
 Ref: apt_preferences(5)
-Info: Debian packages should not install files under 
/etc/apt/preferences.d/ or install a /etc/apt/preferences file.
+Info: Debian packages should not install files under 
/etc/apt/preferences.d/ or install an /etc/apt/preferences file.
  This directory is under the control of the local administrator.
  .
  Package should not override local administrator choices.
@@ -92,7 +92,7 @@ Severity: serious
 Certainty: possible
 Ref: sources.list(5)
 Info: Debian packages should not install files under 
/etc/apt/sources.list.d/
- or install a /etc/apt/sources.list file.
+ or install an /etc/apt/sources.list file.
  This directory is under the control of the local administrator.
  .
  Package should not override local administrator choices.
@@ -1741,7 +1741,7 @@ Info: The package is architecture-dependent, ships a 
shared library in
  a public library search path and is marked Multi-Arch:
  foreign. Typically, shared libraries are marked Multi-Arch:
  same when possible. Sometimes, private shared libraries are put
- into the public library search path to accomodate 

Bug#878436: reportbug: Spelling fixes

2017-10-13 Thread Ville Skyttä
On Fri, Oct 13, 2017 at 8:53 PM, Sandro Tosi  wrote:
> thanks for your patch, but please re-submit it without touching
> debian/changelog - we're not  going to rewrite history there

Sure, here goes.
From 72a23329f13efe6d4c94a73442b4f5ff1e56e65d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 20:45:30 +0300
Subject: [PATCH] Spelling fixes

---
 reportbug/debbugs.py   |  2 +-
 reportbug/ui/gtk2_ui.py|  2 +-
 setup.py   |  2 +-
 test/test_checkversions.py |  2 +-
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/reportbug/debbugs.py b/reportbug/debbugs.py
index 1c65075..c4d664f 100644
--- a/reportbug/debbugs.py
+++ b/reportbug/debbugs.py
@@ -539,7 +539,7 @@ def handle_debian_release(package, bts, ui, fromaddr, timeout, online=True, http
 'you can use a regex by enclosing the regex in slashes ("/").  Please '
 'ensure that the "old" regex does not match the "new" packages.  '
 'Example: old="/libapt-pkg4.10|libapt-inst1.2/ libept1" '
-'new="/libapt-pkg4.12|libapt-inst1.5|libept1.4.12/". For futher '
+'new="/libapt-pkg4.12|libapt-inst1.5|libept1.4.12/". For further '
 'reference, please refer to http://ben.debian.net/ .')
 
 prompt = 'Please enter old binary package name of the library (or a regex matching it):'
diff --git a/reportbug/ui/gtk2_ui.py b/reportbug/ui/gtk2_ui.py
index fe97201..184ba0c 100644
--- a/reportbug/ui/gtk2_ui.py
+++ b/reportbug/ui/gtk2_ui.py
@@ -982,7 +982,7 @@ class MenuPage(TreePage):
 
 default_iter = None
 # here below, 'text' is the value of the description of the item, but
-# writen all on a single-line, it will be wrapped by the list settings
+# written all on a single line, it will be wrapped by the list settings
 if isinstance(options, dict):
 if order:
 for option in order:
diff --git a/setup.py b/setup.py
index 9674b71..75acdca 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ import glob
 
 setup(name='reportbug', version=reportbug.VERSION_NUMBER,
   description='bug reporting tool',
-  author='reportbug maintainence team',
+  author='reportbug maintenance team',
   author_email='reportbug-ma...@lists.alioth.debian.org',
   url='http://alioth.debian.org/projects/reportbug',
   data_files=[('share/reportbug', ['share/handle_bugscript',
diff --git a/test/test_checkversions.py b/test/test_checkversions.py
index 55cf2aa..e745679 100644
--- a/test/test_checkversions.py
+++ b/test/test_checkversions.py
@@ -10,7 +10,7 @@ class TestCheckversions(unittest.TestCase):
 def test_compare_versions(self):
 # 
 # 1 upstream newer than current
-# 0 same version or upsteam none
+# 0 same version or upstream none
 # -1 current newer than upstream
 self.assertEqual(checkversions.compare_versions('1.2.3', '1.2.4'), 1)
 
-- 
2.14.1



[Reportbug-maint] Bug#878436: reportbug: Spelling fixes

2017-10-13 Thread Ville Skyttä
On Fri, Oct 13, 2017 at 8:53 PM, Sandro Tosi  wrote:
> thanks for your patch, but please re-submit it without touching
> debian/changelog - we're not  going to rewrite history there

Sure, here goes.
From 72a23329f13efe6d4c94a73442b4f5ff1e56e65d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 20:45:30 +0300
Subject: [PATCH] Spelling fixes

---
 reportbug/debbugs.py   |  2 +-
 reportbug/ui/gtk2_ui.py|  2 +-
 setup.py   |  2 +-
 test/test_checkversions.py |  2 +-
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/reportbug/debbugs.py b/reportbug/debbugs.py
index 1c65075..c4d664f 100644
--- a/reportbug/debbugs.py
+++ b/reportbug/debbugs.py
@@ -539,7 +539,7 @@ def handle_debian_release(package, bts, ui, fromaddr, timeout, online=True, http
 'you can use a regex by enclosing the regex in slashes ("/").  Please '
 'ensure that the "old" regex does not match the "new" packages.  '
 'Example: old="/libapt-pkg4.10|libapt-inst1.2/ libept1" '
-'new="/libapt-pkg4.12|libapt-inst1.5|libept1.4.12/". For futher '
+'new="/libapt-pkg4.12|libapt-inst1.5|libept1.4.12/". For further '
 'reference, please refer to http://ben.debian.net/ .')
 
 prompt = 'Please enter old binary package name of the library (or a regex matching it):'
diff --git a/reportbug/ui/gtk2_ui.py b/reportbug/ui/gtk2_ui.py
index fe97201..184ba0c 100644
--- a/reportbug/ui/gtk2_ui.py
+++ b/reportbug/ui/gtk2_ui.py
@@ -982,7 +982,7 @@ class MenuPage(TreePage):
 
 default_iter = None
 # here below, 'text' is the value of the description of the item, but
-# writen all on a single-line, it will be wrapped by the list settings
+# written all on a single line, it will be wrapped by the list settings
 if isinstance(options, dict):
 if order:
 for option in order:
diff --git a/setup.py b/setup.py
index 9674b71..75acdca 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ import glob
 
 setup(name='reportbug', version=reportbug.VERSION_NUMBER,
   description='bug reporting tool',
-  author='reportbug maintainence team',
+  author='reportbug maintenance team',
   author_email='reportbug-maint@lists.alioth.debian.org',
   url='http://alioth.debian.org/projects/reportbug',
   data_files=[('share/reportbug', ['share/handle_bugscript',
diff --git a/test/test_checkversions.py b/test/test_checkversions.py
index 55cf2aa..e745679 100644
--- a/test/test_checkversions.py
+++ b/test/test_checkversions.py
@@ -10,7 +10,7 @@ class TestCheckversions(unittest.TestCase):
 def test_compare_versions(self):
 # 
 # 1 upstream newer than current
-# 0 same version or upsteam none
+# 0 same version or upstream none
 # -1 current newer than upstream
 self.assertEqual(checkversions.compare_versions('1.2.3', '1.2.4'), 1)
 
-- 
2.14.1

___
Reportbug-maint mailing list
Reportbug-maint@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reportbug-maint

[Reportbug-maint] Bug#878437: reportbug: Python 3.6 invalid escape sequence deprecation fixes

2017-10-13 Thread Ville Skyttä
Package: reportbug
Version: 7.1.7ubuntu1
Severity: minor

Dear Maintainer,

'git am'able patch containing Python 3.6 invalid escape sequence
deprecation fixes is attached.


-- Package-specific info:
** Environment settings:
EDITOR="emacs"
PAGER="less"
DEBEMAIL="ville.sky...@iki.fi"
DEBFULLNAME="Ville Skytt\udcc3\udca4"
INTERFACE="text"

** /home/scop/.reportbugrc:
reportbug_version "7.1.7ubuntu1"
mode novice
ui text
smtphost "smtp.gmail.com:587"
smtpuser "vsky...@gmail.com"
smtppasswd 
smtptls
no-cc

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages reportbug depends on:
ii  apt1.5
ii  python33.6.3-0ubuntu2
ii  python3-reportbug  7.1.7ubuntu1

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail  
pn  debconf-utils   
pn  debsums 
pn  dlocate 
ii  emacs25-bin-common  25.2+1-6
ii  file1:5.32-1
ii  gir1.2-gtk-3.0  3.22.21-0ubuntu1
ii  gir1.2-vte-2.91 0.48.4-0ubuntu1
ii  gnupg   2.1.15-1ubuntu7
pn  postfix | exim4 | mail-transport-agent  
ii  python3-gi  3.24.1-2build1
ii  python3-gi-cairo3.24.1-2build1
pn  python3-gtkspellcheck   
pn  python3-urwid   
ii  xdg-utils   1.1.1-1ubuntu2

Versions of packages python3-reportbug depends on:
ii  apt1.5
ii  file   1:5.32-1
ii  python33.6.3-0ubuntu2
ii  python3-debian 0.1.30
ii  python3-debianbts  2.6.1
ii  python3-requests   2.18.1-1

python3-reportbug suggests no packages.

-- no debconf information
>From dc57ce98d385a4ec65b707934ce1592b0df7879b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 20:48:34 +0300
Subject: [PATCH] Python 3.6 invalid escape sequence deprecation fixes

https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior
---
 reportbug/utils.py | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/reportbug/utils.py b/reportbug/utils.py
index 8139668..3974018 100644
--- a/reportbug/utils.py
+++ b/reportbug/utils.py
@@ -225,7 +225,7 @@ def find_package_for(filename, pathonly=False):
 
 # tries to match also files in /var/lib/dpkg/info/
 if filename.startswith('/var/lib/dpkg/info/'):
-dpkg_info = re.compile('/var/lib/dpkg/info/(.+)\.[^.]+')
+dpkg_info = re.compile(r'/var/lib/dpkg/info/(.+)\.[^.]+')
 m = dpkg_info.match(filename)
 # callee want a dict as second pair element...
 packages[m.group(1)] = ''
@@ -749,7 +749,7 @@ def get_debian_release_info():
 dists = []
 output = get_command_output('apt-cache policy 2>/dev/null')
 if output:
-mre = re.compile('\s+(\d+)\s+.*$\s+release\s.*o=(Ubuntu|Debian|Debian 
Ports),a=([^,]+),', re.MULTILINE)
+mre = re.compile(r'\s+(\d+)\s+.*$\s+release\s.*o=(Ubuntu|Debian|Debian 
Ports),a=([^,]+),', re.MULTILINE)
 found = {}
 # XXX: When Python 2.4 rolls around, rewrite this
 for match in mre.finditer(output):
@@ -1154,7 +1154,7 @@ def cleanup_msg(dmessage, headers, pseudos, type):
 continue
 else:
 # Permit bogus headers in the pseudoheader section
-headers.append(re.split(':\s+', line, 1))
+headers.append(re.split(r':\s+', line, 1))
 elif line.strip() != NEWBIELINE:
 message += line + '\n'
 
@@ -1286,7 +1286,7 @@ def check_package_name(pkg):
 
 Returns True if the package name is valid."""
 
-pkg_re = re.compile('^[a-z0-9][a-z0-9+-\.]+$')
+pkg_re = re.compile(r'^[a-z0-9][a-z0-9+-\.]+$')
 
 return True if pkg_re.match(pkg) else False
 
-- 
2.14.1

___
Reportbug-maint mailing list
Reportbug-maint@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reportbug-maint

Bug#878437: reportbug: Python 3.6 invalid escape sequence deprecation fixes

2017-10-13 Thread Ville Skyttä
Package: reportbug
Version: 7.1.7ubuntu1
Severity: minor

Dear Maintainer,

'git am'able patch containing Python 3.6 invalid escape sequence
deprecation fixes is attached.


-- Package-specific info:
** Environment settings:
EDITOR="emacs"
PAGER="less"
DEBEMAIL="ville.sky...@iki.fi"
DEBFULLNAME="Ville Skytt\udcc3\udca4"
INTERFACE="text"

** /home/scop/.reportbugrc:
reportbug_version "7.1.7ubuntu1"
mode novice
ui text
smtphost "smtp.gmail.com:587"
smtpuser "vsky...@gmail.com"
smtppasswd 
smtptls
no-cc

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages reportbug depends on:
ii  apt1.5
ii  python33.6.3-0ubuntu2
ii  python3-reportbug  7.1.7ubuntu1

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail  
pn  debconf-utils   
pn  debsums 
pn  dlocate 
ii  emacs25-bin-common  25.2+1-6
ii  file1:5.32-1
ii  gir1.2-gtk-3.0  3.22.21-0ubuntu1
ii  gir1.2-vte-2.91 0.48.4-0ubuntu1
ii  gnupg   2.1.15-1ubuntu7
pn  postfix | exim4 | mail-transport-agent  
ii  python3-gi  3.24.1-2build1
ii  python3-gi-cairo3.24.1-2build1
pn  python3-gtkspellcheck   
pn  python3-urwid   
ii  xdg-utils   1.1.1-1ubuntu2

Versions of packages python3-reportbug depends on:
ii  apt1.5
ii  file   1:5.32-1
ii  python33.6.3-0ubuntu2
ii  python3-debian 0.1.30
ii  python3-debianbts  2.6.1
ii  python3-requests   2.18.1-1

python3-reportbug suggests no packages.

-- no debconf information
>From dc57ce98d385a4ec65b707934ce1592b0df7879b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 20:48:34 +0300
Subject: [PATCH] Python 3.6 invalid escape sequence deprecation fixes

https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior
---
 reportbug/utils.py | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/reportbug/utils.py b/reportbug/utils.py
index 8139668..3974018 100644
--- a/reportbug/utils.py
+++ b/reportbug/utils.py
@@ -225,7 +225,7 @@ def find_package_for(filename, pathonly=False):
 
 # tries to match also files in /var/lib/dpkg/info/
 if filename.startswith('/var/lib/dpkg/info/'):
-dpkg_info = re.compile('/var/lib/dpkg/info/(.+)\.[^.]+')
+dpkg_info = re.compile(r'/var/lib/dpkg/info/(.+)\.[^.]+')
 m = dpkg_info.match(filename)
 # callee want a dict as second pair element...
 packages[m.group(1)] = ''
@@ -749,7 +749,7 @@ def get_debian_release_info():
 dists = []
 output = get_command_output('apt-cache policy 2>/dev/null')
 if output:
-mre = re.compile('\s+(\d+)\s+.*$\s+release\s.*o=(Ubuntu|Debian|Debian 
Ports),a=([^,]+),', re.MULTILINE)
+mre = re.compile(r'\s+(\d+)\s+.*$\s+release\s.*o=(Ubuntu|Debian|Debian 
Ports),a=([^,]+),', re.MULTILINE)
 found = {}
 # XXX: When Python 2.4 rolls around, rewrite this
 for match in mre.finditer(output):
@@ -1154,7 +1154,7 @@ def cleanup_msg(dmessage, headers, pseudos, type):
 continue
 else:
 # Permit bogus headers in the pseudoheader section
-headers.append(re.split(':\s+', line, 1))
+headers.append(re.split(r':\s+', line, 1))
 elif line.strip() != NEWBIELINE:
 message += line + '\n'
 
@@ -1286,7 +1286,7 @@ def check_package_name(pkg):
 
 Returns True if the package name is valid."""
 
-pkg_re = re.compile('^[a-z0-9][a-z0-9+-\.]+$')
+pkg_re = re.compile(r'^[a-z0-9][a-z0-9+-\.]+$')
 
 return True if pkg_re.match(pkg) else False
 
-- 
2.14.1



[Reportbug-maint] Bug#878436: reportbug: Spelling fixes

2017-10-13 Thread Ville Skyttä
Package: reportbug
Version: 7.1.7ubuntu1
Severity: minor

Dear Maintainer,

'git am'able patch containing spelling fixes is attached.


-- Package-specific info:
** Environment settings:
EDITOR="emacs"
PAGER="less"
DEBEMAIL="ville.sky...@iki.fi"
DEBFULLNAME="Ville Skytt\udcc3\udca4"
INTERFACE="text"

** /home/scop/.reportbugrc:
reportbug_version "7.1.7ubuntu1"
mode novice
ui text
smtphost "smtp.gmail.com:587"
smtpuser "vsky...@gmail.com"
smtppasswd 
smtptls
no-cc

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages reportbug depends on:
ii  apt1.5
ii  python33.6.3-0ubuntu2
ii  python3-reportbug  7.1.7ubuntu1

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail  
pn  debconf-utils   
pn  debsums 
pn  dlocate 
ii  emacs25-bin-common  25.2+1-6
ii  file1:5.32-1
ii  gir1.2-gtk-3.0  3.22.21-0ubuntu1
ii  gir1.2-vte-2.91 0.48.4-0ubuntu1
ii  gnupg   2.1.15-1ubuntu7
pn  postfix | exim4 | mail-transport-agent  
ii  python3-gi  3.24.1-2build1
ii  python3-gi-cairo3.24.1-2build1
pn  python3-gtkspellcheck   
pn  python3-urwid   
ii  xdg-utils   1.1.1-1ubuntu2

Versions of packages python3-reportbug depends on:
ii  apt1.5
ii  file   1:5.32-1
ii  python33.6.3-0ubuntu2
ii  python3-debian 0.1.30
ii  python3-debianbts  2.6.1
ii  python3-requests   2.18.1-1

python3-reportbug suggests no packages.

-- no debconf information
>From 72a23329f13efe6d4c94a73442b4f5ff1e56e65d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 20:45:30 +0300
Subject: [PATCH] Spelling fixes

---
 debian/changelog   | 16 
 reportbug/debbugs.py   |  2 +-
 reportbug/ui/gtk2_ui.py|  2 +-
 setup.py   |  2 +-
 test/test_checkversions.py |  2 +-
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 68d8e1e..9d07251 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -448,7 +448,7 @@ reportbug (6.5.0) unstable; urgency=low
 reportbug (6.4.4) unstable; urgency=low
 
   * reportbug/ui/gtk2_ui.py
-- proper update GTK+ UI from threads, using gobject.idle_add(), possibily
+- proper update GTK+ UI from threads, using gobject.idle_add(), possibly
   fixing the crashes seen with GTK+ reportbug UI; thanks to all the
   reporters and to Bruno Filipe Oliveira Ramos for the patch;
   Closes: #620225
@@ -731,7 +731,7 @@ reportbug (6.1) unstable; urgency=low
 - mention that 'www.debian.org' pseudo-package is not to be used for 
alioth;
   thanks to Nelson A. de Oliveira for the report; Closes: #631165
 - clarify msg for 'other' option in release.d.o special package; thanks to
-  Niels Thykier for teh report; Closes: #635071
+  Niels Thykier for the report; Closes: #635071
 - added http://release.debian.org/wheezy/rc_policy.txt to 'serious'
   description; thanks to Daniel Dickinson for the report; Closes: #637053
 - in ftp.d.o override menu, if section and priority are not changed, allow
@@ -805,7 +805,7 @@ reportbug (5.1) unstable; urgency=low
   exception; prevents a crash when following-up to an existing report using
   GTK+ UI; thanks to all the reporters; Closes: #619801
   * reportbug/urlutils.py
-- make the 'xdg-open' existance check be silent also when sh=dash; thanks 
to
+- make the 'xdg-open' existence check be silent also when sh=dash; thanks 
to
   RjY for the report and patch; Closes: #616523
   * bin/reportbug, reportbug/utils.py, man/reportbug.*
 - added a new cli options, --max-attachment-size (also available in the
@@ -1453,7 +1453,7 @@ reportbug (4.5) unstable; urgency=low
 - moved python to b-d (needed for clean) removing python-dev (not needed)
 - bump Standards-Version to 3.8.2 (no changes needed)
   * share/presubj
-- clarified to include the reportbug output when reporting bug agains us;
+- clarified to include the reportbug output when reporting bug against us;
   thanks for the suggestion to Reuben Thomas (from #532295)
   * reportbug/{debianbts.py, ui/text_ui.py}
 - try to decode BTS page as they are parsed, replacing bad UTF-8 character;
@@ -1540,8 +1540,8 @@ 

Bug#878436: reportbug: Spelling fixes

2017-10-13 Thread Ville Skyttä
Package: reportbug
Version: 7.1.7ubuntu1
Severity: minor

Dear Maintainer,

'git am'able patch containing spelling fixes is attached.


-- Package-specific info:
** Environment settings:
EDITOR="emacs"
PAGER="less"
DEBEMAIL="ville.sky...@iki.fi"
DEBFULLNAME="Ville Skytt\udcc3\udca4"
INTERFACE="text"

** /home/scop/.reportbugrc:
reportbug_version "7.1.7ubuntu1"
mode novice
ui text
smtphost "smtp.gmail.com:587"
smtpuser "vsky...@gmail.com"
smtppasswd 
smtptls
no-cc

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages reportbug depends on:
ii  apt1.5
ii  python33.6.3-0ubuntu2
ii  python3-reportbug  7.1.7ubuntu1

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail  
pn  debconf-utils   
pn  debsums 
pn  dlocate 
ii  emacs25-bin-common  25.2+1-6
ii  file1:5.32-1
ii  gir1.2-gtk-3.0  3.22.21-0ubuntu1
ii  gir1.2-vte-2.91 0.48.4-0ubuntu1
ii  gnupg   2.1.15-1ubuntu7
pn  postfix | exim4 | mail-transport-agent  
ii  python3-gi  3.24.1-2build1
ii  python3-gi-cairo3.24.1-2build1
pn  python3-gtkspellcheck   
pn  python3-urwid   
ii  xdg-utils   1.1.1-1ubuntu2

Versions of packages python3-reportbug depends on:
ii  apt1.5
ii  file   1:5.32-1
ii  python33.6.3-0ubuntu2
ii  python3-debian 0.1.30
ii  python3-debianbts  2.6.1
ii  python3-requests   2.18.1-1

python3-reportbug suggests no packages.

-- no debconf information
>From 72a23329f13efe6d4c94a73442b4f5ff1e56e65d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 20:45:30 +0300
Subject: [PATCH] Spelling fixes

---
 debian/changelog   | 16 
 reportbug/debbugs.py   |  2 +-
 reportbug/ui/gtk2_ui.py|  2 +-
 setup.py   |  2 +-
 test/test_checkversions.py |  2 +-
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 68d8e1e..9d07251 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -448,7 +448,7 @@ reportbug (6.5.0) unstable; urgency=low
 reportbug (6.4.4) unstable; urgency=low
 
   * reportbug/ui/gtk2_ui.py
-- proper update GTK+ UI from threads, using gobject.idle_add(), possibily
+- proper update GTK+ UI from threads, using gobject.idle_add(), possibly
   fixing the crashes seen with GTK+ reportbug UI; thanks to all the
   reporters and to Bruno Filipe Oliveira Ramos for the patch;
   Closes: #620225
@@ -731,7 +731,7 @@ reportbug (6.1) unstable; urgency=low
 - mention that 'www.debian.org' pseudo-package is not to be used for 
alioth;
   thanks to Nelson A. de Oliveira for the report; Closes: #631165
 - clarify msg for 'other' option in release.d.o special package; thanks to
-  Niels Thykier for teh report; Closes: #635071
+  Niels Thykier for the report; Closes: #635071
 - added http://release.debian.org/wheezy/rc_policy.txt to 'serious'
   description; thanks to Daniel Dickinson for the report; Closes: #637053
 - in ftp.d.o override menu, if section and priority are not changed, allow
@@ -805,7 +805,7 @@ reportbug (5.1) unstable; urgency=low
   exception; prevents a crash when following-up to an existing report using
   GTK+ UI; thanks to all the reporters; Closes: #619801
   * reportbug/urlutils.py
-- make the 'xdg-open' existance check be silent also when sh=dash; thanks 
to
+- make the 'xdg-open' existence check be silent also when sh=dash; thanks 
to
   RjY for the report and patch; Closes: #616523
   * bin/reportbug, reportbug/utils.py, man/reportbug.*
 - added a new cli options, --max-attachment-size (also available in the
@@ -1453,7 +1453,7 @@ reportbug (4.5) unstable; urgency=low
 - moved python to b-d (needed for clean) removing python-dev (not needed)
 - bump Standards-Version to 3.8.2 (no changes needed)
   * share/presubj
-- clarified to include the reportbug output when reporting bug agains us;
+- clarified to include the reportbug output when reporting bug against us;
   thanks for the suggestion to Reuben Thomas (from #532295)
   * reportbug/{debianbts.py, ui/text_ui.py}
 - try to decode BTS page as they are parsed, replacing bad UTF-8 character;
@@ -1540,8 +1540,8 @@ 

Bug#878435: python-debian: Spelling fixes

2017-10-13 Thread Ville Skyttä
Package: python-debian
Version: 0.1.30
Severity: minor

Dear Maintainer,

'git am'able patch containing spelling fixes is attached.


-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages python-debian depends on:
ii  python  2.7.14-2ubuntu1
ii  python-chardet  3.0.4-1
ii  python-six  1.10.0-4

Versions of packages python-debian recommends:
ii  python-apt  1.4.0~beta3build2

Versions of packages python-debian suggests:
ii  gpgv  2.1.15-1ubuntu7

-- no debconf information
>From bf3a3bc390eb8728205feab733d92bb0fa76d332 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 20:34:17 +0300
Subject: [PATCH] Spelling fixes

---
 README.changelog| 2 +-
 README.deb822   | 2 +-
 debian/changelog| 2 +-
 lib/debian/tests/test_changelog | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.changelog b/README.changelog
index b8f1caf..8c85fbb 100644
--- a/README.changelog
+++ b/README.changelog
@@ -53,7 +53,7 @@ The Changelog class provides the following interesting 
attributes and methods:
  If you create an Changelog object without sepcifying a changelog file, 
you 
  can parse a changelog file with this method. If the changelog doesn't 
parse
  cleanly, a ChangelogParseError exception is thrown. The constructor will
- parse the changelog on a best efford basis.
+ parse the changelog on a best effort basis.
  * add_change(change)
  Adds a change entry to the most recent version. The change entry should
  conform to the required format of the changelog (i.e. start with two 
diff --git a/README.deb822 b/README.deb822
index 89e7d64..2d0b278 100644
--- a/README.deb822
+++ b/README.deb822
@@ -69,7 +69,7 @@ For example:
 
 This method uses python-apt if available to parse the file, since it
 significantly boosts performance. The downside, though, is that yielded
-objects share storage, so they should never be kept accross iterations.
+objects share storage, so they should never be kept across iterations.
 To prevent this behavior, pass a "shared_storage=False" keyword-argument
 to the iter_paragraphs() function.
 
diff --git a/debian/changelog b/debian/changelog
index 63ba6ef..bb390b4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,7 +2,7 @@ python-debian (0.1.31) unstable; urgency=medium
 
   * Fix codename for 'rex' release, With thanks to Philipp Hahn
  for the report and patch (Closes: #863724).
-  * Include archqual in the deb822.PkgRelation.str output, wih thanks to
+  * Include archqual in the deb822.PkgRelation.str output, with thanks to
 Maximiliano Curia  for the report and patch
 (Closes: #868249).
   * Use unittest rather than nose for test suite discovery (Closes: #851324).
diff --git a/lib/debian/tests/test_changelog b/lib/debian/tests/test_changelog
index 8aada8d..c5d8b24 100644
--- a/lib/debian/tests/test_changelog
+++ b/lib/debian/tests/test_changelog
@@ -37,7 +37,7 @@ gnutls13 (1.4.0-2) unstable; urgency=low
 - add patches/10_certtoolmanpage.diff  patches/12_lessdeps.diff
   * Fix libgnutls-dev's Suggests to point to existing package. (gnutls-doc)
   * Also ship css-, devhelp- and sgml files in gnutls-doc.
-  * patches/15_fixcompilewarning.diff correct order of funtion arguments.
+  * patches/15_fixcompilewarning.diff correct order of function arguments.
 
   [ James Westby ]
   * This release allows the port to be specified as the name of the service
@@ -72,7 +72,7 @@ gnutls13 (1.4.0-1) experimental; urgency=low
   * Build against external libtasn1-3. (closes: #363294)
   * Standards-Version: 3.7.2, no changes required.
   * debian/control and override file are in sync with respect to Priority and
-Section, everthing except libgnutls13-dbg already was. (closes: #366956)
+Section, everything except libgnutls13-dbg already was. (closes: #366956)
   * acknowledge my own NMU. (closes: #367065)
   * libgnutls13-dbg is nonempty (closes: #367056)
 
-- 
2.14.1



Bug#878435: python-debian: Spelling fixes

2017-10-13 Thread Ville Skyttä
Package: python-debian
Version: 0.1.30
Severity: minor

Dear Maintainer,

'git am'able patch containing spelling fixes is attached.


-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages python-debian depends on:
ii  python  2.7.14-2ubuntu1
ii  python-chardet  3.0.4-1
ii  python-six  1.10.0-4

Versions of packages python-debian recommends:
ii  python-apt  1.4.0~beta3build2

Versions of packages python-debian suggests:
ii  gpgv  2.1.15-1ubuntu7

-- no debconf information
>From bf3a3bc390eb8728205feab733d92bb0fa76d332 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 20:34:17 +0300
Subject: [PATCH] Spelling fixes

---
 README.changelog| 2 +-
 README.deb822   | 2 +-
 debian/changelog| 2 +-
 lib/debian/tests/test_changelog | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.changelog b/README.changelog
index b8f1caf..8c85fbb 100644
--- a/README.changelog
+++ b/README.changelog
@@ -53,7 +53,7 @@ The Changelog class provides the following interesting 
attributes and methods:
  If you create an Changelog object without sepcifying a changelog file, 
you 
  can parse a changelog file with this method. If the changelog doesn't 
parse
  cleanly, a ChangelogParseError exception is thrown. The constructor will
- parse the changelog on a best efford basis.
+ parse the changelog on a best effort basis.
  * add_change(change)
  Adds a change entry to the most recent version. The change entry should
  conform to the required format of the changelog (i.e. start with two 
diff --git a/README.deb822 b/README.deb822
index 89e7d64..2d0b278 100644
--- a/README.deb822
+++ b/README.deb822
@@ -69,7 +69,7 @@ For example:
 
 This method uses python-apt if available to parse the file, since it
 significantly boosts performance. The downside, though, is that yielded
-objects share storage, so they should never be kept accross iterations.
+objects share storage, so they should never be kept across iterations.
 To prevent this behavior, pass a "shared_storage=False" keyword-argument
 to the iter_paragraphs() function.
 
diff --git a/debian/changelog b/debian/changelog
index 63ba6ef..bb390b4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,7 +2,7 @@ python-debian (0.1.31) unstable; urgency=medium
 
   * Fix codename for 'rex' release, With thanks to Philipp Hahn
  for the report and patch (Closes: #863724).
-  * Include archqual in the deb822.PkgRelation.str output, wih thanks to
+  * Include archqual in the deb822.PkgRelation.str output, with thanks to
 Maximiliano Curia  for the report and patch
 (Closes: #868249).
   * Use unittest rather than nose for test suite discovery (Closes: #851324).
diff --git a/lib/debian/tests/test_changelog b/lib/debian/tests/test_changelog
index 8aada8d..c5d8b24 100644
--- a/lib/debian/tests/test_changelog
+++ b/lib/debian/tests/test_changelog
@@ -37,7 +37,7 @@ gnutls13 (1.4.0-2) unstable; urgency=low
 - add patches/10_certtoolmanpage.diff  patches/12_lessdeps.diff
   * Fix libgnutls-dev's Suggests to point to existing package. (gnutls-doc)
   * Also ship css-, devhelp- and sgml files in gnutls-doc.
-  * patches/15_fixcompilewarning.diff correct order of funtion arguments.
+  * patches/15_fixcompilewarning.diff correct order of function arguments.
 
   [ James Westby ]
   * This release allows the port to be specified as the name of the service
@@ -72,7 +72,7 @@ gnutls13 (1.4.0-1) experimental; urgency=low
   * Build against external libtasn1-3. (closes: #363294)
   * Standards-Version: 3.7.2, no changes required.
   * debian/control and override file are in sync with respect to Priority and
-Section, everthing except libgnutls13-dbg already was. (closes: #366956)
+Section, everything except libgnutls13-dbg already was. (closes: #366956)
   * acknowledge my own NMU. (closes: #367065)
   * libgnutls13-dbg is nonempty (closes: #367056)
 
-- 
2.14.1

-- 
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-python-debian-maint

Bug#878434: python-debian: Python 3.6 invalid escape sequence deprecation fixes

2017-10-13 Thread Ville Skyttä
Package: python-debian
Version: 0.1.30
Severity: minor

Dear Maintainer,

'git am'able patch containing Python 3.6 invalid escape sequence
deprecation fixes is attached.

https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages python-debian depends on:
ii  python  2.7.14-2ubuntu1
ii  python-chardet  3.0.4-1
ii  python-six  1.10.0-4

Versions of packages python-debian recommends:
ii  python-apt  1.4.0~beta3build2

Versions of packages python-debian suggests:
ii  gpgv  2.1.15-1ubuntu7

-- no debconf information
>From e7d9998c38c760c4790ba5a2a8025282b633d33f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 20:31:03 +0300
Subject: [PATCH] Python 3.6 invalid escape sequence deprecation fixes

https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior
---
 lib/debian/changelog.py  | 52 ++--
 lib/debian/deb822.py |  2 +-
 lib/debian/debian_support.py |  8 +++
 3 files changed, 31 insertions(+), 31 deletions(-)

diff --git a/lib/debian/changelog.py b/lib/debian/changelog.py
index 1a1debc..81a34a9 100644
--- a/lib/debian/changelog.py
+++ b/lib/debian/changelog.py
@@ -145,7 +145,7 @@ class ChangeBlock(object):
 bugs = []
 for match in type_re.finditer(changes):
 closes_list = match.group(0)
-for match in re.finditer("\d+", closes_list):
+for match in re.finditer(r"\d+", closes_list):
 bugs.append(int(match.group(0)))
 return bugs
 
@@ -202,42 +202,42 @@ class ChangeBlock(object):
 return unicode(self).encode(self._encoding)
 
 topline = re.compile(r'^(\w%(name_chars)s*) \(([^\(\) \t]+)\)'
- '((\s+%(name_chars)s+)+)\;'
+ r'((\s+%(name_chars)s+)+)\;'
  % {'name_chars': '[-+0-9a-z.]'},
  re.IGNORECASE)
-blankline = re.compile('^\s*$')
-change = re.compile('^\s\s+.*$')
-endline = re.compile('^ -- (.*) <(.*)>(  ?)((\w+\,\s*)?\d{1,2}\s+\w+\s+'
-'\d{4}\s+\d{1,2}:\d\d:\d\d\s+[-+]\d{4}\s*)$')
-endline_nodetails = re.compile('^ --(?: (.*) <(.*)>(  ?)((\w+\,\s*)?\d{1,2}'
-'\s+\w+\s+\d{4}\s+\d{1,2}:\d\d:\d\d\s+[-+]\d{4}'
-'))?\s*$')
-keyvalue= re.compile('^([-0-9a-z]+)=\s*(.*\S)$', re.IGNORECASE)
-value_re = re.compile('^([-0-9a-z]+)((\s+.*)?)$', re.IGNORECASE)
+blankline = re.compile(r'^\s*$')
+change = re.compile(r'^\s\s+.*$')
+endline = re.compile(r'^ -- (.*) <(.*)>(  ?)((\w+\,\s*)?\d{1,2}\s+\w+\s+'
+r'\d{4}\s+\d{1,2}:\d\d:\d\d\s+[-+]\d{4}\s*)$')
+endline_nodetails = re.compile(r'^ --(?: (.*) <(.*)>(  ?)((\w+\,\s*)?\d{1,2}'
+r'\s+\w+\s+\d{4}\s+\d{1,2}:\d\d:\d\d\s+[-+]\d{4}'
+r'))?\s*$')
+keyvalue= re.compile(r'^([-0-9a-z]+)=\s*(.*\S)$', re.IGNORECASE)
+value_re = re.compile(r'^([-0-9a-z]+)((\s+.*)?)$', re.IGNORECASE)
 xbcs_re = re.compile('^X[BCS]+-', re.IGNORECASE)
-emacs_variables = re.compile('^(;;\s*)?Local variables:', re.IGNORECASE)
+emacs_variables = re.compile(r'^(;;\s*)?Local variables:', re.IGNORECASE)
 vim_variables = re.compile('^vim:', re.IGNORECASE)
-cvs_keyword = re.compile('^\$\w+:.*\$')
-comments = re.compile('^\# ')
-more_comments = re.compile('^/\*.*\*/')
-closes = re.compile('closes:\s*(?:bug)?\#?\s?\d+(?:,\s*(?:bug)?\#?\s?\d+)*',
+cvs_keyword = re.compile(r'^\$\w+:.*\$')
+comments = re.compile(r'^\# ')
+more_comments = re.compile(r'^/\*.*\*/')
+closes = re.compile(r'closes:\s*(?:bug)?\#?\s?\d+(?:,\s*(?:bug)?\#?\s?\d+)*',
 re.IGNORECASE)
-closeslp = re.compile('lp:\s+\#\d+(?:,\s*\#\d+)*', re.IGNORECASE)
+closeslp = re.compile(r'lp:\s+\#\d+(?:,\s*\#\d+)*', re.IGNORECASE)
 
-old_format_re1 = re.compile('^(\w+\s+\w+\s+\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}'
-'\s+[\w\s]*\d{4})\s+(.*)\s+(<|\()(.*)(\)|>)')
-old_format_re2 = re.compile('^(\w+\s+\w+\s+\d{1,2},?\s*\d{4})\s+(.*)'
-'\s+(<|\()(.*)(\)|>)')
-old_format_re3 = re.compile('^(\w[-+0-9a-z.]*) \(([^\(\) \t]+)\)\;?',
+old_format_re1 = re.compile(r'^(\w+\s+\w+\s+\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}'
+r'\s+[\w\s]*\d{4})\s+(.*)\s+(<|\()(.*)(\)|>)')
+old_format_re2 = re.compile(r'^(\w+\s+\w+\s+\d{1,2},?\s*\d{4})\s+(.*)'
+r'\s+(<|\()(.*)(\)|>)')
+old_format_re3 = re.compile(r'^(\w[-+0-9a-z.]*) \(([^\(\) \t]+)\)\;?',
 re.IGNORECASE)
-old_format_re4 = re.compile('^([\w.+-]+)(-| )(\S+) Debian (\S+)',
+old_format_re4 = re.compile(r'^([\w.+-]+)(-| )(\S+) Debian (\S+)',
 re.IGNORECASE)
 old_format_re5 = 

Bug#878434: python-debian: Python 3.6 invalid escape sequence deprecation fixes

2017-10-13 Thread Ville Skyttä
Package: python-debian
Version: 0.1.30
Severity: minor

Dear Maintainer,

'git am'able patch containing Python 3.6 invalid escape sequence
deprecation fixes is attached.

https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages python-debian depends on:
ii  python  2.7.14-2ubuntu1
ii  python-chardet  3.0.4-1
ii  python-six  1.10.0-4

Versions of packages python-debian recommends:
ii  python-apt  1.4.0~beta3build2

Versions of packages python-debian suggests:
ii  gpgv  2.1.15-1ubuntu7

-- no debconf information
>From e7d9998c38c760c4790ba5a2a8025282b633d33f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Fri, 13 Oct 2017 20:31:03 +0300
Subject: [PATCH] Python 3.6 invalid escape sequence deprecation fixes

https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior
---
 lib/debian/changelog.py  | 52 ++--
 lib/debian/deb822.py |  2 +-
 lib/debian/debian_support.py |  8 +++
 3 files changed, 31 insertions(+), 31 deletions(-)

diff --git a/lib/debian/changelog.py b/lib/debian/changelog.py
index 1a1debc..81a34a9 100644
--- a/lib/debian/changelog.py
+++ b/lib/debian/changelog.py
@@ -145,7 +145,7 @@ class ChangeBlock(object):
 bugs = []
 for match in type_re.finditer(changes):
 closes_list = match.group(0)
-for match in re.finditer("\d+", closes_list):
+for match in re.finditer(r"\d+", closes_list):
 bugs.append(int(match.group(0)))
 return bugs
 
@@ -202,42 +202,42 @@ class ChangeBlock(object):
 return unicode(self).encode(self._encoding)
 
 topline = re.compile(r'^(\w%(name_chars)s*) \(([^\(\) \t]+)\)'
- '((\s+%(name_chars)s+)+)\;'
+ r'((\s+%(name_chars)s+)+)\;'
  % {'name_chars': '[-+0-9a-z.]'},
  re.IGNORECASE)
-blankline = re.compile('^\s*$')
-change = re.compile('^\s\s+.*$')
-endline = re.compile('^ -- (.*) <(.*)>(  ?)((\w+\,\s*)?\d{1,2}\s+\w+\s+'
-'\d{4}\s+\d{1,2}:\d\d:\d\d\s+[-+]\d{4}\s*)$')
-endline_nodetails = re.compile('^ --(?: (.*) <(.*)>(  ?)((\w+\,\s*)?\d{1,2}'
-'\s+\w+\s+\d{4}\s+\d{1,2}:\d\d:\d\d\s+[-+]\d{4}'
-'))?\s*$')
-keyvalue= re.compile('^([-0-9a-z]+)=\s*(.*\S)$', re.IGNORECASE)
-value_re = re.compile('^([-0-9a-z]+)((\s+.*)?)$', re.IGNORECASE)
+blankline = re.compile(r'^\s*$')
+change = re.compile(r'^\s\s+.*$')
+endline = re.compile(r'^ -- (.*) <(.*)>(  ?)((\w+\,\s*)?\d{1,2}\s+\w+\s+'
+r'\d{4}\s+\d{1,2}:\d\d:\d\d\s+[-+]\d{4}\s*)$')
+endline_nodetails = re.compile(r'^ --(?: (.*) <(.*)>(  ?)((\w+\,\s*)?\d{1,2}'
+r'\s+\w+\s+\d{4}\s+\d{1,2}:\d\d:\d\d\s+[-+]\d{4}'
+r'))?\s*$')
+keyvalue= re.compile(r'^([-0-9a-z]+)=\s*(.*\S)$', re.IGNORECASE)
+value_re = re.compile(r'^([-0-9a-z]+)((\s+.*)?)$', re.IGNORECASE)
 xbcs_re = re.compile('^X[BCS]+-', re.IGNORECASE)
-emacs_variables = re.compile('^(;;\s*)?Local variables:', re.IGNORECASE)
+emacs_variables = re.compile(r'^(;;\s*)?Local variables:', re.IGNORECASE)
 vim_variables = re.compile('^vim:', re.IGNORECASE)
-cvs_keyword = re.compile('^\$\w+:.*\$')
-comments = re.compile('^\# ')
-more_comments = re.compile('^/\*.*\*/')
-closes = re.compile('closes:\s*(?:bug)?\#?\s?\d+(?:,\s*(?:bug)?\#?\s?\d+)*',
+cvs_keyword = re.compile(r'^\$\w+:.*\$')
+comments = re.compile(r'^\# ')
+more_comments = re.compile(r'^/\*.*\*/')
+closes = re.compile(r'closes:\s*(?:bug)?\#?\s?\d+(?:,\s*(?:bug)?\#?\s?\d+)*',
 re.IGNORECASE)
-closeslp = re.compile('lp:\s+\#\d+(?:,\s*\#\d+)*', re.IGNORECASE)
+closeslp = re.compile(r'lp:\s+\#\d+(?:,\s*\#\d+)*', re.IGNORECASE)
 
-old_format_re1 = re.compile('^(\w+\s+\w+\s+\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}'
-'\s+[\w\s]*\d{4})\s+(.*)\s+(<|\()(.*)(\)|>)')
-old_format_re2 = re.compile('^(\w+\s+\w+\s+\d{1,2},?\s*\d{4})\s+(.*)'
-'\s+(<|\()(.*)(\)|>)')
-old_format_re3 = re.compile('^(\w[-+0-9a-z.]*) \(([^\(\) \t]+)\)\;?',
+old_format_re1 = re.compile(r'^(\w+\s+\w+\s+\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}'
+r'\s+[\w\s]*\d{4})\s+(.*)\s+(<|\()(.*)(\)|>)')
+old_format_re2 = re.compile(r'^(\w+\s+\w+\s+\d{1,2},?\s*\d{4})\s+(.*)'
+r'\s+(<|\()(.*)(\)|>)')
+old_format_re3 = re.compile(r'^(\w[-+0-9a-z.]*) \(([^\(\) \t]+)\)\;?',
 re.IGNORECASE)
-old_format_re4 = re.compile('^([\w.+-]+)(-| )(\S+) Debian (\S+)',
+old_format_re4 = re.compile(r'^([\w.+-]+)(-| )(\S+) Debian (\S+)',
 re.IGNORECASE)
 old_format_re5 = 

Bug#878325: debhelper: Spelling fixes

2017-10-12 Thread Ville Skyttä
Package: debhelper
Version: 10.7.2ubuntu2
Severity: minor

Dear Maintainer,

'git am'able fix containing spelling fixes is attached. Hopefully I
got the correct attachment this time :)

Ville

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages debhelper depends on:
ii  autotools-dev20161112.1
ii  binutils 2.29.1-4ubuntu1
ii  dh-autoreconf14
ii  dh-strip-nondeterminism  0.038-1
ii  dpkg 1.18.24ubuntu1
ii  dpkg-dev 1.18.24ubuntu1
ii  file 1:5.32-1
ii  libdpkg-perl 1.18.24ubuntu1
ii  man-db   2.7.6.1-2
ii  perl 5.26.0-8ubuntu1
ii  po-debconf   1.0.20

debhelper recommends no packages.

Versions of packages debhelper suggests:
ii  dh-make  2.201608

-- no debconf information
>From d1a8d92ef4603d687a3e40d428dd9a59e5a23315 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Thu, 12 Oct 2017 23:43:11 +0300
Subject: [PATCH] Spelling fixes

---
 debian/copyright| 2 +-
 dh_gencontrol   | 2 +-
 doc/PROGRAMMING | 4 ++--
 lib/Debian/Debhelper/Buildsystem.pm | 6 +++---
 lib/Debian/Debhelper/Dh_Lib.pm  | 4 ++--
 t/buildsystems/buildsystem_tests.t  | 2 +-
 6 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 337c3e05..8385ffbf 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -10,7 +10,7 @@ Copyright: 1997-2011 Joey Hess 
 License: public-domain
  These files are in the public domain.
  .
- Pedants who belive I cannot legally say that code I have written is in
+ Pedants who believe I cannot legally say that code I have written is in
  the public domain may consider them instead to be licensed as follows:
  .
  Redistribution and use in source and binary forms, with or without
diff --git a/dh_gencontrol b/dh_gencontrol
index ef388cfd..bdbf178c 100755
--- a/dh_gencontrol
+++ b/dh_gencontrol
@@ -114,7 +114,7 @@ on_pkgs_in_parallel {
my $component = '';
if ($section =~ m{^(.*)/[^/]+$}) {
$component = "${1}/";
-   # This should not happen, but lets not 
propogate the error
+   # This should not happen, but lets not 
propagate the error
# if does.
$component = '' if $component eq 'main/';
}
diff --git a/doc/PROGRAMMING b/doc/PROGRAMMING
index 42ad1ab3..b76bc9ec 100644
--- a/doc/PROGRAMMING
+++ b/doc/PROGRAMMING
@@ -20,7 +20,7 @@ are run, so the important stuff is clearly visible.
 
 An exception to above rule are dh_auto_* commands and dh itself. They will
 also print the commands interacting with the upstream build system and which
-of the simple debhelper programms are called. (i.e. print what a traditional
+of the simple debhelper programs are called. (i.e. print what a traditional
 non-dh(1) using debian/rules would print but nothing else).
 
 Debhelper programs should accept all options listed in the "SHARED
@@ -324,7 +324,7 @@ restore_file_on_clean($file)
CAVEAT: This *cannot* undo arbitrary "rm -fr"'ing.  The dir,
which is/was in $file, must be present when dh_clean is called.
 make_symlink($src, $dest, $tmp)
-   Creates a Policy compliant sytem link called $dest pointing to
+   Creates a Policy compliant system link called $dest pointing to
$src. If $tmp is given, then $tmp will be prefixed to $dest when
creating the actual symlink.
 install_dh_config_file($src, $dest[, $mode])
diff --git a/lib/Debian/Debhelper/Buildsystem.pm 
b/lib/Debian/Debhelper/Buildsystem.pm
index 8f7939d1..4d2ee728 100644
--- a/lib/Debian/Debhelper/Buildsystem.pm
+++ b/lib/Debian/Debhelper/Buildsystem.pm
@@ -31,7 +31,7 @@ sub DESCRIPTION {
error("class lacking a DESCRIPTION");
 }
 
-# Default build directory. Can be overriden in the derived
+# Default build directory. Can be overridden in the derived
 # class if really needed.
 sub DEFAULT_BUILD_DIRECTORY {
"obj-" . dpkg_architecture_value("DEB_HOST_GNU_TYPE");
@@ -416,9 +416,9 @@ sub post_building_step {
 # building, testing, install and cleaning source packages.
 # In case of failure, the method may just error() out.
 #
-# These methods should be overriden by derived classes to
+# These methods should be overridden by derived classes to
 # implement build system specific steps needed to build the
-# source. Arbitary number of custom 

[Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-12 Thread Ville Skyttä
Wow, this is fixed after all now for me, somewhere between xwayland
and/or xserver* 2:1.19.3-1ubuntu7 -> 2:1.19.4-1ubuntu2.

** Changed in: xorg (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Touch-packages] [Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-12 Thread Ville Skyttä
Wow, this is fixed after all now for me, somewhere between xwayland
and/or xserver* 2:1.19.3-1ubuntu7 -> 2:1.19.4-1ubuntu2.

** Changed in: xorg (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

Status in xorg package in Ubuntu:
  Fix Released

Bug description:
  This system has a 4k laptop screen with resolution 3840x2160, and an
  external HP monitor connected via HDMI, resolution 1920x1200. Windows,
  fonts etc are not scaled properly on the external monitor (too large,
  etc), and the only workaround I've found with earlier versions and
  other distros is to set the laptop display to 1920x1080 mode, so
  that's what I'm trying here as well.

  However, when doing that, the X (wayland, not sure if the package is
  correct here) session crashes and brings me back to login screen.

  So to summarize: connect the external monitor, go to Settings >
  Devices > Displays, click primary built in display, observe that it
  shows Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
  1920x1080 (16:9), click Apply --> crash.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu2
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  BootLog:
   
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Oct 11 07:49:08 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GraphicsCard:
   Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
 Subsystem: Lenovo HD Graphics 620 [17aa:2248]
 Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
  InstallationDate: Installed on 2017-10-10 (0 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
  MachineType: LENOVO 20H9004MMX
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-12-generic.efi.signed 
root=UUID=182b5236-fa96-4fb5-bea9-f90769b65f3c ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/06/2017
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N1VET35W (1.25 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20H9004MMX
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN1VET35W(1.25):bd09/06/2017:svnLENOVO:pn20H9004MMX:pvrThinkPadT570:rvnLENOVO:rn20H9004MMX:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T570
  dmi.product.name: 20H9004MMX
  dmi.product.version: ThinkPad T570
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.83-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.19.3-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-12 Thread Ville Skyttä
Wow, this is fixed after all now for me, somewhere between xwayland
and/or xserver* 2:1.19.3-1ubuntu7 -> 2:1.19.4-1ubuntu2.

** Changed in: xorg (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

Status in xorg package in Ubuntu:
  Fix Released

Bug description:
  This system has a 4k laptop screen with resolution 3840x2160, and an
  external HP monitor connected via HDMI, resolution 1920x1200. Windows,
  fonts etc are not scaled properly on the external monitor (too large,
  etc), and the only workaround I've found with earlier versions and
  other distros is to set the laptop display to 1920x1080 mode, so
  that's what I'm trying here as well.

  However, when doing that, the X (wayland, not sure if the package is
  correct here) session crashes and brings me back to login screen.

  So to summarize: connect the external monitor, go to Settings >
  Devices > Displays, click primary built in display, observe that it
  shows Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
  1920x1080 (16:9), click Apply --> crash.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu2
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  BootLog:
   
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Oct 11 07:49:08 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GraphicsCard:
   Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
 Subsystem: Lenovo HD Graphics 620 [17aa:2248]
 Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
  InstallationDate: Installed on 2017-10-10 (0 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
  MachineType: LENOVO 20H9004MMX
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-12-generic.efi.signed 
root=UUID=182b5236-fa96-4fb5-bea9-f90769b65f3c ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/06/2017
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N1VET35W (1.25 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20H9004MMX
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN1VET35W(1.25):bd09/06/2017:svnLENOVO:pn20H9004MMX:pvrThinkPadT570:rvnLENOVO:rn20H9004MMX:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T570
  dmi.product.name: 20H9004MMX
  dmi.product.version: ThinkPad T570
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.83-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.19.3-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-12 Thread Ville Skyttä
Wow, this is fixed after all now for me, somewhere between xwayland
and/or xserver* 2:1.19.3-1ubuntu7 -> 2:1.19.4-1ubuntu2.

** Changed in: xorg (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


Bug#878309: dh-make: Spelling fixes

2017-10-12 Thread Ville Skyttä
Package: dh-make
Version: 2.201608
Severity: minor

Dear Maintainer,

'git am'able patch with spelling fixes is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-12-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages dh-make depends on:
ii  debhelper  10.7.2ubuntu2
ii  dpkg-dev   1.18.24ubuntu1
ii  make   4.1-9.1
ii  python 2.7.14-2ubuntu1
ii  python-enum34  1.1.6-1

dh-make recommends no packages.

Versions of packages dh-make suggests:
ii  build-essential  12.4ubuntu1

-- no debconf information
>From 9010d043ebacd63e934e84b34be93608edc94b24 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Thu, 12 Oct 2017 18:22:12 +0300
Subject: [PATCH] Spelling fixes

---
 debian/changelog| 4 ++--
 dh_make.1   | 2 +-
 dh_makefont | 6 +++---
 lib/debian/watch.ex | 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 64b3b20..a16122b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -706,7 +706,7 @@ dh-make (0.25) unstable; urgency=low
   * commented our calls to dh_suidregister Closes: #83225
   * Added the dash line to README Closes: #79986
   * deleted add-mail-log info line in changelog as it did evil things.
-incidently Closes: #83040
+incidentally Closes: #83040
 
  -- Craig Small   Tue, 6 Feb 2001 13:29:05 +1100
 
@@ -816,7 +816,7 @@ dh-make (0.14) unstable; urgency=low
 
   * Fixed username guessing (Bug #40528 #40502)
   * PWD now uses `pwd` (Bug #40583)
-  * Case insensitve checks on users input for package type
+  * Case insensitive checks on users input for package type
   * dh_shlibdeps before gencontrol in libs type (Bug #39131)
 
  -- Craig Small   Fri, 2 Jul 1999 17:13:30 +1000
diff --git a/dh_make.1 b/dh_make.1
index be0d3d5..577067a 100644
--- a/dh_make.1
+++ b/dh_make.1
@@ -157,7 +157,7 @@ checking.
 .TP
 .BR \-d ", " \-\-defaultless
 Skips applying the default templates to the target debian directory. Generally
-used in conjuction with either the \fB\-\-overlay\fR or \fB\-\-templates\fR
+used in conjunction with either the \fB\-\-overlay\fR or \fB\-\-templates\fR
 options.
 .TP
 .BR \-h ", " \-\-help
diff --git a/dh_makefont b/dh_makefont
index 7c66fd6..3b66535 100755
--- a/dh_makefont
+++ b/dh_makefont
@@ -139,7 +139,7 @@ def update_control_file(args):
 This function updates the control file which is generated by dh_make
 1. Section is set to fonts
 2. Priority optional
-3. if Maintainer is not overriden by --maint DEFAULT_MAINTAINER
+3. if Maintainer is not overridden by --maint DEFAULT_MAINTAINER
else use value given by user with --maint
 4. Uploaders is added using DEBEMAIL and DEBFULLNAME environment
variable
@@ -219,7 +219,7 @@ def update_copyright_file(args):
 
 def create_install_and_links():
 """
-This function writes install file it checks for availabilty of
+This function writes install file it checks for availability of
 ttf or otf file and writes a proper install file also if a font
 config .conf file is available creates a links file to do proper
 linking
@@ -379,7 +379,7 @@ def print_todo():
 
 def main():
 """
-Main part of the script. Kept in seperate function to have a good
+Main part of the script. Kept in separate function to have a good
 redability
 """
 args = arguments.parse_args()
diff --git a/lib/debian/watch.ex b/lib/debian/watch.ex
index 027175f..859765a 100644
--- a/lib/debian/watch.ex
+++ b/lib/debian/watch.ex
@@ -13,7 +13,7 @@ version=4
 #http://example.com/downloads.html \
 #  files/#PACKAGE#-([\d\.]+)\.tar\.gz debian uupdate
 
-# Uncommment to examine a FTP server
+# Uncomment to examine an FTP server
 #ftp://ftp.example.com/pub/#PACKAGE#-(.*)\.tar\.gz debian uupdate
 
 # SourceForge hosted projects
-- 
2.14.1



Bug#878306: debhelper: [PATCH] Spelling fixes

2017-10-12 Thread Ville Skyttä
Package: debhelper
Version: 10.7.2ubuntu2
Severity: minor

Dear Maintainer,

'git am'able spelling fix patch is attached.

-- System Information:
Debian Release: stretch/sid
  APT prefers artful
  APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-12-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages debhelper depends on:
ii  autotools-dev20161112.1
ii  binutils 2.29.1-4ubuntu1
ii  dh-autoreconf14
ii  dh-strip-nondeterminism  0.038-1
ii  dpkg 1.18.24ubuntu1
ii  dpkg-dev 1.18.24ubuntu1
ii  file 1:5.32-1
ii  libdpkg-perl 1.18.24ubuntu1
ii  man-db   2.7.6.1-2
ii  perl 5.26.0-8ubuntu1
ii  po-debconf   1.0.20

debhelper recommends no packages.

Versions of packages debhelper suggests:
ii  dh-make  2.201608

-- no debconf information
>From 9010d043ebacd63e934e84b34be93608edc94b24 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Thu, 12 Oct 2017 18:22:12 +0300
Subject: [PATCH] Spelling fixes

---
 debian/changelog| 4 ++--
 dh_make.1   | 2 +-
 dh_makefont | 6 +++---
 lib/debian/watch.ex | 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 64b3b20..a16122b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -706,7 +706,7 @@ dh-make (0.25) unstable; urgency=low
   * commented our calls to dh_suidregister Closes: #83225
   * Added the dash line to README Closes: #79986
   * deleted add-mail-log info line in changelog as it did evil things.
-incidently Closes: #83040
+incidentally Closes: #83040
 
  -- Craig Small   Tue, 6 Feb 2001 13:29:05 +1100
 
@@ -816,7 +816,7 @@ dh-make (0.14) unstable; urgency=low
 
   * Fixed username guessing (Bug #40528 #40502)
   * PWD now uses `pwd` (Bug #40583)
-  * Case insensitve checks on users input for package type
+  * Case insensitive checks on users input for package type
   * dh_shlibdeps before gencontrol in libs type (Bug #39131)
 
  -- Craig Small   Fri, 2 Jul 1999 17:13:30 +1000
diff --git a/dh_make.1 b/dh_make.1
index be0d3d5..577067a 100644
--- a/dh_make.1
+++ b/dh_make.1
@@ -157,7 +157,7 @@ checking.
 .TP
 .BR \-d ", " \-\-defaultless
 Skips applying the default templates to the target debian directory. Generally
-used in conjuction with either the \fB\-\-overlay\fR or \fB\-\-templates\fR
+used in conjunction with either the \fB\-\-overlay\fR or \fB\-\-templates\fR
 options.
 .TP
 .BR \-h ", " \-\-help
diff --git a/dh_makefont b/dh_makefont
index 7c66fd6..3b66535 100755
--- a/dh_makefont
+++ b/dh_makefont
@@ -139,7 +139,7 @@ def update_control_file(args):
 This function updates the control file which is generated by dh_make
 1. Section is set to fonts
 2. Priority optional
-3. if Maintainer is not overriden by --maint DEFAULT_MAINTAINER
+3. if Maintainer is not overridden by --maint DEFAULT_MAINTAINER
else use value given by user with --maint
 4. Uploaders is added using DEBEMAIL and DEBFULLNAME environment
variable
@@ -219,7 +219,7 @@ def update_copyright_file(args):
 
 def create_install_and_links():
 """
-This function writes install file it checks for availabilty of
+This function writes install file it checks for availability of
 ttf or otf file and writes a proper install file also if a font
 config .conf file is available creates a links file to do proper
 linking
@@ -379,7 +379,7 @@ def print_todo():
 
 def main():
 """
-Main part of the script. Kept in seperate function to have a good
+Main part of the script. Kept in separate function to have a good
 redability
 """
 args = arguments.parse_args()
diff --git a/lib/debian/watch.ex b/lib/debian/watch.ex
index 027175f..859765a 100644
--- a/lib/debian/watch.ex
+++ b/lib/debian/watch.ex
@@ -13,7 +13,7 @@ version=4
 #http://example.com/downloads.html \
 #  files/#PACKAGE#-([\d\.]+)\.tar\.gz debian uupdate
 
-# Uncommment to examine a FTP server
+# Uncomment to examine an FTP server
 #ftp://ftp.example.com/pub/#PACKAGE#-(.*)\.tar\.gz debian uupdate
 
 # SourceForge hosted projects
-- 
2.14.1



[Desktop-packages] [Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-12 Thread Ville Skyttä
** Changed in: xorg (Ubuntu)
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

Status in xorg package in Ubuntu:
  Confirmed

Bug description:
  This system has a 4k laptop screen with resolution 3840x2160, and an
  external HP monitor connected via HDMI, resolution 1920x1200. Windows,
  fonts etc are not scaled properly on the external monitor (too large,
  etc), and the only workaround I've found with earlier versions and
  other distros is to set the laptop display to 1920x1080 mode, so
  that's what I'm trying here as well.

  However, when doing that, the X (wayland, not sure if the package is
  correct here) session crashes and brings me back to login screen.

  So to summarize: connect the external monitor, go to Settings >
  Devices > Displays, click primary built in display, observe that it
  shows Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
  1920x1080 (16:9), click Apply --> crash.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu2
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  BootLog:
   
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Oct 11 07:49:08 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GraphicsCard:
   Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
 Subsystem: Lenovo HD Graphics 620 [17aa:2248]
 Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
  InstallationDate: Installed on 2017-10-10 (0 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
  MachineType: LENOVO 20H9004MMX
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-12-generic.efi.signed 
root=UUID=182b5236-fa96-4fb5-bea9-f90769b65f3c ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/06/2017
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N1VET35W (1.25 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20H9004MMX
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN1VET35W(1.25):bd09/06/2017:svnLENOVO:pn20H9004MMX:pvrThinkPadT570:rvnLENOVO:rn20H9004MMX:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T570
  dmi.product.name: 20H9004MMX
  dmi.product.version: ThinkPad T570
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.83-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.19.3-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-12 Thread Ville Skyttä
** Changed in: xorg (Ubuntu)
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-12 Thread Ville Skyttä
** Changed in: xorg (Ubuntu)
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Touch-packages] [Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-12 Thread Ville Skyttä
** Changed in: xorg (Ubuntu)
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

Status in xorg package in Ubuntu:
  Confirmed

Bug description:
  This system has a 4k laptop screen with resolution 3840x2160, and an
  external HP monitor connected via HDMI, resolution 1920x1200. Windows,
  fonts etc are not scaled properly on the external monitor (too large,
  etc), and the only workaround I've found with earlier versions and
  other distros is to set the laptop display to 1920x1080 mode, so
  that's what I'm trying here as well.

  However, when doing that, the X (wayland, not sure if the package is
  correct here) session crashes and brings me back to login screen.

  So to summarize: connect the external monitor, go to Settings >
  Devices > Displays, click primary built in display, observe that it
  shows Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
  1920x1080 (16:9), click Apply --> crash.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu2
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  BootLog:
   
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Oct 11 07:49:08 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GraphicsCard:
   Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
 Subsystem: Lenovo HD Graphics 620 [17aa:2248]
 Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
  InstallationDate: Installed on 2017-10-10 (0 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
  MachineType: LENOVO 20H9004MMX
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-12-generic.efi.signed 
root=UUID=182b5236-fa96-4fb5-bea9-f90769b65f3c ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/06/2017
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N1VET35W (1.25 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20H9004MMX
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN1VET35W(1.25):bd09/06/2017:svnLENOVO:pn20H9004MMX:pvrThinkPadT570:rvnLENOVO:rn20H9004MMX:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T570
  dmi.product.name: 20H9004MMX
  dmi.product.version: ThinkPad T570
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.83-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.19.3-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-11 Thread Ville Skyttä
Not quite; with X the screens flicker a couple of times, somehow change
resolution temporarily, but then come back with the original settings.

With the X case (don't remember checking the wayland one), when I start
the resolution modification, I see things like this when starting gnome-
control-center from the console:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.InvalidArgs: Logical
monitor scales must be identical

...and the Apply button does not show up. When I change the external
monitor to 100% scaling, the Apply button appears and is enabled, then
clicking on it gives this stuff on console while the flickering etc
occurs:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.NoReply: Message
recipient disconnected from message bus without replying

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Name
"org.gnome.Mutter.DisplayConfig" does not exist

...and then, after that, finally this on the console:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.AccessDenied: The
requested configuration is based on stale information

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

Status in xorg package in Ubuntu:
  New

Bug description:
  This system has a 4k laptop screen with resolution 3840x2160, and an
  external HP monitor connected via HDMI, resolution 1920x1200. Windows,
  fonts etc are not scaled properly on the external monitor (too large,
  etc), and the only workaround I've found with earlier versions and
  other distros is to set the laptop display to 1920x1080 mode, so
  that's what I'm trying here as well.

  However, when doing that, the X (wayland, not sure if the package is
  correct here) session crashes and brings me back to login screen.

  So to summarize: connect the external monitor, go to Settings >
  Devices > Displays, click primary built in display, observe that it
  shows Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
  1920x1080 (16:9), click Apply --> crash.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu2
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  BootLog:
   
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Oct 11 07:49:08 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GraphicsCard:
   Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
 Subsystem: Lenovo HD Graphics 620 [17aa:2248]
 Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
  InstallationDate: Installed on 2017-10-10 (0 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
  MachineType: LENOVO 20H9004MMX
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-12-generic.efi.signed 
root=UUID=182b5236-fa96-4fb5-bea9-f90769b65f3c ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/06/2017
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N1VET35W (1.25 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20H9004MMX
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN1VET35W(1.25):bd09/06/2017:svnLENOVO:pn20H9004MMX:pvrThinkPadT570:rvnLENOVO:rn20H9004MMX:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T570
  dmi.product.name: 20H9004MMX
  dmi.product.version: ThinkPad T570
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.83-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.19.3-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More 

[Ubuntu-x-swat] [Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-11 Thread Ville Skyttä
Not quite; with X the screens flicker a couple of times, somehow change
resolution temporarily, but then come back with the original settings.

With the X case (don't remember checking the wayland one), when I start
the resolution modification, I see things like this when starting gnome-
control-center from the console:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.InvalidArgs: Logical
monitor scales must be identical

...and the Apply button does not show up. When I change the external
monitor to 100% scaling, the Apply button appears and is enabled, then
clicking on it gives this stuff on console while the flickering etc
occurs:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.NoReply: Message
recipient disconnected from message bus without replying

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Name
"org.gnome.Mutter.DisplayConfig" does not exist

...and then, after that, finally this on the console:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.AccessDenied: The
requested configuration is based on stale information

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-11 Thread Ville Skyttä
Not quite; with X the screens flicker a couple of times, somehow change
resolution temporarily, but then come back with the original settings.

With the X case (don't remember checking the wayland one), when I start
the resolution modification, I see things like this when starting gnome-
control-center from the console:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.InvalidArgs: Logical
monitor scales must be identical

...and the Apply button does not show up. When I change the external
monitor to 100% scaling, the Apply button appears and is enabled, then
clicking on it gives this stuff on console while the flickering etc
occurs:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.NoReply: Message
recipient disconnected from message bus without replying

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Name
"org.gnome.Mutter.DisplayConfig" does not exist

...and then, after that, finally this on the console:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.AccessDenied: The
requested configuration is based on stale information

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Desktop-packages] [Bug 1722708] Re: Crash when setting laptop display resolution

2017-10-11 Thread Ville Skyttä
Not quite; with X the screens flicker a couple of times, somehow change
resolution temporarily, but then come back with the original settings.

With the X case (don't remember checking the wayland one), when I start
the resolution modification, I see things like this when starting gnome-
control-center from the console:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.InvalidArgs: Logical
monitor scales must be identical

...and the Apply button does not show up. When I change the external
monitor to 100% scaling, the Apply button appears and is enabled, then
clicking on it gives this stuff on console while the flickering etc
occurs:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.NoReply: Message
recipient disconnected from message bus without replying

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Name
"org.gnome.Mutter.DisplayConfig" does not exist

...and then, after that, finally this on the console:

(gnome-control-center:15810): display-cc-panel-WARNING **: Config not
applicable: GDBus.Error:org.freedesktop.DBus.Error.AccessDenied: The
requested configuration is based on stale information

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

Status in xorg package in Ubuntu:
  New

Bug description:
  This system has a 4k laptop screen with resolution 3840x2160, and an
  external HP monitor connected via HDMI, resolution 1920x1200. Windows,
  fonts etc are not scaled properly on the external monitor (too large,
  etc), and the only workaround I've found with earlier versions and
  other distros is to set the laptop display to 1920x1080 mode, so
  that's what I'm trying here as well.

  However, when doing that, the X (wayland, not sure if the package is
  correct here) session crashes and brings me back to login screen.

  So to summarize: connect the external monitor, go to Settings >
  Devices > Displays, click primary built in display, observe that it
  shows Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
  1920x1080 (16:9), click Apply --> crash.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu2
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  BootLog:
   
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Oct 11 07:49:08 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GraphicsCard:
   Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
 Subsystem: Lenovo HD Graphics 620 [17aa:2248]
 Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
  InstallationDate: Installed on 2017-10-10 (0 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
  MachineType: LENOVO 20H9004MMX
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-12-generic.efi.signed 
root=UUID=182b5236-fa96-4fb5-bea9-f90769b65f3c ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/06/2017
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N1VET35W (1.25 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20H9004MMX
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN1VET35W(1.25):bd09/06/2017:svnLENOVO:pn20H9004MMX:pvrThinkPadT570:rvnLENOVO:rn20H9004MMX:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T570
  dmi.product.name: 20H9004MMX
  dmi.product.version: ThinkPad T570
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.83-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.19.3-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : 

[Bug 1722708] [NEW] Crash when setting laptop display resolution

2017-10-10 Thread Ville Skyttä
Public bug reported:

This system has a 4k laptop screen with resolution 3840x2160, and an
external HP monitor connected via HDMI, resolution 1920x1200. Windows,
fonts etc are not scaled properly on the external monitor (too large,
etc), and the only workaround I've found with earlier versions and other
distros is to set the laptop display to 1920x1080 mode, so that's what
I'm trying here as well.

However, when doing that, the X (wayland, not sure if the package is
correct here) session crashes and brings me back to login screen.

So to summarize: connect the external monitor, go to Settings > Devices
> Displays, click primary built in display, observe that it shows
Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
1920x1080 (16:9), click Apply --> crash.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: xorg 1:7.7+19ubuntu2
ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
Uname: Linux 4.13.0-12-generic x86_64
ApportVersion: 2.20.7-0ubuntu2
Architecture: amd64
BootLog:
 
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Wed Oct 11 07:49:08 2017
DistUpgraded: Fresh install
DistroCodename: artful
DistroVariant: ubuntu
EcryptfsInUse: Yes
GraphicsCard:
 Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
   Subsystem: Lenovo HD Graphics 620 [17aa:2248]
   Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
InstallationDate: Installed on 2017-10-10 (0 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
MachineType: LENOVO 20H9004MMX
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-12-generic.efi.signed 
root=UUID=182b5236-fa96-4fb5-bea9-f90769b65f3c ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg crash
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/06/2017
dmi.bios.vendor: LENOVO
dmi.bios.version: N1VET35W (1.25 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20H9004MMX
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40697 WIN
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnLENOVO:bvrN1VET35W(1.25):bd09/06/2017:svnLENOVO:pn20H9004MMX:pvrThinkPadT570:rvnLENOVO:rn20H9004MMX:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
dmi.product.family: ThinkPad T570
dmi.product.name: 20H9004MMX
dmi.product.version: ThinkPad T570
dmi.sys.vendor: LENOVO
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.83-1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.3-1ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful crash ubuntu wayland-session

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Desktop-packages] [Bug 1722708] [NEW] Crash when setting laptop display resolution

2017-10-10 Thread Ville Skyttä
Public bug reported:

This system has a 4k laptop screen with resolution 3840x2160, and an
external HP monitor connected via HDMI, resolution 1920x1200. Windows,
fonts etc are not scaled properly on the external monitor (too large,
etc), and the only workaround I've found with earlier versions and other
distros is to set the laptop display to 1920x1080 mode, so that's what
I'm trying here as well.

However, when doing that, the X (wayland, not sure if the package is
correct here) session crashes and brings me back to login screen.

So to summarize: connect the external monitor, go to Settings > Devices
> Displays, click primary built in display, observe that it shows
Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
1920x1080 (16:9), click Apply --> crash.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: xorg 1:7.7+19ubuntu2
ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
Uname: Linux 4.13.0-12-generic x86_64
ApportVersion: 2.20.7-0ubuntu2
Architecture: amd64
BootLog:
 
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Wed Oct 11 07:49:08 2017
DistUpgraded: Fresh install
DistroCodename: artful
DistroVariant: ubuntu
EcryptfsInUse: Yes
GraphicsCard:
 Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
   Subsystem: Lenovo HD Graphics 620 [17aa:2248]
   Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
InstallationDate: Installed on 2017-10-10 (0 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
MachineType: LENOVO 20H9004MMX
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-12-generic.efi.signed 
root=UUID=182b5236-fa96-4fb5-bea9-f90769b65f3c ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg crash
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/06/2017
dmi.bios.vendor: LENOVO
dmi.bios.version: N1VET35W (1.25 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20H9004MMX
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40697 WIN
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnLENOVO:bvrN1VET35W(1.25):bd09/06/2017:svnLENOVO:pn20H9004MMX:pvrThinkPadT570:rvnLENOVO:rn20H9004MMX:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
dmi.product.family: ThinkPad T570
dmi.product.name: 20H9004MMX
dmi.product.version: ThinkPad T570
dmi.sys.vendor: LENOVO
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.83-1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.3-1ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful crash ubuntu wayland-session

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

Status in xorg package in Ubuntu:
  New

Bug description:
  This system has a 4k laptop screen with resolution 3840x2160, and an
  external HP monitor connected via HDMI, resolution 1920x1200. Windows,
  fonts etc are not scaled properly on the external monitor (too large,
  etc), and the only workaround I've found with earlier versions and
  other distros is to set the laptop display to 1920x1080 mode, so
  that's what I'm trying here as well.

  However, when doing that, the X (wayland, not sure if the package is
  correct here) session crashes and brings me back to login screen.

  So to summarize: connect the external monitor, go to Settings >
  Devices > Displays, click primary built in display, observe that it
  shows Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
  1920x1080 (16:9), click Apply --> crash.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu2
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  BootLog:
   
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Oct 11 07:49:08 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GraphicsCard:
   Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
 Subsystem: Lenovo HD Graphics 620 [17aa:2248]
 Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
  InstallationDate: Installed on 2017-10-10 (0 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
  MachineType: LENOVO 20H9004MMX
  

[Ubuntu-x-swat] [Bug 1722708] [NEW] Crash when setting laptop display resolution

2017-10-10 Thread Ville Skyttä
Public bug reported:

This system has a 4k laptop screen with resolution 3840x2160, and an
external HP monitor connected via HDMI, resolution 1920x1200. Windows,
fonts etc are not scaled properly on the external monitor (too large,
etc), and the only workaround I've found with earlier versions and other
distros is to set the laptop display to 1920x1080 mode, so that's what
I'm trying here as well.

However, when doing that, the X (wayland, not sure if the package is
correct here) session crashes and brings me back to login screen.

So to summarize: connect the external monitor, go to Settings > Devices
> Displays, click primary built in display, observe that it shows
Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
1920x1080 (16:9), click Apply --> crash.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: xorg 1:7.7+19ubuntu2
ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
Uname: Linux 4.13.0-12-generic x86_64
ApportVersion: 2.20.7-0ubuntu2
Architecture: amd64
BootLog:
 
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Wed Oct 11 07:49:08 2017
DistUpgraded: Fresh install
DistroCodename: artful
DistroVariant: ubuntu
EcryptfsInUse: Yes
GraphicsCard:
 Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
   Subsystem: Lenovo HD Graphics 620 [17aa:2248]
   Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
InstallationDate: Installed on 2017-10-10 (0 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
MachineType: LENOVO 20H9004MMX
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-12-generic.efi.signed 
root=UUID=182b5236-fa96-4fb5-bea9-f90769b65f3c ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg crash
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/06/2017
dmi.bios.vendor: LENOVO
dmi.bios.version: N1VET35W (1.25 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20H9004MMX
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40697 WIN
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnLENOVO:bvrN1VET35W(1.25):bd09/06/2017:svnLENOVO:pn20H9004MMX:pvrThinkPadT570:rvnLENOVO:rn20H9004MMX:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
dmi.product.family: ThinkPad T570
dmi.product.name: 20H9004MMX
dmi.product.version: ThinkPad T570
dmi.sys.vendor: LENOVO
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.83-1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.3-1ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful crash ubuntu wayland-session

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1722708/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1722708] [NEW] Crash when setting laptop display resolution

2017-10-10 Thread Ville Skyttä
Public bug reported:

This system has a 4k laptop screen with resolution 3840x2160, and an
external HP monitor connected via HDMI, resolution 1920x1200. Windows,
fonts etc are not scaled properly on the external monitor (too large,
etc), and the only workaround I've found with earlier versions and other
distros is to set the laptop display to 1920x1080 mode, so that's what
I'm trying here as well.

However, when doing that, the X (wayland, not sure if the package is
correct here) session crashes and brings me back to login screen.

So to summarize: connect the external monitor, go to Settings > Devices
> Displays, click primary built in display, observe that it shows
Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
1920x1080 (16:9), click Apply --> crash.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: xorg 1:7.7+19ubuntu2
ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
Uname: Linux 4.13.0-12-generic x86_64
ApportVersion: 2.20.7-0ubuntu2
Architecture: amd64
BootLog:
 
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Wed Oct 11 07:49:08 2017
DistUpgraded: Fresh install
DistroCodename: artful
DistroVariant: ubuntu
EcryptfsInUse: Yes
GraphicsCard:
 Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
   Subsystem: Lenovo HD Graphics 620 [17aa:2248]
   Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
InstallationDate: Installed on 2017-10-10 (0 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
MachineType: LENOVO 20H9004MMX
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-12-generic.efi.signed 
root=UUID=182b5236-fa96-4fb5-bea9-f90769b65f3c ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg crash
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/06/2017
dmi.bios.vendor: LENOVO
dmi.bios.version: N1VET35W (1.25 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20H9004MMX
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40697 WIN
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnLENOVO:bvrN1VET35W(1.25):bd09/06/2017:svnLENOVO:pn20H9004MMX:pvrThinkPadT570:rvnLENOVO:rn20H9004MMX:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
dmi.product.family: ThinkPad T570
dmi.product.name: 20H9004MMX
dmi.product.version: ThinkPad T570
dmi.sys.vendor: LENOVO
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.83-1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.2-0ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.3-1ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20170309-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful crash ubuntu wayland-session

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1722708

Title:
  Crash when setting laptop display resolution

Status in xorg package in Ubuntu:
  New

Bug description:
  This system has a 4k laptop screen with resolution 3840x2160, and an
  external HP monitor connected via HDMI, resolution 1920x1200. Windows,
  fonts etc are not scaled properly on the external monitor (too large,
  etc), and the only workaround I've found with earlier versions and
  other distros is to set the laptop display to 1920x1080 mode, so
  that's what I'm trying here as well.

  However, when doing that, the X (wayland, not sure if the package is
  correct here) session crashes and brings me back to login screen.

  So to summarize: connect the external monitor, go to Settings >
  Devices > Displays, click primary built in display, observe that it
  shows Resolution 3840x2160 (16:9) and Scale 200%, change resolution to
  1920x1080 (16:9), click Apply --> crash.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: xorg 1:7.7+19ubuntu2
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  BootLog:
   
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Oct 11 07:49:08 2017
  DistUpgraded: Fresh install
  DistroCodename: artful
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GraphicsCard:
   Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
 Subsystem: Lenovo HD Graphics 620 [17aa:2248]
 Subsystem: Lenovo GM108M [GeForce 940MX] [17aa:2248]
  InstallationDate: Installed on 2017-10-10 (0 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171008)
  MachineType: LENOVO 20H9004MMX
  

Bug#876384: [PATCH] apache2ctl: Fix passing arguments with spaces in them to apache2

2017-09-21 Thread Ville Skyttä
Package: apache2
Version: 2.4.25-3+deb9u3

For example:

# apachectl -D FOREGROUND -c "ErrorLog /dev/stderr"
[...]
Action '-D FOREGROUND -c ErrorLog /dev/stderr' failed.
The Apache error log may have more information.

'git am'able fix attached.
From bc9076ec3f3e76a692e3985ff2e67633d749b608 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Thu, 21 Sep 2017 17:54:50 +0300
Subject: [PATCH] apache2ctl: Fix passing arguments with spaces in them to
 apache2

For example:
apache2ctl -D FOREGROUND -c "ErrorLog /dev/stderr"
---
 debian/apache2ctl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/apache2ctl b/debian/apache2ctl
index f31263b1..b03dc7e9 100755
--- a/debian/apache2ctl
+++ b/debian/apache2ctl
@@ -205,7 +205,7 @@ fullstatus)
 get_status
 ;;
 *)
-$HTTPD ${APACHE_ARGUMENTS} $ARGV
+$HTTPD ${APACHE_ARGUMENTS} "$@"
 ERROR=$?
 esac
 
-- 
2.13.5



Bug#876384: [PATCH] apache2ctl: Fix passing arguments with spaces in them to apache2

2017-09-21 Thread Ville Skyttä
Package: apache2
Version: 2.4.25-3+deb9u3

For example:

# apachectl -D FOREGROUND -c "ErrorLog /dev/stderr"
[...]
Action '-D FOREGROUND -c ErrorLog /dev/stderr' failed.
The Apache error log may have more information.

'git am'able fix attached.
From bc9076ec3f3e76a692e3985ff2e67633d749b608 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Thu, 21 Sep 2017 17:54:50 +0300
Subject: [PATCH] apache2ctl: Fix passing arguments with spaces in them to
 apache2

For example:
apache2ctl -D FOREGROUND -c "ErrorLog /dev/stderr"
---
 debian/apache2ctl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/apache2ctl b/debian/apache2ctl
index f31263b1..b03dc7e9 100755
--- a/debian/apache2ctl
+++ b/debian/apache2ctl
@@ -205,7 +205,7 @@ fullstatus)
 get_status
 ;;
 *)
-$HTTPD ${APACHE_ARGUMENTS} $ARGV
+$HTTPD ${APACHE_ARGUMENTS} "$@"
 ERROR=$?
 esac
 
-- 
2.13.5



Bug#875817: RFP: libnet-braintree-perl -- Client library for wrapping the Braintree payment services gateway API

2017-09-14 Thread Ville Skyttä
Package: wnpp
Severity: wishlist

* Package name: libnet-braintree-perl
  Version : 0.30.0
* URL : http://search.cpan.org/dist/Net-Braintree/
* License : MIT
  Programming Lang: Perl
  Description : Client library for wrapping the Braintree payment
services gateway API

Net::Braintree is a client library for wrapping the Braintree payment
services gateway API.

wnpp entries in the dependency chain:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875782
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875784
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875785



Bug#875817: RFP: libnet-braintree-perl -- Client library for wrapping the Braintree payment services gateway API

2017-09-14 Thread Ville Skyttä
Package: wnpp
Severity: wishlist

* Package name: libnet-braintree-perl
  Version : 0.30.0
* URL : http://search.cpan.org/dist/Net-Braintree/
* License : MIT
  Programming Lang: Perl
  Description : Client library for wrapping the Braintree payment
services gateway API

Net::Braintree is a client library for wrapping the Braintree payment
services gateway API.

wnpp entries in the dependency chain:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875782
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875784
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875785



Bug#875785: RFP: libdatetime-format-atom-perl -- Parse and format Atom datetime strings

2017-09-14 Thread Ville Skyttä
Package: wnpp
Severity: wishlist

* Package name: libdatetime-format-atom-perl
  Version : 1.2.0
  Upstream Author : Eric Brine 
* URL : http://search.cpan.org/dist/DateTime-Format-Atom/
* License : CC0
  Programming Lang: Perl
  Description : Parse and format Atom datetime strings

This module understands the Atom date/time format, an ISO 8601
profile, defined at http://tools.ietf.org/html/rfc4287

It can be used to parse these formats in order to create the
appropriate objects.



Bug#875785: RFP: libdatetime-format-atom-perl -- Parse and format Atom datetime strings

2017-09-14 Thread Ville Skyttä
Package: wnpp
Severity: wishlist

* Package name: libdatetime-format-atom-perl
  Version : 1.2.0
  Upstream Author : Eric Brine 
* URL : http://search.cpan.org/dist/DateTime-Format-Atom/
* License : CC0
  Programming Lang: Perl
  Description : Parse and format Atom datetime strings

This module understands the Atom date/time format, an ISO 8601
profile, defined at http://tools.ietf.org/html/rfc4287

It can be used to parse these formats in order to create the
appropriate objects.



Bug#875784: RFP: libmodule-install-testtarget-perl -- Assemble custom test targets for `make`

2017-09-14 Thread Ville Skyttä
Package: wnpp
Severity: wishlist

* Package name: libmodule-install-testtarget-perl
  Version : 0.19
  Upstream Author : Yuji Shimada 
* URL : http://search.cpan.org/dist/Module-Install-TestTarget/
* License : Artistic and GPL
  Programming Lang: Perl
  Description : Assemble custom test targets for `make`

Module::Install::TestTarget creates make test variations with code
snippets. This helps module developers to test their distributions
with various conditions.



<    1   2   3   4   5   6   7   8   9   10   >