Bug#780040: marked as done (unblock: libwww-youtube-download-perl/0.56-2)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 08 Mar 2015 17:38:04 +
with message-id 1425836284.16946.4.ca...@adam-barratt.org.uk
and subject line Re: Bug#780040: unblock: libwww-youtube-download-perl/0.56-2
has caused the Debian Bug report #780040,
regarding unblock: libwww-youtube-download-perl/0.56-2
to be marked as done.

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

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


-- 
780040: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780040
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Please unblock package libwww-youtube-download-perl 0.56-2.

The upload fixes #779985: youtube-download fails to download any video.

I've added two small patches from upstream github, which are from
August 2014 and just not released due to a missing upstream
maintainer. My manual tests show that youtube-download works again.

Diff attached.


unblock libwww-youtube-download-perl/0.56-2


Cheers,
gregor

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAEBCgBmBQJU/HwWXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoG92UP/0bmTbOjYDpIKWTRC7PwL7gV
q7CXyBH8k/0qqy6RsDPMrtaj+DJf98ZfY+sBcyAmFokhgRzuvgAMq8O8PZURsnam
SMOabCqONGd3PGrxkvA4hadgEU4ydMIDjOIrCaJNYN0eiuM0oRJRswZGUwdes+7w
mBFA3vhoB5sP0rfGV9VGMzsrmr6kfH6dnqFignlm0dgDP3TW1wwskoKtKbciE6ai
fcz9j7CcgO9/FCBgRakAnX8ipgyP6FTkRxbFudO4OBdLVv1zfHzUIMCmQZmOsC9R
8/ikYnc/wNL13gXp9rxUQ/JtIZbPNZyCg1hfSWEs6l0DT+1Mjok71eJv3rA5DlYy
D94pM/XEL8bR9JwtNLG9qQ4pmV78sBwfptQ5JNLwqI/K6s78ESh6ls3id1V6It11
pBpzwstU5/XLLwko3qfD+2/qL/AlAVSlYKGClPvWfBeveu7B/Ldh+ZL1yu7iz9sI
KH7wxr8T8FuYPxnhEPLb1UI2xX23eOm1o9gaQi7hGFvN6YOQtIpKyd//9qlsH3zq
qVp0woMLRJ6mN+WenDdfwZoAYSw0fjpBsrKmmfxlqZgIHBKfUYrpUYChT6HvdiZQ
aqPwYhNQox84VvN7ft6PhEdWmkBMFO2BYRAM+AOJgy+hGasaXCfzAcPSt4x0ge7G
+EJMtSN+edsApPM5YDdl
=iqVG
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index 01db0c9..d41ed71 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+libwww-youtube-download-perl (0.56-2) unstable; urgency=medium
+
+  * Add 2 small patches from Github to adjust to YouTube changes.
+
+Patches are taken from PR#31 in issue #27 at
+https://github.com/xaicron/p5-www-youtube-download/issues/27
+
+(Closes: #779985)
+
+ -- gregor herrmann gre...@debian.org  Sun, 08 Mar 2015 15:35:00 +0100
+
 libwww-youtube-download-perl (0.56-1) unstable; urgency=low
 
   * Imported Upstream version 0.56
diff --git a/debian/patches/Dont_fail_if_we_can't_find_a_signature.patch b/debian/patches/Dont_fail_if_we_can't_find_a_signature.patch
new file mode 100644
index 000..8e468f6
--- /dev/null
+++ b/debian/patches/Dont_fail_if_we_can't_find_a_signature.patch
@@ -0,0 +1,27 @@
+From 87a6a56829a2a7265953b56dbc8f55d8384367a1 Mon Sep 17 00:00:00 2001
+From: Thomas Sibley tsib...@cpan.org
+Date: Sat, 23 Aug 2014 14:11:55 -0700
+Subject: [PATCH] Don't fail if we can't find a signature
+
+YouTube started offering pre-signed URLs, so at least give it a go if we
+can't parse out a signature.  This preserves the previous behaviour for
+backwards compat if there are still older videos without pre-signed URLs
+(unclear if that's so).
+---
+ lib/WWW/YouTube/Download.pm | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+--- a/lib/WWW/YouTube/Download.pm
 b/lib/WWW/YouTube/Download.pm
+@@ -299,9 +299,9 @@
+ my $uri = URI-new;
+ $uri-query($stuff);
+ my $query = +{ $uri-query_form };
+-my $sig = $query-{sig} || _getsig($query-{s});
++my $sig = $query-{sig} || ($query-{s} ? _getsig($query-{s}) : undef);
+ my $url = $query-{url};
+-$fmt_url_map-{$query-{itag}} = $url.'signature='.$sig;
++$fmt_url_map-{$query-{itag}} = $url . ($sig ? 'signature='.$sig : '');
+ }
+ 
+ return $fmt_url_map;
diff --git a/debian/patches/Let_the_JSON_parser_stop_when_it_finds_trailing_garbage.patch b/debian/patches/Let_the_JSON_parser_stop_when_it_finds_trailing_garbage.patch
new file mode 100644
index 000..9a2f87e
--- /dev/null
+++ b/debian/patches/Let_the_JSON_parser_stop_when_it_finds_trailing_garbage.patch
@@ -0,0 +1,21 @@
+From dd7f116d09142a921dea266b99c9065ca6ae394d Mon Sep 17 00:00:00 2001
+From: Thomas Sibley tsib...@cpan.org
+Date: Sat, 23 Aug 2014 14:11:14 -0700
+Subject: [PATCH] Let the JSON parser stop when it finds trailing garbage
+
+This is more robust than playing cat-and-mouse with the regex.
+---
+ 

Bug#776928: marked as done (unblock: debian-installer-netboot-images/20150107)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 08 Mar 2015 21:24:53 +0100
with message-id 54fcb015.7080...@thykier.net
and subject line Re: Bug#776928: unblock: 
debian-installer-netboot-images/20150107
has caused the Debian Bug report #776928,
regarding unblock: debian-installer-netboot-images/20150107
to be marked as done.

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

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


-- 
776928: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776928
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
x-debbugs-cc: debian-b...@lists.debian.org

Hi,

please unblock debian-installer-netboot-images/201501078 as the version
currently in testing is unusable with jessie.

$ debdiff debian-installer-netboot-images_20130613+deb7u2.b4.dsc 
debian-installer-netboot-images_20150107.dsc|diffstat
 debian/README   |2 -
 debian/changelog|   54 +---
 debian/compat   |2 -
 debian/control  |   48 +++
 debian/control.in   |2 -
 debian/lintian-overrides.in |5 
 debian/rules|9 ---
 get-images.sh   |   17 -
 8 files changed, 60 insertions(+), 79 deletions(-)

debian-installer-netboot-images (20150107) unstable; urgency=low

  * Update to 20150107 images.

  [ Dmitrijs Ledkovs ]
  * Bump debhelper compat level to 9.

  [ Didier Raboud ]
  * Update architectures' list, distribution codename and major version
for Jessie (Closes: #766960)
  * Add a kfreebsd netboot directory postfix special-case
  * Add new matching lintian overrides
  * Move to one-digit versioning, aka from '-7.0-' to '-8-'

  [ Cyril Brulebois ]
  * Update README to document fancy .bN suffix for d-i-n-i when d-i has
+bN.
  * Add a check in get-images.sh to detect wrong binNMU versioning.

 -- Didier Raboud o...@debian.org  Thu, 29 Jan 2015 10:34:48 +0100


Full diff attached for your convinience...


cheers,
Holger
diff -Nru debian-installer-netboot-images-20130613+deb7u2.b4/debian/changelog debian-installer-netboot-images-20150107/debian/changelog
--- debian-installer-netboot-images-20130613+deb7u2.b4/debian/changelog	2015-01-05 23:59:30.0 +0100
+++ debian-installer-netboot-images-20150107/debian/changelog	2015-01-29 10:35:32.0 +0100
@@ -1,53 +1,23 @@
-debian-installer-netboot-images (20130613+deb7u2.b4) wheezy; urgency=low
+debian-installer-netboot-images (20150107) unstable; urgency=low
 
-  * Update to 20130613+deb7u2+b4 images, from proposed-updates.
+  * Update to 20150107 images.
 
- -- Adam D. Barratt a...@adam-barratt.org.uk  Mon, 05 Jan 2015 21:23:44 +
+  [ Dmitrijs Ledkovs ]
+  * Bump debhelper compat level to 9.
 
-debian-installer-netboot-images (20130613+deb7u2.b3) wheezy; urgency=low
+  [ Didier Raboud ]
+  * Update architectures' list, distribution codename and major version
+for Jessie (Closes: #766960)
+  * Add a kfreebsd netboot directory postfix special-case
+  * Add new matching lintian overrides
+  * Move to one-digit versioning, aka from '-7.0-' to '-8-'
 
-  * Update to 20130613+deb7u2+b3 images, from proposed-updates.
-
- -- Adam D. Barratt a...@adam-barratt.org.uk  Mon, 13 Oct 2014 20:08:24 +0100
-
-debian-installer-netboot-images (20130613+deb7u2.b2) wheezy; urgency=low
-
-  * Update to 20130613+deb7u2+b2 images, from proposed-updates.
-
- -- Adam D. Barratt a...@adam-barratt.org.uk  Thu, 10 Jul 2014 05:44:50 +0100
-
-debian-installer-netboot-images (20130613+deb7u2.b1) wheezy; urgency=low
-
-  * Update to 20130613+deb7u2+b1 images, from proposed-updates.
-
- -- Adam D. Barratt a...@adam-barratt.org.uk  Thu, 24 Apr 2014 19:17:24 +0100
-
-debian-installer-netboot-images (20130613+deb7u1.b2) wheezy; urgency=low
-
-  * Update to 20130613+deb7u1+b2 images, from proposed-updates.
-
- -- Adam D. Barratt a...@adam-barratt.org.uk  Wed, 05 Feb 2014 20:24:42 +
-
-debian-installer-netboot-images (20130613+deb7u1.b1) wheezy; urgency=low
-
-  * Update to 20130613+deb7u1+b1 images, from proposed-updates.
-
- -- Adam D. Barratt a...@adam-barratt.org.uk  Thu, 12 Dec 2013 19:03:39 +
-
-debian-installer-netboot-images (20130613+deb7u1) wheezy; urgency=low
-
-  * Update to 20130613+deb7u1 images, from wheezy-proposed-updates.
+  [ Cyril Brulebois ]
   * Update README to document fancy .bN suffix for d-i-n-i when d-i has
 +bN.
   * Add a check in get-images.sh to detect wrong binNMU versioning.
 
- -- Cyril Brulebois k...@debian.org  Fri, 11 Oct 

Bug#780044: marked as done (unblock: whois/5.2.5)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 08 Mar 2015 17:42:07 +
with message-id 1425836527.16946.5.ca...@adam-barratt.org.uk
and subject line Re: Bug#780044: unblock: whois/5.2.5
has caused the Debian Bug report #780044,
regarding unblock: whois/5.2.5
to be marked as done.

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

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


-- 
780044: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780044
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package whois

Data changes only.

unblock whois/5.2.5

-- 
ciao,
Marco
diff -Nru whois-5.2.4/debian/changelog whois-5.2.5/debian/changelog
--- whois-5.2.4/debian/changelog	2015-01-25 04:15:04.0 +0100
+++ whois-5.2.5/debian/changelog	2015-03-03 02:49:57.0 +0100
@@ -1,3 +1,12 @@
+whois (5.2.5) unstable; urgency=medium
+
+  * Added the .xn--90ais (.бел, Belarus) TLD server.
+  * Updated the .ky TLD server.
+  * Updated the list of new gTLDs.
+  * Added new recovered IPv4 allocations.
+
+ -- Marco d'Itri m...@linux.it  Tue, 03 Mar 2015 02:15:57 +0100
+
 whois (5.2.4) unstable; urgency=medium
 
   * Fixed referrals handling for the .cc, .tv a .jobs TLDs.
diff -Nru whois-5.2.4/ip_del_recovered.h whois-5.2.5/ip_del_recovered.h
--- whois-5.2.4/ip_del_recovered.h	2014-09-14 12:52:10.0 +0200
+++ whois-5.2.5/ip_del_recovered.h	2015-03-03 02:49:57.0 +0100
@@ -2,9 +2,13 @@
 { 736886784UL, 737411071UL, whois.apnic.net },
 { 737476608UL, 738000895UL, whois.apnic.net },
 { 738066432UL, 738197503UL, whois.apnic.net },
+{ 755236864UL, 755499007UL, whois.lacnic.net },
+{ 755499008UL, 756023295UL, whois.ripe.net },
 { 756023296UL, 757071871UL, whois.arin.net },
 { 757071872UL, 759169023UL, whois.arin.net },
 { 759169024UL, 759238655UL, whois.apnic.net },
+{ 759431168UL, 759693311UL, whois.lacnic.net },
+{ 759693312UL, 760217599UL, whois.arin.net },
 { 760217600UL, 761266175UL, whois.ripe.net },
 { 761266176UL, 762314751UL, whois.afrinic.net },
 { 762314752UL, 763363327UL, whois.apnic.net },
@@ -12,6 +16,8 @@
 { 765460480UL, 767557631UL, whois.lacnic.net },
 { 767557632UL, 769589247UL, whois.afrinic.net },
 { 769654784UL, 770703359UL, whois.lacnic.net },
+{ 770703360UL, 771227647UL, whois.afrinic.net },
+{ 771227648UL, 771751935UL, whois.apnic.net },
 { 2523594752UL, 2523660287UL, whois.apnic.net },
 { 2525036544UL, 2525102079UL, whois.apnic.net },
 { 2532442112UL, 2532507647UL, whois.apnic.net },
diff -Nru whois-5.2.4/new_gtlds_list whois-5.2.5/new_gtlds_list
--- whois-5.2.4/new_gtlds_list	2015-01-25 04:15:04.0 +0100
+++ whois-5.2.5/new_gtlds_list	2015-03-03 02:49:57.0 +0100
@@ -16,6 +16,7 @@
 alsace
 amsterdam
 android
+apartments
 aquarelle
 archi
 army
@@ -37,6 +38,7 @@
 best
 bid
 bike
+bingo
 bio
 black
 blackfriday
@@ -44,6 +46,7 @@
 blue
 bmw
 bnpparibas
+boats
 boo
 boutique
 brussels
@@ -58,6 +61,7 @@
 camera
 camp
 cancerresearch
+canon
 capetown
 capital
 caravan
@@ -68,11 +72,14 @@
 cartier
 casa
 cash
+casino
 catering
+cbn
 center
 ceo
 cern
 channel
+chat
 cheap
 christmas
 chrome
@@ -100,6 +107,7 @@
 cooking
 cool
 country
+courses
 credit
 creditcard
 cricket
@@ -153,6 +161,7 @@
 expert
 exposed
 fail
+fans
 farm
 fashion
 feedback
@@ -169,6 +178,7 @@
 flsmidth
 fly
 foo
+football
 forsale
 foundation
 frl
@@ -180,6 +190,7 @@
 gallery
 garden
 gbiz
+gdn
 gent
 ggee
 gift
@@ -192,6 +203,7 @@
 gmail
 gmo
 gmx
+goldpoint
 goog
 google
 gop
@@ -244,6 +256,7 @@
 koeln
 krd
 kred
+kyoto
 lacaixa
 land
 lat
@@ -298,9 +311,11 @@
 nexus
 ngo
 nhk
+nico
 ninja
 nra
 nrw
+ntt
 nyc
 okinawa
 one
@@ -366,9 +381,11 @@
 sale
 samsung
 sarl
+saxo
 sca
 scb
 schmidt
+school
 schule
 schwarz
 science
@@ -389,6 +406,9 @@
 soy
 space
 spiegel
+study
+style
+sucks
 supplies
 supply
 support
@@ -403,6 +423,7 @@
 tax
 technology
 temasek
+tennis
 tienda
 tips
 tires
@@ -411,6 +432,7 @@
 tokyo
 tools
 top
+toshiba
 town
 toys
 trade
@@ -496,6 +518,7 @@
 xyz
 yachts
 yandex
+yodobashi
 yoga
 yokohama
 youtube
diff -Nru whois-5.2.4/tld_serv_list whois-5.2.5/tld_serv_list
--- whois-5.2.4/tld_serv_list	2015-01-25 04:15:04.0 +0100
+++ whois-5.2.5/tld_serv_list	2015-03-03 02:49:57.0 +0100
@@ -192,7 +192,7 @@
 .kp	NONE		# NIC? http://www.star.co.kp/
 .kr	whois.kr
 .kw	WEB http://www.kw/
-.ky	WEB http://kynseweb.messagesecure.com/kywebadmin/ # http://www.icta.ky/
+.ky	whois.kyregistry.ky
 .kz	whois.nic.kz
 .la	whois.nic.la
 .lb	WEB http://www.aub.edu.lb/lbdr/
@@ -353,6 +353,7 @@
 .xn--45brj9c		whois.inregistry.net	# India, Bengali AW
 

Bug#780052: marked as done (nmu: handbrake_0.10.0+dfsg1-2)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 08 Mar 2015 21:30:42 +0100
with message-id 54fcb172.20...@thykier.net
and subject line Re: Bug#780052: nmu: handbrake_0.10.0+dfsg1-2
has caused the Debian Bug report #780052,
regarding nmu: handbrake_0.10.0+dfsg1-2
to be marked as done.

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

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


-- 
780052: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780052
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

Please binNMU handbrake to pick up dependencies on libx265-43.

nmu handbrake_0.10.0+dfsg1-2 . ALL . experimental . -m Rebuild against libx265 
1.5

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
On 2015-03-08 20:40, Sebastian Ramacher wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: binnmu
 
 Please binNMU handbrake to pick up dependencies on libx265-43.
 
 nmu handbrake_0.10.0+dfsg1-2 . ALL . experimental . -m Rebuild against 
 libx265 1.5
 
 Cheers
 

Scheduled, thanks.

~Niels---End Message---


Bug#779523: unblock (pre-approval): sudo/1.8.10p3-1+deb8u2

2015-03-08 Thread Niels Thykier
On 2015-03-08 21:08, Christian Kastner wrote:
 On 2015-03-08 17:25, Niels Thykier wrote:
 On 2015-03-01 22:01, Christian Kastner wrote:

 Excellent, please go ahead and upload this to t-p-u.  Once it has been
 uploaded, please notify us and remove the moreinfo tag.

 Hi Christian,

 Any news on this upload to sudo?
 
 Hi Niels,
 
 I pinged Bdale today regarding an upload, and to get his consent for an
 NMU if his time does not permit for an upload (earlier this week, he did
 give me a heads-up that he would be time-constrained).
 

Hi Christian,

Thanks for the response.

 I'd like to wait a few days to allow for a response, would that be OK?
 

Certainly, though do you have an explicit deadline for a few days?
E.g. Wednesday?  Just so I know when I can expect an update. :)

 In case it needs to get NMU'ed, I believe I have a willing sponsor or
 two I could ping for an upload.
 
 Regards,
 Christian
 

Excellent.

Thanks,
~Niels


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54fcb10b.7040...@thykier.net



Bug#779523: unblock (pre-approval): sudo/1.8.10p3-1+deb8u2

2015-03-08 Thread Christian Kastner
On 2015-03-08 21:28, Niels Thykier wrote:
 On 2015-03-08 21:08, Christian Kastner wrote:
 I'd like to wait a few days to allow for a response, would that be OK?
 
 Certainly, though do you have an explicit deadline for a few days?
 E.g. Wednesday?  Just so I know when I can expect an update. :)

Sure, Wednesday will work!

Regards,
Christian


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54fcb19b.5020...@kvr.at



Bug#779945: marked as done (unblock: linux/3.16.7-ckt7-1)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 08 Mar 2015 20:07:15 +0100
with message-id 54fc9de3.1080...@thykier.net
and subject line Re: Bug#779945: unblock: linux/3.16.7-ckt7-1
has caused the Debian Bug report #779945,
regarding unblock: linux/3.16.7-ckt7-1
to be marked as done.

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

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


-- 
779945: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779945
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package linux

- Stable updates 3.16.7-ckt{5,6,7} with many important fixes, including
  fix for CVE-2015-1465
- Additional security fixes: CVE-2015-1420, CVE-2015-1593
- Hardware enablement
  - Olimex A20 OLinuXino LIME2 system
  - GPIO-controlled backlights
  - Dumb framebuffer on Allwinner SoCs
  - Clock fix for Atom E6xx systems
  - Sound on some Haswell and Bay Trail based systems
  - Areca Raid ARC12x4 SCSI adapter
  - Bochs and QXL paravirtual framebuffers
  - BananaPro board
- Fix regression in i915 driver in 3.16.y making some systems unbootable
- Fix regression in nfsv4 uid/gid translation cache in 3.13
- Fix regressions in backlight control on some x86 systems in 3.16
- Configuration changes for alpha and hppa, which you can ignore

The attached debdiff excludes the generated files under debian/abi/,
debian/config.defines.dump, debian/control, debian/control.md5sum,
debian/rules.gen and under debian/po/.

This will also require an unblock-udeb.

Ben.

unblock linux/3.16.7-ckt7-1

-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (x86_64)
Foreign Architectures: amd64

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
---End Message---
---BeginMessage---
On 2015-03-08 19:52, Cyril Brulebois wrote:
 Control: tag -1 confirmed
 
 Niels Thykier ni...@thykier.net (2015-03-06):
 [...]

 Ok from my PoV, CC'ing KiBi for a d-i ack.
 
 No objections, thanks.
 
 Mraw,
 KiBi.
 

I have added the unblock-udeb hint to match, thanks.

~Niels---End Message---


[Jessie/puppet] Status on #775795 and #778891

2015-03-08 Thread Niels Thykier
Hi Puppet maintainers,

There are currently two remaining RC bugs against puppet, which affects
the version in Jessie.

 * #775795 - puppet: Service's debian provider assumes SysV init
 * #778891 - puppet: systemd unit file does not load environment [...]

The first is one of three blocker bugs for Jessie.  I see there is a
patch for it, which was committed to the git repository.  Do we expect
that this patch will fully solve the issue?

The second one appears to have a fairly simple patch[1]. Will this
adequately solve the issue or is there some reason not to apply it as well?


Assuming the patches are sufficient for solving the above bugs, do you
have an ETA for an upload to unstable fixing these bugs?


Thanks,
~Niels

[1]
https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=puppet-environmentfile.patch;att=1;bug=778891

(Attached to original submission).


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54fca183.3050...@thykier.net



Processed: Re: Bug#776928: unblock: debian-installer-netboot-images/20150107

2015-03-08 Thread Debian Bug Tracking System
Processing control commands:

 tag -1 confirmed
Bug #776928 [release.debian.org] unblock: 
debian-installer-netboot-images/20150107
Added tag(s) confirmed.

-- 
776928: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776928
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b776928.14258435374286.transcr...@bugs.debian.org



Bug#776928: unblock: debian-installer-netboot-images/20150107

2015-03-08 Thread Cyril Brulebois
Control: tag -1 confirmed

Niels Thykier ni...@thykier.net (2015-03-08):
 On 2015-02-09 22:14, Didier 'OdyX' Raboud wrote:
  Hi all,
  
  Le dimanche, 8 février 2015, 21.54:04 Cyril Brulebois a écrit :
  Niels Thykier ni...@thykier.net (2015-02-06):
  [...]
  Since d-i-n-i is basically about collecting files in packages (see
  get-images.sh), and about shipping them through various binaries, this
  kind of things is /possibly/ harmless, but I really didn't check
  anything. It would probably be helpful to double check that dh 7 and
  dh 9 lead to identical binaries, and maybe think about letting this
  change slide with the rest (but so far I really have no opinion on
  this).
  
  So I've gone and done that (twice), the result of all debdiffs is exactl 
  identical:
  
  File lists identical (after any substitutions)
 
  No differences were encountered between the control files
  
  This show that the change (but also that the revert) is harmless. 
  Frankly, I'd find the explicit no-go therefore imposing a revert quite 
  silly in this specific case.
  
  [...]
 
 KiBi, if you (as d-i RM) are happy with that, I am willing to make the
 exception - you are the one that gets to keep the pieces if it breaks. :)

Sure, fair enough; let's do that, ta!

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#780052: nmu: handbrake_0.10.0+dfsg1-2

2015-03-08 Thread Sebastian Ramacher
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

Please binNMU handbrake to pick up dependencies on libx265-43.

nmu handbrake_0.10.0+dfsg1-2 . ALL . experimental . -m Rebuild against libx265 
1.5

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: Digital signature


Bug#779945: unblock: linux/3.16.7-ckt7-1

2015-03-08 Thread Cyril Brulebois
Control: tag -1 confirmed

Niels Thykier ni...@thykier.net (2015-03-06):
 On 2015-03-06 17:25, Ben Hutchings wrote:
  Package: release.debian.org
  Severity: normal
  User: release.debian@packages.debian.org
  Usertags: unblock
  
  Please unblock package linux
  
  - Stable updates 3.16.7-ckt{5,6,7} with many important fixes, including
fix for CVE-2015-1465
  - Additional security fixes: CVE-2015-1420, CVE-2015-1593
  - Hardware enablement
- Olimex A20 OLinuXino LIME2 system
- GPIO-controlled backlights
- Dumb framebuffer on Allwinner SoCs
- Clock fix for Atom E6xx systems
- Sound on some Haswell and Bay Trail based systems
- Areca Raid ARC12x4 SCSI adapter
- Bochs and QXL paravirtual framebuffers
- BananaPro board
  - Fix regression in i915 driver in 3.16.y making some systems unbootable
  - Fix regression in nfsv4 uid/gid translation cache in 3.13
  - Fix regressions in backlight control on some x86 systems in 3.16
  - Configuration changes for alpha and hppa, which you can ignore
  
  The attached debdiff excludes the generated files under debian/abi/,
  debian/config.defines.dump, debian/control, debian/control.md5sum,
  debian/rules.gen and under debian/po/.
  
  This will also require an unblock-udeb.
  
  Ben.
  
  unblock linux/3.16.7-ckt7-1
  
  [...]
 
 Ok from my PoV, CC'ing KiBi for a d-i ack.

No objections, thanks.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#779523: unblock (pre-approval): sudo/1.8.10p3-1+deb8u2

2015-03-08 Thread Christian Kastner
On 2015-03-08 17:25, Niels Thykier wrote:
 On 2015-03-01 22:01, Christian Kastner wrote:

 Excellent, please go ahead and upload this to t-p-u.  Once it has been
 uploaded, please notify us and remove the moreinfo tag.

 Hi Christian,
 
 Any news on this upload to sudo?

Hi Niels,

I pinged Bdale today regarding an upload, and to get his consent for an
NMU if his time does not permit for an upload (earlier this week, he did
give me a heads-up that he would be time-constrained).

I'd like to wait a few days to allow for a response, would that be OK?

In case it needs to get NMU'ed, I believe I have a willing sponsor or
two I could ping for an upload.

Regards,
Christian


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54fcac46.2090...@kvr.at



Processed: Re: Bug#779945: unblock: linux/3.16.7-ckt7-1

2015-03-08 Thread Debian Bug Tracking System
Processing control commands:

 tag -1 confirmed
Bug #779945 [release.debian.org] unblock: linux/3.16.7-ckt7-1
Added tag(s) confirmed.

-- 
779945: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779945
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b779945.14258407352.transcr...@bugs.debian.org



Processed: Re: Bug#776928: unblock: debian-installer-netboot-images/20150107

2015-03-08 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 -moreinfo d-i
Bug #776928 [release.debian.org] unblock: 
debian-installer-netboot-images/20150107
Removed tag(s) moreinfo.

-- 
776928: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776928
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b776928.14258432682844.transcr...@bugs.debian.org



Bug#776928: unblock: debian-installer-netboot-images/20150107

2015-03-08 Thread Niels Thykier
Control: tags -1 -moreinfo d-i

On 2015-02-09 22:14, Didier 'OdyX' Raboud wrote:
 Hi all,
 
 Le dimanche, 8 février 2015, 21.54:04 Cyril Brulebois a écrit :
 Niels Thykier ni...@thykier.net (2015-02-06):
 [...]
 Since d-i-n-i is basically about collecting files in packages (see
 get-images.sh), and about shipping them through various binaries, this
 kind of things is /possibly/ harmless, but I really didn't check
 anything. It would probably be helpful to double check that dh 7 and
 dh 9 lead to identical binaries, and maybe think about letting this
 change slide with the rest (but so far I really have no opinion on
 this).
 
 So I've gone and done that (twice), the result of all debdiffs is exactl 
 identical:
 
 File lists identical (after any substitutions)

 No differences were encountered between the control files
 
 This show that the change (but also that the revert) is harmless. 
 Frankly, I'd find the explicit no-go therefore imposing a revert quite 
 silly in this specific case.
 
 [...]

KiBi, if you (as d-i RM) are happy with that, I am willing to make the
exception - you are the one that gets to keep the pieces if it breaks. :)


Thanks,
~Niels


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54fca43a.1010...@thykier.net



Bug#780016: unblock: debhelper/9.20150101

2015-03-08 Thread Niels Thykier
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please consider unblocking debhelper/9.20150101 as we now have packages
in testing Build-depending on it.

The abridged version of the changes are:
 * Documentation updates and typo fixes
   - Admittedly, this introduces a new translated string.
 * Bump minimum version for dpkg for symlink_to_dir and dir_to_symlink
   dpkg-maintscripts.
 * Noise in po and pot files due to line number changes.
 * Emit a warning (or in compat = 10, an error) when using --link-doc
   between an arch:all and an arch:any package.
   - To my knowledge, no package (except debhelper itself) is using
 compat 10.

If there any of the above changes you consider unsuitable, let me know
so I can revert them (modulo the noise in the po and pot file, which
might be a larger change those files are updated by the clean target).

Attached a debdiff of the changes (extracted by d).  I have
deliberately retained the po and pot changes due to string change.

~Niels
Base version: debhelper_9.20141022 from testing
Target version: debhelper_9.20150101 from unstable

No hints in place.

Excuses:

debhelper (9.20141022 to 9.20150101)
Maintainer: Debhelper Maintainers
65 days old (needed 5 days)
Not touching package due to block request by freeze (check https://release.debian.org/jessie/freeze_policy.html if update is needed)
Not considered

 .gitattributes|1 
 debhelper.pod |8 ++-
 debian/changelog  |   49 
 debian/control|2 
 dh_installdeb |4 -
 dh_installdocs|   11 
 dh_installman |2 
 man/po4a/po/de.po |  108 --
 man/po4a/po/debhelper.pot |  102 +++
 man/po4a/po/es.po |  108 --
 man/po4a/po/fr.po |  108 --
 man/po4a/po/pt.po |  108 --
 12 files changed, 358 insertions(+), 253 deletions(-)

gpgv: keyblock resource `/home/nthykier/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made 2014-10-22T19:03:47 UTC using RSA key ID 2512E3C7
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on /tmp/tmpM6vzxl/debhelper_9.20141022.dsc
gpgv: keyblock resource `/home/nthykier/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made 2015-01-01T16:21:46 UTC using RSA key ID 7D806442
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on /tmp/tmpM6vzxl/debhelper_9.20150101.dsc
diff -Nru debhelper-9.20141022/debhelper.pod debhelper-9.20150101/debhelper.pod
--- debhelper-9.20141022/debhelper.pod	2014-10-10 21:25:15.0 +
+++ debhelper-9.20150101/debhelper.pod	2014-12-29 09:14:08.0 +
@@ -532,12 +532,18 @@
 
 Changes from v9 are:
 
+=over 8
+
 =item -
 
 Bdh_installinit will no longer install a file named debian/Ipackage
 as an init script.
 
-=over 8
+=item -
+
+Bdh_installdocs will error out if it detects links created with
+--link-doc between packages of architecture all and non-all as it
+breaks binNMUs.
 
 =item -
 
diff -Nru debhelper-9.20141022/debian/changelog debhelper-9.20150101/debian/changelog
--- debhelper-9.20141022/debian/changelog	2014-10-22 18:43:30.0 +
+++ debhelper-9.20150101/debian/changelog	2015-01-01 16:17:45.0 +
@@ -1,3 +1,52 @@
+debhelper (9.20150101) unstable; urgency=medium
+
+  [ Niels Thykier ]
+  * Revert detection of unsafe binNMUs under compat 9 and
+earlier.  It had some false-positives.  (Closes: #773965)
+
+  [ Axel Beckert ]
+  * Document that dh_installdocs will error out on --link-doc
+between arch:all and arch:any packages in man 7 debhelper.
+
+ -- Niels Thykier ni...@thykier.net  Thu, 01 Jan 2015 17:05:01 +0100
+
+debhelper (9.20141222) unstable; urgency=medium
+
+  * Add missing entry about #747141.
+  * Fix typo in comment in dh_installman.  Thanks to Raphael
+Geissert for spotting it.  (Closes: #772502)
+
+ -- Niels Thykier ni...@thykier.net  Mon, 22 Dec 2014 01:02:52 +0100
+
+debhelper (9.20141221) unstable; urgency=medium
+
+  [ Niels Thykier ]
+  * New debhelper maintainers.  (Closes: #768507)
+- Add Niels Thykier to uploaders.
+  * dh_installdeb: Raise required dpkg version for dir_to_symlink to
+1.17.13 (see #769843, msg #10).  Thanks to Guillem Jover.
+  * Refuse to build packages using --link-doc between arch:any and
+arch:all packages (or vice versa) as it results in broken
+packages.
+- In compat 9 or less: Only during an actual binNMU.
+- In compat 10 or newer: Unconditionally.
+(Closes: #747141)
+
+  [ Bernhard R. Link ]
+- Add Bernhard Link to uploaders.
+
+  [ Axel Beckert ]
+  * dh_installdeb: Raise required dpkg version 

Bug#780018: unblock: grub2/2.02~beta2-21

2015-03-08 Thread Niels Thykier
Control: tags -1 d-i

On 2015-03-08 10:20, Colin Watson wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock grub2.  Niels and Cyril have both asked about this
 recently, and it makes sense: one RC bug fix for powerpc, one important
 bug fix requested by the CD team, and one cherry-pick to fix load_env if
 the grubenv file spans more than one block.  I'm not aware of any new
 issues caused by this.
 

Thanks, :)

Looks good to me, Cc'ing KiBi for a d-i ack (keeping the debdiff for his
convenience below).

Thanks (and eom from me),
~Niels

 diff -Nru grub2-2.02~beta2/debian/.git-dpm grub2-2.02~beta2/debian/.git-dpm
 --- grub2-2.02~beta2/debian/.git-dpm  2015-01-03 12:21:02.0 +
 +++ grub2-2.02~beta2/debian/.git-dpm  2015-01-27 20:33:00.0 +
 @@ -1,6 +1,6 @@
  # see git-dpm(1) from git-dpm package
 -cbc80b2e595a7c4938dabd8264c2ff6a26eb4863
 -cbc80b2e595a7c4938dabd8264c2ff6a26eb4863
 +9d4f1601e187894da565f4573b5d174dcf586cd6
 +9d4f1601e187894da565f4573b5d174dcf586cd6
  e8f07821cce1bd0ab6d5622c2a42440f15f4fd71
  e8f07821cce1bd0ab6d5622c2a42440f15f4fd71
  grub2_2.02~beta2.orig.tar.xz
 diff -Nru grub2-2.02~beta2/debian/changelog grub2-2.02~beta2/debian/changelog
 --- grub2-2.02~beta2/debian/changelog 2015-01-03 12:39:53.0 +
 +++ grub2-2.02~beta2/debian/changelog 2015-01-27 20:37:09.0 +
 @@ -1,3 +1,20 @@
 +grub2 (2.02~beta2-21) unstable; urgency=medium
 +
 +  [ Mathieu Trudel-Lapierre ]
 +  * Fix overlap check in check_blocklists for load_env (backported patch
 +from upstream commit 1f6af2a9; LP: #1311247).
 +
 +  [ Steve McIntyre ]
 +  * Add support for running a 64-bit Linux kernel on a 32-bit EFI (closes:
 +#775202).
 +
 +  [ Colin Watson ]
 +  * Use mtmsr rather than mtmsrd in ppc64el-disable-vsx.patch, since the
 +VSX Available bit is in the lower half of the MSR anyway, and mtmsrd
 +faults on 32-bit systems (closes: #776400).
 +
 + -- Colin Watson cjwat...@debian.org  Tue, 27 Jan 2015 20:37:04 +
 +
  grub2 (2.02~beta2-20) unstable; urgency=medium
  
[ Colin Watson ]
 diff -Nru grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch 
 grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch
 --- grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch
 1970-01-01 01:00:00.0 +0100
 +++ grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch
 2015-01-27 20:33:00.0 +
 @@ -0,0 +1,47 @@
 +From 2a54e1b19aa1e080f9795a00d7381c0be85b2a4b Mon Sep 17 00:00:00 2001
 +From: =?UTF-8?q?=D0=A0=D0=BE=D0=BC=D0=B0=D0=BD=20=D0=9F=D0=B5=D1=85=D0=BE?=
 + =?UTF-8?q?=D0=B2?= roman_pekhov
 +Date: Sun, 22 Jun 2014 03:51:50 +0400
 +Subject: * grub-core/commands/loadenv.c (check_blocklists): Fix overlap 
 check.
 +
 +Bug: http://savannah.gnu.org/bugs/?42134
 +Bug-Ubuntu: https://bugs.launchpad.net/bugs/1311247
 +Origin: upstream, 
 http://git.savannah.gnu.org/cgit/grub.git/commit/?id=1f6af2a9f8b02a71f213b4717d8e62c8a6b14fc5
 +Last-Update: 2015-01-23
 +
 +Patch-Name: check_blocklists_overlap_fix.patch
 +---
 + grub-core/commands/loadenv.c | 13 ++---
 + 1 file changed, 2 insertions(+), 11 deletions(-)
 +
 +diff --git a/grub-core/commands/loadenv.c b/grub-core/commands/loadenv.c
 +index 6af8112..acd93d1 100644
 +--- a/grub-core/commands/loadenv.c
  b/grub-core/commands/loadenv.c
 +@@ -263,7 +263,7 @@ check_blocklists (grub_envblk_t envblk, struct blocklist 
 *blocklists,
 +   for (q = p-next; q; q = q-next)
 + {
 +   grub_disk_addr_t s1, s2;
 +-  grub_disk_addr_t e1, e2, t;
 ++  grub_disk_addr_t e1, e2;
 + 
 +   s1 = p-sector;
 +   e1 = s1 + ((p-length + GRUB_DISK_SECTOR_SIZE - 1)  
 GRUB_DISK_SECTOR_BITS);
 +@@ -271,16 +271,7 @@ check_blocklists (grub_envblk_t envblk, struct 
 blocklist *blocklists,
 +   s2 = q-sector;
 +   e2 = s2 + ((q-length + GRUB_DISK_SECTOR_SIZE - 1)  
 GRUB_DISK_SECTOR_BITS);
 + 
 +-  if (s2  s1)
 +-{
 +-  t = s2;
 +-  s2 = s1;
 +-  s1 = t;
 +-  t = e2;
 +-  e2 = e1;
 +-  e1 = t;
 +-}
 +-  if (e1  s2)
 ++  if (s1  e2  s2  e1)
 + {
 +   /* This might be actually valid, but it is unbelievable that
 +  any filesystem makes such a silly allocation.  */
 diff -Nru grub2-2.02~beta2/debian/patches/gettext-print-typo.patch 
 grub2-2.02~beta2/debian/patches/gettext-print-typo.patch
 --- grub2-2.02~beta2/debian/patches/gettext-print-typo.patch  2015-01-03 
 12:21:00.0 +
 +++ grub2-2.02~beta2/debian/patches/gettext-print-typo.patch  2015-01-27 
 20:33:00.0 +
 @@ -1,4 +1,4 @@
 -From 20886bef9351d5c20a9de1fb3339fe40114f01d1 Mon Sep 17 00:00:00 2001
 +From 34411ff593136ce78ab5c21706dfb7ae3655a16f Mon Sep 17 00:00:00 2001
  From: Andrey Borzenkov arvidj...@gmail.com
  Date: Thu, 14 Aug 2014 21:02:31 +0400
  

Processed: Re: Bug#780018: unblock: grub2/2.02~beta2-21

2015-03-08 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 d-i
Bug #780018 [release.debian.org] unblock: grub2/2.02~beta2-21
Added tag(s) d-i.

-- 
780018: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780018
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b780018.142580804122458.transcr...@bugs.debian.org



Bug#780018: unblock: grub2/2.02~beta2-21

2015-03-08 Thread Colin Watson
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock grub2.  Niels and Cyril have both asked about this
recently, and it makes sense: one RC bug fix for powerpc, one important
bug fix requested by the CD team, and one cherry-pick to fix load_env if
the grubenv file spans more than one block.  I'm not aware of any new
issues caused by this.

diff -Nru grub2-2.02~beta2/debian/.git-dpm grub2-2.02~beta2/debian/.git-dpm
--- grub2-2.02~beta2/debian/.git-dpm2015-01-03 12:21:02.0 +
+++ grub2-2.02~beta2/debian/.git-dpm2015-01-27 20:33:00.0 +
@@ -1,6 +1,6 @@
 # see git-dpm(1) from git-dpm package
-cbc80b2e595a7c4938dabd8264c2ff6a26eb4863
-cbc80b2e595a7c4938dabd8264c2ff6a26eb4863
+9d4f1601e187894da565f4573b5d174dcf586cd6
+9d4f1601e187894da565f4573b5d174dcf586cd6
 e8f07821cce1bd0ab6d5622c2a42440f15f4fd71
 e8f07821cce1bd0ab6d5622c2a42440f15f4fd71
 grub2_2.02~beta2.orig.tar.xz
diff -Nru grub2-2.02~beta2/debian/changelog grub2-2.02~beta2/debian/changelog
--- grub2-2.02~beta2/debian/changelog   2015-01-03 12:39:53.0 +
+++ grub2-2.02~beta2/debian/changelog   2015-01-27 20:37:09.0 +
@@ -1,3 +1,20 @@
+grub2 (2.02~beta2-21) unstable; urgency=medium
+
+  [ Mathieu Trudel-Lapierre ]
+  * Fix overlap check in check_blocklists for load_env (backported patch
+from upstream commit 1f6af2a9; LP: #1311247).
+
+  [ Steve McIntyre ]
+  * Add support for running a 64-bit Linux kernel on a 32-bit EFI (closes:
+#775202).
+
+  [ Colin Watson ]
+  * Use mtmsr rather than mtmsrd in ppc64el-disable-vsx.patch, since the
+VSX Available bit is in the lower half of the MSR anyway, and mtmsrd
+faults on 32-bit systems (closes: #776400).
+
+ -- Colin Watson cjwat...@debian.org  Tue, 27 Jan 2015 20:37:04 +
+
 grub2 (2.02~beta2-20) unstable; urgency=medium
 
   [ Colin Watson ]
diff -Nru grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch 
grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch
--- grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch  
1970-01-01 01:00:00.0 +0100
+++ grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch  
2015-01-27 20:33:00.0 +
@@ -0,0 +1,47 @@
+From 2a54e1b19aa1e080f9795a00d7381c0be85b2a4b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?=D0=A0=D0=BE=D0=BC=D0=B0=D0=BD=20=D0=9F=D0=B5=D1=85=D0=BE?=
+ =?UTF-8?q?=D0=B2?= roman_pekhov
+Date: Sun, 22 Jun 2014 03:51:50 +0400
+Subject: * grub-core/commands/loadenv.c (check_blocklists): Fix overlap check.
+
+Bug: http://savannah.gnu.org/bugs/?42134
+Bug-Ubuntu: https://bugs.launchpad.net/bugs/1311247
+Origin: upstream, 
http://git.savannah.gnu.org/cgit/grub.git/commit/?id=1f6af2a9f8b02a71f213b4717d8e62c8a6b14fc5
+Last-Update: 2015-01-23
+
+Patch-Name: check_blocklists_overlap_fix.patch
+---
+ grub-core/commands/loadenv.c | 13 ++---
+ 1 file changed, 2 insertions(+), 11 deletions(-)
+
+diff --git a/grub-core/commands/loadenv.c b/grub-core/commands/loadenv.c
+index 6af8112..acd93d1 100644
+--- a/grub-core/commands/loadenv.c
 b/grub-core/commands/loadenv.c
+@@ -263,7 +263,7 @@ check_blocklists (grub_envblk_t envblk, struct blocklist 
*blocklists,
+   for (q = p-next; q; q = q-next)
+ {
+ grub_disk_addr_t s1, s2;
+-grub_disk_addr_t e1, e2, t;
++grub_disk_addr_t e1, e2;
+ 
+ s1 = p-sector;
+ e1 = s1 + ((p-length + GRUB_DISK_SECTOR_SIZE - 1)  
GRUB_DISK_SECTOR_BITS);
+@@ -271,16 +271,7 @@ check_blocklists (grub_envblk_t envblk, struct blocklist 
*blocklists,
+ s2 = q-sector;
+ e2 = s2 + ((q-length + GRUB_DISK_SECTOR_SIZE - 1)  
GRUB_DISK_SECTOR_BITS);
+ 
+-if (s2  s1)
+-  {
+-t = s2;
+-s2 = s1;
+-s1 = t;
+-t = e2;
+-e2 = e1;
+-e1 = t;
+-  }
+-  if (e1  s2)
++if (s1  e2  s2  e1)
+ {
+   /* This might be actually valid, but it is unbelievable that
+  any filesystem makes such a silly allocation.  */
diff -Nru grub2-2.02~beta2/debian/patches/gettext-print-typo.patch 
grub2-2.02~beta2/debian/patches/gettext-print-typo.patch
--- grub2-2.02~beta2/debian/patches/gettext-print-typo.patch2015-01-03 
12:21:00.0 +
+++ grub2-2.02~beta2/debian/patches/gettext-print-typo.patch2015-01-27 
20:33:00.0 +
@@ -1,4 +1,4 @@
-From 20886bef9351d5c20a9de1fb3339fe40114f01d1 Mon Sep 17 00:00:00 2001
+From 34411ff593136ce78ab5c21706dfb7ae3655a16f Mon Sep 17 00:00:00 2001
 From: Andrey Borzenkov arvidj...@gmail.com
 Date: Thu, 14 Aug 2014 21:02:31 +0400
 Subject: Fix typo (gettext_print instead of gettext_printf)
diff -Nru grub2-2.02~beta2/debian/patches/grub-install-extra-removable.patch 
grub2-2.02~beta2/debian/patches/grub-install-extra-removable.patch
--- grub2-2.02~beta2/debian/patches/grub-install-extra-removable.patch  
2015-01-03 

Bug#780016: marked as done (unblock: debhelper/9.20150101)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 8 Mar 2015 11:22:47 +0100
with message-id 20150308102246.ga13...@ugent.be
and subject line Re: Bug#780016: unblock: debhelper/9.20150101
has caused the Debian Bug report #780016,
regarding unblock: debhelper/9.20150101
to be marked as done.

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

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


-- 
780016: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780016
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please consider unblocking debhelper/9.20150101 as we now have packages
in testing Build-depending on it.

The abridged version of the changes are:
 * Documentation updates and typo fixes
   - Admittedly, this introduces a new translated string.
 * Bump minimum version for dpkg for symlink_to_dir and dir_to_symlink
   dpkg-maintscripts.
 * Noise in po and pot files due to line number changes.
 * Emit a warning (or in compat = 10, an error) when using --link-doc
   between an arch:all and an arch:any package.
   - To my knowledge, no package (except debhelper itself) is using
 compat 10.

If there any of the above changes you consider unsuitable, let me know
so I can revert them (modulo the noise in the po and pot file, which
might be a larger change those files are updated by the clean target).

Attached a debdiff of the changes (extracted by d).  I have
deliberately retained the po and pot changes due to string change.

~Niels
Base version: debhelper_9.20141022 from testing
Target version: debhelper_9.20150101 from unstable

No hints in place.

Excuses:

debhelper (9.20141022 to 9.20150101)
Maintainer: Debhelper Maintainers
65 days old (needed 5 days)
Not touching package due to block request by freeze (check https://release.debian.org/jessie/freeze_policy.html if update is needed)
Not considered

 .gitattributes|1 
 debhelper.pod |8 ++-
 debian/changelog  |   49 
 debian/control|2 
 dh_installdeb |4 -
 dh_installdocs|   11 
 dh_installman |2 
 man/po4a/po/de.po |  108 --
 man/po4a/po/debhelper.pot |  102 +++
 man/po4a/po/es.po |  108 --
 man/po4a/po/fr.po |  108 --
 man/po4a/po/pt.po |  108 --
 12 files changed, 358 insertions(+), 253 deletions(-)

gpgv: keyblock resource `/home/nthykier/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made 2014-10-22T19:03:47 UTC using RSA key ID 2512E3C7
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on /tmp/tmpM6vzxl/debhelper_9.20141022.dsc
gpgv: keyblock resource `/home/nthykier/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made 2015-01-01T16:21:46 UTC using RSA key ID 7D806442
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on /tmp/tmpM6vzxl/debhelper_9.20150101.dsc
diff -Nru debhelper-9.20141022/debhelper.pod debhelper-9.20150101/debhelper.pod
--- debhelper-9.20141022/debhelper.pod	2014-10-10 21:25:15.0 +
+++ debhelper-9.20150101/debhelper.pod	2014-12-29 09:14:08.0 +
@@ -532,12 +532,18 @@
 
 Changes from v9 are:
 
+=over 8
+
 =item -
 
 Bdh_installinit will no longer install a file named debian/Ipackage
 as an init script.
 
-=over 8
+=item -
+
+Bdh_installdocs will error out if it detects links created with
+--link-doc between packages of architecture all and non-all as it
+breaks binNMUs.
 
 =item -
 
diff -Nru debhelper-9.20141022/debian/changelog debhelper-9.20150101/debian/changelog
--- debhelper-9.20141022/debian/changelog	2014-10-22 18:43:30.0 +
+++ debhelper-9.20150101/debian/changelog	2015-01-01 16:17:45.0 +
@@ -1,3 +1,52 @@
+debhelper (9.20150101) unstable; urgency=medium
+
+  [ Niels Thykier ]
+  * Revert detection of unsafe binNMUs under compat 9 and
+earlier.  It had some false-positives.  (Closes: #773965)
+
+  [ Axel Beckert ]
+  * Document that dh_installdocs will error out on --link-doc
+between arch:all and arch:any packages in man 7 debhelper.
+
+ -- Niels Thykier ni...@thykier.net  Thu, 01 Jan 2015 17:05:01 +0100
+
+debhelper (9.20141222) unstable; urgency=medium
+
+  * Add missing entry about #747141.
+  * Fix typo in comment in dh_installman.  Thanks to Raphael
+ 

Bug#780070: unblock: u-boot/2014.10+dfsg1-4

2015-03-08 Thread Vagrant Cascadian
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Thanks for all your work on the release team!

Please unblock package u-boot

It includes backported support for two new armhf capable boards,
BananaPro and A20-OlinuXino-LIME2.  Lintian overrides appropriate for
these two boards were also added.  Support for these boards has also
been backported to linux, and enabled in debian-installer and
flash-kernel. Adding support in u-boot would make these boards fully
supported in jessie.

Addition of these two boards should pose no problems for other existing
builds, and only increases the size of the u-boot-sunxi package by about
2MB.

The new version also fixes a FTBFS issue when built using newer versions
of patch, as the cubox-i-support patch included a redundant file that
was already present in the sources, and patch no longer supports this
due to security issues (see bugs #777520 and #777518 for details on
that).

There was also a porter NMU done with a one-line patch to fix FTBFS on
sh4, which is included in the uploads since the version in jessie.

Unfortunately, There was some patch cruft in 2014.10+dfsg1-2 and one
added in 2014.10+dfsg1-4, which I've filtered out with filterdiff in the
debdiff below:

$ debdiff u-boot_2014.10+dfsg1-2.dsc u-boot_2014.10+dfsg1-4.dsc  | filterdiff 
--exclude=u-boot-2014.10+dfsg1/debian/patches/patches/* 
--exclude=u-boot-2014.10+dfsg1/debian/0001*.patch

diff -Nru 
u-boot-2014.10+dfsg1/debian/0001-Backport-support-for-the-LeMaker-Banana-Pro-board-fr.patch
 
u-boot-2014.10+dfsg1/debian/0001-Backport-support-for-the-LeMaker-Banana-Pro-board-fr.patch
diff -Nru u-boot-2014.10+dfsg1/debian/changelog 
u-boot-2014.10+dfsg1/debian/changelog
--- u-boot-2014.10+dfsg1/debian/changelog   2014-11-01 16:38:54.0 
-0700
+++ u-boot-2014.10+dfsg1/debian/changelog   2015-03-08 11:13:14.0 
-0700
@@ -1,3 +1,32 @@
+u-boot (2014.10+dfsg1-4) unstable; urgency=medium
+
+  [ Karsten Merker ]
+  * Backport support for the LeMaker Banana Pro board (Closes: #779908).
+
+  [ Vagrant Cascadian ]
+  * Update lintian rules for BananaPro and A20-OlinuXino-LIME2.
+
+ -- Vagrant Cascadian vagr...@debian.org  Sun, 08 Mar 2015 11:13:07 -0700
+
+u-boot (2014.10+dfsg1-3) unstable; urgency=medium
+
+  * cubox-i-support.diff: Refresh patch, dropping solidrun.bmp, which
+causes FTBFS with newer version of patch (Closes: #777518).
+
+  * Add patch to support A20-OLinuXino-LIME2, backported from u-boot
+2015.01. Thanks to Karsten Merker for the patch (Closes: #777466).
+
+ -- Vagrant Cascadian vagr...@debian.org  Sat, 21 Feb 2015 13:13:31 -0800
+
+u-boot (2014.10+dfsg1-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * debian/patches:
+- Add sh4-fix-linker-name-prefix.patch to use the proper
+  linker name prefix on sh4. Fixes FTBFS. (Closes: #771747)
+
+ -- John Paul Adrian Glaubitz glaub...@physik.fu-berlin.de  Thu, 11 Dec 2014 
00:00:08 +0100
+
 u-boot (2014.10+dfsg1-2) unstable; urgency=medium
 
   [ Steve Langasek ]
diff -Nru 
u-boot-2014.10+dfsg1/debian/patches/A20-OLinuXino-LIME2/sun7i-Add-support-for-Olimex-A20-OLinuXino-LIME2.patch
 
u-boot-2014.10+dfsg1/debian/patches/A20-OLinuXino-LIME2/sun7i-Add-support-for-Olimex-A20-OLinuXino-LIME2.patch
--- 
u-boot-2014.10+dfsg1/debian/patches/A20-OLinuXino-LIME2/sun7i-Add-support-for-Olimex-A20-OLinuXino-LIME2.patch
  1969-12-31 16:00:00.0 -0800
+++ 
u-boot-2014.10+dfsg1/debian/patches/A20-OLinuXino-LIME2/sun7i-Add-support-for-Olimex-A20-OLinuXino-LIME2.patch
  2015-03-08 11:03:53.0 -0700
@@ -0,0 +1,99 @@
+From d71910fc509933fab881f85ae244ea95525a41d6 Mon Sep 17 00:00:00 2001
+From: Iain Paton ipat...@gmail.com
+Date: Sun, 28 Sep 2014 14:18:42 +0100
+Subject: [PATCH 1/1] sun7i: Add support for Olimex A20-OLinuXino-LIME2
+Origin: 
http://git.denx.de/?p=u-boot.git;a=patch;h=d71910fc509933fab881f85ae244ea95525a41d6;hp=5b3ee386fde82a1ba42ff09b95247842c9a1585e
+
+This adds support for the Olimex A20-OLinuXino-Lime2
+https://www.olimex.com/Products/OLinuXino/A20/A20-OLinuXIno-LIME2
+
+Differences to previous Lime boards are 1GB RAM and gigabit ethernet
+
+Signed-off-by: Iain Paton ipat...@gmail.com
+Signed-off-by: Hans de Goede hdego...@redhat.com
+---
+ board/sunxi/MAINTAINERS   |6 ++
+ board/sunxi/Makefile  |1 +
+ board/sunxi/dram_a20_olinuxino_l2.c   |   31 +++
+ configs/A20-OLinuXino-Lime2_defconfig |5 +
+ 4 files changed, 43 insertions(+)
+ create mode 100644 board/sunxi/dram_a20_olinuxino_l2.c
+ create mode 100644 configs/A20-OLinuXino-Lime2_defconfig
+
+diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
+index 4f32195..4ed82cf 100644
+--- a/board/sunxi/MAINTAINERS
 b/board/sunxi/MAINTAINERS
+@@ -38,3 +38,9 @@ M:   FUKAUMI Naoki nao...@gmail.com
+ S:Maintained
+ F:board/sunxi/dram_a20_olinuxino_l.c
+ F:

Re: Hints for d-i jessie RC2, part 1

2015-03-08 Thread Michael Gilbert
On Thu, Mar 5, 2015 at 1:07 AM, Cyril Brulebois wrote:
 Hi people,

 here's a first round of unblock/unblock-udeb hints for the upcoming d-i
 jessie RC2. Don't hesitate to ask questions if anything looks fishy.

Cyril,

Would it be possible also to unblock ndisc6 in time for RC2?  I saw no
problems in my test installs (bug #778492), but I guess it could be
good to get wider testing before the final jessie d-i.

Best wishes,
Mike


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CANTw=mn3uasvke2kiz5bn65-+atgwxev1zp3u_nfrghromn...@mail.gmail.com



Bug#780072: unblock: gdm3/3.14.1-5

2015-03-08 Thread Simon McVittie
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please update the existing unblock for gdm3 to 3.14.1-5. I applied a
one-character change relative to my earlier upload, fixing a regression
reported by Josh Triplett: the patch I pulled in from upstream made
/etc/default/locale mandatory, where it should have been optional.

unblock gdm3/3.14.1-5

Debdiffs from the current jessie version, and the version that nthykier
already unblocked, attached.

Thanks,
S
diffstat for gdm3-3.14.1 gdm3-3.14.1

 changelog|   18 
 control  |2 
 control.in   |2 
 patches/95_systemd-import-language-into-daemon-environment.patch |   38 ++
 patches/series   |1 
 5 files changed, 61 insertions(+)

diff -Nru gdm3-3.14.1/debian/changelog gdm3-3.14.1/debian/changelog
--- gdm3-3.14.1/debian/changelog	2014-11-09 17:16:03.0 +
+++ gdm3-3.14.1/debian/changelog	2015-03-08 11:53:20.0 +
@@ -1,3 +1,21 @@
+gdm3 (3.14.1-5) unstable; urgency=medium
+
+  * Do not fail to start gdm if /etc/default/locale does not exist
+(Closes: #779989)
+
+ -- Simon McVittie s...@debian.org  Sun, 08 Mar 2015 11:52:40 +
+
+gdm3 (3.14.1-4) unstable; urgency=medium
+
+  * Team upload.
+  * gdm3 Conflicts/Replaces: gdm again, to ensure that obsolete gdm packages
+from squeeze get cleaned up by upgrading wheezy to jessie
+(Closes: #774889)
+  * 95_systemd-import-language-into-daemon-environment.patch:
+put the default system locale in gdm's environment (Closes: #644047)
+
+ -- Simon McVittie s...@debian.org  Thu, 05 Mar 2015 21:59:26 +
+
 gdm3 (3.14.1-3) unstable; urgency=medium
 
   * 18_all_displays_transient.patch: fix autologin for the initial 
diff -Nru gdm3-3.14.1/debian/control gdm3-3.14.1/debian/control
--- gdm3-3.14.1/debian/control	2014-11-09 17:33:48.0 +
+++ gdm3-3.14.1/debian/control	2015-03-08 11:53:51.0 +
@@ -91,6 +91,8 @@
 Suggests: libpam-gnome-keyring,
   gnome-orca
 Provides: x-display-manager
+Conflicts: gdm
+Replaces: gdm
 Breaks: gnome-panel ( 3.0),
 gnome-screensaver ( 2.17.7),
 gnome-orca ( 2.30.0-2),
diff -Nru gdm3-3.14.1/debian/control.in gdm3-3.14.1/debian/control.in
--- gdm3-3.14.1/debian/control.in	2014-10-07 23:37:27.0 +0100
+++ gdm3-3.14.1/debian/control.in	2015-03-05 21:34:18.0 +
@@ -87,6 +87,8 @@
 Suggests: libpam-gnome-keyring,
   gnome-orca
 Provides: x-display-manager
+Conflicts: gdm
+Replaces: gdm
 Breaks: gnome-panel ( 3.0),
 gnome-screensaver ( 2.17.7),
 gnome-orca ( 2.30.0-2),
diff -Nru gdm3-3.14.1/debian/patches/95_systemd-import-language-into-daemon-environment.patch gdm3-3.14.1/debian/patches/95_systemd-import-language-into-daemon-environment.patch
--- gdm3-3.14.1/debian/patches/95_systemd-import-language-into-daemon-environment.patch	1970-01-01 01:00:00.0 +0100
+++ gdm3-3.14.1/debian/patches/95_systemd-import-language-into-daemon-environment.patch	2015-03-08 11:53:20.0 +
@@ -0,0 +1,38 @@
+From: Ray Strode rstr...@redhat.com
+Date: Fri, 27 Feb 2015 13:39:35 -0500
+Subject: [PATCH] systemd: import language into daemon environment
+
+By default GDM is started with a pretty blank environment.
+
+This commit makes sure that the default locale for the
+system is used.
+
+Bug: https://bugzilla.gnome.org/show_bug.cgi?id=745286
+Bug-Debian: https://bugs.debian.org/774889
+Applied-upstream: 3.16, commit:fbb922c
+[smcv: cherry-picked to 3.14 branch; do not fail if locale file does not exist]
+---
+ data/Makefile.am| 1 +
+ data/gdm.service.in | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git a/data/Makefile.am b/data/Makefile.am
+index 1b79bc3..d30eed2 100644
+--- a/data/Makefile.am
 b/data/Makefile.am
+@@ -197,6 +197,7 @@ gdm.service: $(srcdir)/gdm.service.in
+ 	$(AM_V_GEN)sed \
+ 		-e 's,[@]sbindir[@],$(sbindir),g' \
+ 		-e 's,[@]GDM_INITIAL_VT[@],$(GDM_INITIAL_VT),g' \
++		-e 's,[@]LANG_CONFIG_FILE[@],$(LANG_CONFIG_FILE),g' \
+ 		 $  $@
+ systemdsystemunit += gdm.service
+ CLEANFILES += gdm.service
+diff --git a/data/gdm.service.in b/data/gdm.service.in
+index df8bc09..cecdb2c 100644
+--- a/data/gdm.service.in
 b/data/gdm.service.in
+@@ -10,2 +10,3 @@ IgnoreSIGPIPE=no
+ StandardOutput=syslog
+ StandardError=inherit
++EnvironmentFile=-@LANG_CONFIG_FILE@
diff -Nru gdm3-3.14.1/debian/patches/series gdm3-3.14.1/debian/patches/series
--- gdm3-3.14.1/debian/patches/series	2014-11-08 19:57:55.0 +
+++ gdm3-3.14.1/debian/patches/series	2015-03-05 21:57:33.0 +
@@ -9,3 +9,4 @@
 92_systemd_unit.patch
 93_disable_gvfs.patch
 94_retain_xorg_log.patch
+95_systemd-import-language-into-daemon-environment.patch
diffstat for gdm3-3.14.1 gdm3-3.14.1

 changelog 

Bug#780085: unblock: marco/1.8.2+dfsg1-5

2015-03-08 Thread Mike Gabriel
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package marco

+  * debian/patches:
++ Add 0006_correct-name-for-missing-icon.patch. Use correct name for
+  missing icon. (Closes: #778824).

- Fix crashes if marco tries to load incorrect missing icon.

As discussed with Niels in private mails, I have already uploaded this package.

NOTE: other than the previous unblock request for marco/1.8.2+dfsg1-5,
this package does not contain any glib-2.43 related patchwork.


light+love,
Mike

unblock marco/1.8.2+dfsg1-5

-- System Information:
Debian Release: 8.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'testing-updates'), (500, 
'testing-proposed-updates'), (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)
diff -Nru marco-1.8.2+dfsg1/debian/changelog marco-1.8.2+dfsg1/debian/changelog
--- marco-1.8.2+dfsg1/debian/changelog	2015-03-09 06:00:01.0 +0100
+++ marco-1.8.2+dfsg1/debian/changelog	2015-03-09 06:04:33.0 +0100
@@ -1,3 +1,11 @@
+marco (1.8.2+dfsg1-5) unstable; urgency=medium
+
+  * debian/patches:
++ Add 0006_correct-name-for-missing-icon.patch. Use correct name for
+  missing icon. (Closes: #778824).
+
+ -- Mike Gabriel sunwea...@debian.org  Mon, 09 Mar 2015 05:54:08 +0100
+
 marco (1.8.2+dfsg1-4) unstable; urgency=medium
 
   * debian/patches:
diff -Nru marco-1.8.2+dfsg1/debian/patches/0006_correct-name-for-missing-icon.patch marco-1.8.2+dfsg1/debian/patches/0006_correct-name-for-missing-icon.patch
--- marco-1.8.2+dfsg1/debian/patches/0006_correct-name-for-missing-icon.patch	1970-01-01 01:00:00.0 +0100
+++ marco-1.8.2+dfsg1/debian/patches/0006_correct-name-for-missing-icon.patch	2015-03-09 06:00:30.0 +0100
@@ -0,0 +1,32 @@
+From 429ec1ec0f4e890bac3550db41d13bb07398a952 Mon Sep 17 00:00:00 2001
+From: monsta mon...@inbox.ru
+Date: Fri, 20 Feb 2015 13:25:24 +0300
+Subject: [PATCH] ui: use correct name for missing icon
+
+---
+ src/ui/ui.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/ui/ui.c b/src/ui/ui.c
+index c170adb..ce860ca 100644
+--- a/src/ui/ui.c
 b/src/ui/ui.c
+@@ -846,7 +846,7 @@ meta_ui_get_default_window_icon (MetaUI *ui)
+NULL);
+   else
+   default_icon = gtk_icon_theme_load_icon (theme,
+-   gtk-missing-image,
++   image-missing,
+META_ICON_WIDTH,
+0,
+NULL);
+@@ -881,7 +881,7 @@ meta_ui_get_default_mini_icon (MetaUI *ui)
+NULL);
+   else
+   default_icon = gtk_icon_theme_load_icon (theme,
+-   gtk-missing-image,
++   image-missing,
+META_MINI_ICON_WIDTH,
+0,
+NULL);
+
diff -Nru marco-1.8.2+dfsg1/debian/patches/series marco-1.8.2+dfsg1/debian/patches/series
--- marco-1.8.2+dfsg1/debian/patches/series	2015-03-09 06:00:15.0 +0100
+++ marco-1.8.2+dfsg1/debian/patches/series	2015-03-09 06:00:30.0 +0100
@@ -3,4 +3,5 @@
 0003_no-shadows-to-ARGB-windows.patch
 0004_dont-switch-workspace-when-switching-to-sticky-window.patch
 0005_fix-resizing-csd-windows.patch
+0006_correct-name-for-missing-icon.patch
 2001_omit-gfdl-licensed-theme-documentation.patch


Bug#780018: marked as done (unblock: grub2/2.02~beta2-21)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 08 Mar 2015 12:11:43 +0100
with message-id 54fc2e6f.90...@thykier.net
and subject line Re: Bug#780018: unblock: grub2/2.02~beta2-21
has caused the Debian Bug report #780018,
regarding unblock: grub2/2.02~beta2-21
to be marked as done.

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

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


-- 
780018: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780018
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock grub2.  Niels and Cyril have both asked about this
recently, and it makes sense: one RC bug fix for powerpc, one important
bug fix requested by the CD team, and one cherry-pick to fix load_env if
the grubenv file spans more than one block.  I'm not aware of any new
issues caused by this.

diff -Nru grub2-2.02~beta2/debian/.git-dpm grub2-2.02~beta2/debian/.git-dpm
--- grub2-2.02~beta2/debian/.git-dpm2015-01-03 12:21:02.0 +
+++ grub2-2.02~beta2/debian/.git-dpm2015-01-27 20:33:00.0 +
@@ -1,6 +1,6 @@
 # see git-dpm(1) from git-dpm package
-cbc80b2e595a7c4938dabd8264c2ff6a26eb4863
-cbc80b2e595a7c4938dabd8264c2ff6a26eb4863
+9d4f1601e187894da565f4573b5d174dcf586cd6
+9d4f1601e187894da565f4573b5d174dcf586cd6
 e8f07821cce1bd0ab6d5622c2a42440f15f4fd71
 e8f07821cce1bd0ab6d5622c2a42440f15f4fd71
 grub2_2.02~beta2.orig.tar.xz
diff -Nru grub2-2.02~beta2/debian/changelog grub2-2.02~beta2/debian/changelog
--- grub2-2.02~beta2/debian/changelog   2015-01-03 12:39:53.0 +
+++ grub2-2.02~beta2/debian/changelog   2015-01-27 20:37:09.0 +
@@ -1,3 +1,20 @@
+grub2 (2.02~beta2-21) unstable; urgency=medium
+
+  [ Mathieu Trudel-Lapierre ]
+  * Fix overlap check in check_blocklists for load_env (backported patch
+from upstream commit 1f6af2a9; LP: #1311247).
+
+  [ Steve McIntyre ]
+  * Add support for running a 64-bit Linux kernel on a 32-bit EFI (closes:
+#775202).
+
+  [ Colin Watson ]
+  * Use mtmsr rather than mtmsrd in ppc64el-disable-vsx.patch, since the
+VSX Available bit is in the lower half of the MSR anyway, and mtmsrd
+faults on 32-bit systems (closes: #776400).
+
+ -- Colin Watson cjwat...@debian.org  Tue, 27 Jan 2015 20:37:04 +
+
 grub2 (2.02~beta2-20) unstable; urgency=medium
 
   [ Colin Watson ]
diff -Nru grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch 
grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch
--- grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch  
1970-01-01 01:00:00.0 +0100
+++ grub2-2.02~beta2/debian/patches/check_blocklists_overlap_fix.patch  
2015-01-27 20:33:00.0 +
@@ -0,0 +1,47 @@
+From 2a54e1b19aa1e080f9795a00d7381c0be85b2a4b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?=D0=A0=D0=BE=D0=BC=D0=B0=D0=BD=20=D0=9F=D0=B5=D1=85=D0=BE?=
+ =?UTF-8?q?=D0=B2?= roman_pekhov
+Date: Sun, 22 Jun 2014 03:51:50 +0400
+Subject: * grub-core/commands/loadenv.c (check_blocklists): Fix overlap check.
+
+Bug: http://savannah.gnu.org/bugs/?42134
+Bug-Ubuntu: https://bugs.launchpad.net/bugs/1311247
+Origin: upstream, 
http://git.savannah.gnu.org/cgit/grub.git/commit/?id=1f6af2a9f8b02a71f213b4717d8e62c8a6b14fc5
+Last-Update: 2015-01-23
+
+Patch-Name: check_blocklists_overlap_fix.patch
+---
+ grub-core/commands/loadenv.c | 13 ++---
+ 1 file changed, 2 insertions(+), 11 deletions(-)
+
+diff --git a/grub-core/commands/loadenv.c b/grub-core/commands/loadenv.c
+index 6af8112..acd93d1 100644
+--- a/grub-core/commands/loadenv.c
 b/grub-core/commands/loadenv.c
+@@ -263,7 +263,7 @@ check_blocklists (grub_envblk_t envblk, struct blocklist 
*blocklists,
+   for (q = p-next; q; q = q-next)
+ {
+ grub_disk_addr_t s1, s2;
+-grub_disk_addr_t e1, e2, t;
++grub_disk_addr_t e1, e2;
+ 
+ s1 = p-sector;
+ e1 = s1 + ((p-length + GRUB_DISK_SECTOR_SIZE - 1)  
GRUB_DISK_SECTOR_BITS);
+@@ -271,16 +271,7 @@ check_blocklists (grub_envblk_t envblk, struct blocklist 
*blocklists,
+ s2 = q-sector;
+ e2 = s2 + ((q-length + GRUB_DISK_SECTOR_SIZE - 1)  
GRUB_DISK_SECTOR_BITS);
+ 
+-if (s2  s1)
+-  {
+-t = s2;
+-s2 = s1;
+-s1 = t;
+-t = e2;
+-e2 = e1;
+-e1 = t;
+-  }
+-  if (e1  s2)
++if (s1  e2  s2  e1)
+ {
+   /* This might be actually valid, but it is unbelievable that
+  any filesystem makes such a silly allocation.  */
diff -Nru 

Re: Bug#757413: Processed: jessie

2015-03-08 Thread Holger Levsen
Hi Cyril,

On Sonntag, 8. März 2015, Cyril Brulebois wrote:
  Again?
 No argumentation, so removing tags again.

the bug shows up on 
http://udd.debian.org/bugs.cgi?release=wheezyrc=1sortby=idsorto=descctags=1 
- and as thus gets on the radar of people caring about fixing RC bugs in 
stable and AFAICS this bug is not RC for wheezy. So I would like it to not 
show up on that URL...

So, shall we tag it wheezy-ignore instead? (so cc:ing -release@ for input.)


cheers,
Holger


signature.asc
Description: This is a digitally signed message part.


Processed: Re: grub2 for testing?

2015-03-08 Thread Debian Bug Tracking System
Processing control commands:

 tag 780018 confirmed
Bug #780018 [release.debian.org] unblock: grub2/2.02~beta2-21
Added tag(s) confirmed.

-- 
780018: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780018
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b780018.14258108506618.transcr...@bugs.debian.org



Re: Bug#757413: Processed: jessie

2015-03-08 Thread Holger Levsen
Hi,

On Sonntag, 8. März 2015, Cyril Brulebois wrote:
 I'm not sure what your “AFAICS” covers.

literally: as far as I can see...

 I've already explained this code
 has been here for 10 years. People have already complained about this
 against wheezy.

the impact is less severe on wheezy, again AFAIK.

 Can we please try not to sweep it under the rug, and instead try to
 reproduce + fix it?!

Making it not ring unneeded alarms is not sweeping it under the rug. That 
said, I'll leave the bug alone now.


cheers,
Holger




signature.asc
Description: This is a digitally signed message part.


Bug#780026: unblock: rsync/3.1.1-3

2015-03-08 Thread Paul Slootman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package rsync

Hi,
This version has as only feature a fix for CVE-2014-9512: Rsync
path spoofing attack vulnerability. This was reported in #778333.
IMHO this should go into jessie because of this.

$ debdiff rsync_3.1.1-2_amd64.deb rsync_3.1.1-3_amd64.deb
File lists identical (after any substitutions)

Control files: lines which differ (wdiff format)

Installed-Size: [-728-] {+732+}
Version: [-3.1.1-2-] {+3.1.1-3+}

Changelog entry:

rsync (3.1.1-3) unstable; urgency=medium

  * Added patch for CVE-2014-9512, Rsync path spoofing attack vulnerability.
closes:#778333

 -- Paul Slootman p...@debian.org  Sat, 07 Mar 2015 15:45:05 +0100


unblock rsync/3.1.1-3


This version is also signed with my new GPG key.

Thanks,
Paul Slootman


-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.15.6-wurtel-ws (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash
Init: sysvinit (via /sbin/init)


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150308122056.18689.33782.report...@wurtel-ws.home.wurtel.net



Re: Bug#757413: Processed: jessie

2015-03-08 Thread Cyril Brulebois
Holger Levsen hol...@layer-acht.org (2015-03-08):
 On Sonntag, 8. März 2015, Cyril Brulebois wrote:
  I'm not sure what your “AFAICS” covers.
 
 literally: as far as I can see...

Based on what?

  I've already explained this code has been here for 10 years. People
  have already complained about this against wheezy.
 
 the impact is less severe on wheezy, again AFAIK.

Based on what?

  Can we please try not to sweep it under the rug, and instead try to
  reproduce + fix it?!
 
 Making it not ring unneeded alarms is not sweeping it under the rug.
 That said, I'll leave the bug alone now.

Who said they are unneeded? That's what I asked in my first reply. You
didn't mention anything. And now you're tagging that bug report again,
without any further explanations.

Letting that bug report in a proper state means we have a chance that
someone who cares actually investigates the wheezy situation instead of
wild guessing. That means possibly landing a fix in wheezy. That's been
my plan from the start, I'd appreciate not having to fight to keep the
bug report in a suitable state…


KiBi.


signature.asc
Description: Digital signature


Bug#780028: init: aptitude upgrade from wheezy to jessie does not install systemd-sysv

2015-03-08 Thread Paul Wise
Package: init
Version: 1.22
Severity: important
X-Debbugs-CC: debian-release@lists.debian.org, Ansgar Burchardt 
ans...@debian.org, syst...@packages.debian.org

I found an upgrade[1][2] path where sysvinit-core is installed instead
of systemd-sysv, while with aptitude dist-upgrade systemd-sysv gets
installed[3]. Ansgar was able to reproduce it by using a simpler method:

  * create a clean Debian 7.8 install
  * add jessie entries to sources.list
  * aptitude upgrade will want to install sysvinit-core instead of
systemd-sysv.

 1. https://people.debian.org/~pabs/tmp/debian-upgrade
 2. https://people.debian.org/~pabs/tmp/upgrade-and-dist-upgrade
 3. https://people.debian.org/~pabs/tmp/just-dist-upgrade

-- System Information:
Debian Release: 8.0
  APT prefers testing
  APT policy: (900, 'testing'), (890, 'buildd-testing-proposed-updates'), (800, 
'unstable'), (790, 'buildd-unstable'), (700, 'experimental'), (690, 
'buildd-experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_AU.utf8, LC_CTYPE=en_AU.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages init depends on:
ii  systemd-sysv  215-12

init recommends no packages.

init suggests no packages.

-- no debconf information

-- 
bye,
pabs

https://wiki.debian.org/PaulWise



signature.asc
Description: This is a digitally signed message part


Bug#779926: pu: package intel-microcode/1.20150121.1

2015-03-08 Thread Henrique de Moraes Holschuh
On Sat, 07 Mar 2015, Adam D. Barratt wrote:
 Control: tags -1 + pending
 
 On Fri, 2015-03-06 at 17:19 -0300, Henrique de Moraes Holschuh wrote:
  On Fri, Mar 6, 2015, at 15:49, Adam D. Barratt wrote:
   Control: tags -1 + wheezy confirmed
  
  Uploaded.
 
 and flagged for acceptance.

Thank you!

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150308135810.gb9...@khazad-dum.debian.net



Bug#780018: grub2 for testing?

2015-03-08 Thread Cyril Brulebois
Control: tag 780018 confirmed

Colin Watson cjwat...@debian.org (2015-03-08):
 On Thu, Mar 05, 2015 at 06:05:02AM +0100, Cyril Brulebois wrote:
  Should we unblock grub2 2.02~beta2-21 as it stands, or are there any
  possible issues that should be tackled before we consider unblocking it?
 
 Yes, this should be fine.  I've filed an unblock request (#780018).

Great, thanks. Let's d-i ack that.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: Bug#757413: Processed: jessie

2015-03-08 Thread Cyril Brulebois
Holger Levsen hol...@layer-acht.org (2015-03-08):
 On Sonntag, 8. März 2015, Cyril Brulebois wrote:
   Again?
  No argumentation, so removing tags again.
 
 the bug shows up on 
 http://udd.debian.org/bugs.cgi?release=wheezyrc=1sortby=idsorto=descctags=1
  
 - and as thus gets on the radar of people caring about fixing RC bugs in 
 stable and AFAICS this bug is not RC for wheezy.

I'm not sure what your “AFAICS” covers. I've already explained this code
has been here for 10 years. People have already complained about this
against wheezy. Looking at bug reports whose title contains fstab lets
you find some occurrences.

Can we please try not to sweep it under the rug, and instead try to
reproduce + fix it?!

KiBi.


signature.asc
Description: Digital signature


Bug#780026: marked as done (unblock: rsync/3.1.1-3)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 8 Mar 2015 14:37:27 +0100
with message-id 20150308133727.ga14...@ugent.be
and subject line Re: Bug#780026: unblock: rsync/3.1.1-3
has caused the Debian Bug report #780026,
regarding unblock: rsync/3.1.1-3
to be marked as done.

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

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


-- 
780026: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780026
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package rsync

Hi,
This version has as only feature a fix for CVE-2014-9512: Rsync
path spoofing attack vulnerability. This was reported in #778333.
IMHO this should go into jessie because of this.

$ debdiff rsync_3.1.1-2_amd64.deb rsync_3.1.1-3_amd64.deb
File lists identical (after any substitutions)

Control files: lines which differ (wdiff format)

Installed-Size: [-728-] {+732+}
Version: [-3.1.1-2-] {+3.1.1-3+}

Changelog entry:

rsync (3.1.1-3) unstable; urgency=medium

  * Added patch for CVE-2014-9512, Rsync path spoofing attack vulnerability.
closes:#778333

 -- Paul Slootman p...@debian.org  Sat, 07 Mar 2015 15:45:05 +0100


unblock rsync/3.1.1-3


This version is also signed with my new GPG key.

Thanks,
Paul Slootman


-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.15.6-wurtel-ws (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash
Init: sysvinit (via /sbin/init)
---End Message---
---BeginMessage---
Hi,

On Sun, Mar 08, 2015 at 01:20:56PM +0100, Paul Slootman wrote:
 Please unblock package rsync

Unblocked.

Cheers,

Ivo---End Message---


Bug#779903: marked as done (unblock: webkit2gtk/2.6.2+dfsg1-4)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 8 Mar 2015 14:46:58 +0100
with message-id 20150308134658.gb14...@ugent.be
and subject line Re: Bug#779903: unblock: webkit2gtk/2.6.2+dfsg1-4
has caused the Debian Bug report #779903,
regarding unblock: webkit2gtk/2.6.2+dfsg1-4
to be marked as done.

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

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


-- 
779903: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779903
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package webkit2gtk

This release contains several fixes cherry picked from the upstream
stable branches. All of them solve either crashes or other important
bugs, and are recommended by the upstream maintainer. At the end there
is also a couple of Debian-specific fixes.

These patches fix crashes:

  * debian/patches/fix-jit-crash.patch:

Fix crash in the JIT compiler.

https://bugs.webkit.org/show_bug.cgi?id=137642

  * debian/patches/fix-null-renderer.patch:

NULL pointer check in HTMLPlugInImageElement.

https://bugs.webkit.org/show_bug.cgi?id=139057

  * debian/patches/fix-integer-overflow.patch:

Fix crash due to integer overflow.

https://bugs.webkit.org/show_bug.cgi?id=139165

  * debian/patches/fix-ax-crash.patch:

Fix recursive crash at WebCore::accessibleNameForNode.

https://bugs.webkit.org/show_bug.cgi?id=139616

  * debian/patches/fix-clearselection-segfault.patch:

Fix segfault when calling clearSelection on a detached
RenderObject.

https://bugs.webkit.org/show_bug.cgi?id=140275

These are security fixes. The details of the upstream bugs are marked
as private:

  * debian/patches/check-tls-errors.patch:

Check TLS errors as soon as they are set in the SoupMessage.

https://bugs.webkit.org/show_bug.cgi?id=142244

  * debian/patches/serialized-script-value.patch:

Prevent unsafe access to internal types.

https://bugs.webkit.org/show_bug.cgi?id=138653

  * debian/patches/render-block-cast.patch:

Fix invalid cast in WebCore::RenderBlock::blockSelectionGaps.

https://bugs.webkit.org/show_bug.cgi?id=137590

Other important fixes:

  * debian/patches/fix-gstreamer-leak.patch:

Fix memory leak in GStreamer code.

https://bugs.webkit.org/show_bug.cgi?id=46560

  * debian/patches/remote-inspector.patch:

Regression: make the remote inspector work again.

https://bugs.webkit.org/show_bug.cgi?id=138246

  * debian/patches/http-latin1.patch:

Treat HTTP header values as latin1, not UTF-8.

https://bugs.webkit.org/show_bug.cgi?id=128739

  * debian/patches/fix-null-string-conversion.patch:

Add NULL check to convertToUTF8String().

https://bugs.webkit.org/show_bug.cgi?id=133904

  * debian/patches/fix-timers-animations.patch:

Prevent freeze because of timers never be fired during animations.

https://bugs.webkit.org/show_bug.cgi?id=139062

  * debian/patches/fix-date.patch:

Fix erroneous date calculations.

https://bugs.webkit.org/show_bug.cgi?id=130967

Debian-specific fixes:

  * debian/patches/fix-ftbfs-hppa.patch:

This fixes a FTBFS in HPPA. It just adds this platform to the
supported list in the CMake configuration files.

https://bugs.debian.org/776281

  * debian/libwebkit2gtk-4.0-doc.links:

The documentation does not appear in Devhelp. This just adds a
missing symbolic link.

https://bugs.debian.org/776281

unblock webkit2gtk/2.6.2+dfsg1-4

-- System Information:
Debian Release: 8.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru webkit2gtk-2.6.2+dfsg1/debian/changelog webkit2gtk-2.6.2+dfsg1/debian/changelog
--- webkit2gtk-2.6.2+dfsg1/debian/changelog	2014-12-07 18:53:35.0 +0200
+++ webkit2gtk-2.6.2+dfsg1/debian/changelog	2015-03-06 09:33:28.0 +0200
@@ -1,3 +1,41 @@
+webkit2gtk (2.6.2+dfsg1-4) unstable; urgency=medium
+
+  * debian/patches/fix-ftbfs-hppa.patch:
++ Fix FTBFS in HPPA (Closes: #776281).
+  * debian/libwebkit2gtk-4.0-doc.links:
++ Add symbolic link to make the documentation appear in devhelp
+  (Closes: #777589).
+  * debian/patches/fix-gstreamer-leak.patch:
++ Fix memory leak in GStreamer code.
+  * debian/patches/remote-inspector.patch:
++ Make the remote inspector work again.
+  * 

Bug#779912: marked as done (unblock: cdbs/0.4.128)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 08 Mar 2015 17:04:44 +0100
with message-id 54fc731c.8050...@thykier.net
and subject line Re: Bug#779912: unblock: cdbs/0.4.128
has caused the Debian Bug report #779912,
regarding unblock: cdbs/0.4.128
to be marked as done.

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

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


-- 
779912: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779912
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please unblock package cdbs

Package currently in unstable fixes these two serious bugs:

#770767: perl-build-vars.mk overrides $Config{ccflags}
#772429: Does not support case-insensitve field names

Additionally, the fix for #770767 is believed to also fix applying all
default security-strengthening compiler flags for arch-any packages that
uses a CDBS perl snippet.  Since that is a release goal, and since
missing default flags may also lead to other breakage on i386 due to how
that platform links perl code (see bug#770767), unblocking of cdbs
should probably be followed by BinNMUs + unblock of e.g. all arch-any
packages matching regext '^include\s+.*perl.*\.mk' for its rules file.
I don't know (and am not skilled so now is probably the wrong time to
start if others can help) how to reliably locate such package list, but
can do it among the packages I maintain myself which might be adequate
(I am not alone in using CDBS but might be for perl libs specifically).

unblock cdbs/0.4.128

 - Jonas

- -- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.14-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=da_DK.UTF-8, LC_CTYPE=da_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJU+YhcAAoJECx8MUbBoAEhFr4P/Rc4ABLp1thNG2gIam0VyuXg
xSWRfUn9/KZaMCbiID1iw2NKCiKABegqjlrEWRv2Bx3cfxTU+FHSgDtKiey+nUJR
FquZAyeHbv/dvENgvJZTRgsgcHU/UdG6P/cCJeD0uiPPNEtYl5IKMqZlOdA5Dtye
+elsZbNW1WhDDK1P9dERBAbcW04jiWxa/hBXuDEuMs1BwMWnZA/N4PGQJqaKV2FG
/Ua89SYbn2+tyW0w4SUz5xpe2FMRPu3D2ifU8BSwAxxFQtKSMKc40R7R3b5EyWGD
/7XXpOWvLUjc1k1nokqdE+pGqCIuWLAE2zdyrnmN/NphIS5mdrFbDqv8bgddkl96
M8TkCMzJ/BYaRucdBJ2cva7YU6yPT4BI/jcAbHcoRPiw4LJgK1oThmio5/ejCR4m
sYI4YrQGRrakWAZTzlhpx4gQetapDvJ/c7j4Fhi8kwHtmQxl397eeVzyjQXIZOsz
pqIfjPbcaaJXYD88TB+6ehmvwSFxB7iMlP6av500ugQKHifs+/J7sBC6gq/UmIAN
Q/cJojMOfCYO0+TqSJzNYmjcp5Pc4Ftox8JOceEjnHA8KIacOoifRzoEq7lScG5a
DGuLGmAgaolXZ2nQa9Lb2uXXhRVtoHSHLVk373EczovxB3lgFEhh24QR6OTkG8Zd
+ioQTGcjMdA7Ta0AJ9fA
=1VJf
-END PGP SIGNATURE-
diff -Nru cdbs-0.4.127/1/class/perl-build-vars.mk.in cdbs-0.4.128/1/class/perl-build-vars.mk.in
--- cdbs-0.4.127/1/class/perl-build-vars.mk.in	2014-10-12 14:07:35.0 +0200
+++ cdbs-0.4.128/1/class/perl-build-vars.mk.in	2015-03-06 03:52:37.0 +0100
@@ -21,10 +21,22 @@
 ifndef _cdbs_class_perl_build_vars
 _cdbs_class_perl_build_vars = 1
 
+include $(_cdbs_class_path)/langcore.mk$(_cdbs_makefile_suffix)
 include $(_cdbs_class_path)/perl-vars.mk$(_cdbs_makefile_suffix)
 
 #DEB_PERL_CONFIGURE_TARGET =
-DEB_PERL_CONFIGURE_ARGS ?= --installdirs vendor --config ccflags=$(or $(CFLAGS_$(cdbs_curpkg)),$(CFLAGS)) --config cxxflags=$(or $(CXXFLAGS_$(cdbs_curpkg)),$(CXXFLAGS)) --config cppflags=$(or $(CPPFLAGS_$(cdbs_curpkg)),$(CPPFLAGS)) --config ldflags=$(or $(LDFLAGS_$(cdbs_curpkg)),$(LDFLAGS))
+DEB_PERL_CONFIGURE_ARGS ?= --installdirs vendor \
+	--config ccflags=$(strip \
+		$(or $(CFLAGS_$(cdbs_curpkg)),$(CFLAGS)) \
+		$(cdbs_perl_ccflags)) \
+	--config cxxflags=$(strip \
+		$(or $(CXXFLAGS_$(cdbs_curpkg)),$(CXXFLAGS))) \
+	--config cppflags=$(strip \
+		$(or $(CPPFLAGS_$(cdbs_curpkg)),$(CPPFLAGS)) \
+		$(cdbs_perl_cppflags)) \
+	--config lddlflags=$(strip \
+		$(or $(LDFLAGS_$(cdbs_curpkg)),$(LDFLAGS)) \
+		$(cdbs_perl_lddlflags))
 
 DEB_PERL_CONFIGURE_FLAGS ?= --destdir $(cdbs_perl_curdestdir)
 
diff -Nru cdbs-0.4.127/1/class/perl-makemaker-vars.mk.in cdbs-0.4.128/1/class/perl-makemaker-vars.mk.in
--- cdbs-0.4.127/1/class/perl-makemaker-vars.mk.in	2014-10-12 14:07:43.0 +0200
+++ cdbs-0.4.128/1/class/perl-makemaker-vars.mk.in	2015-03-06 03:52:06.0 +0100
@@ -30,19 +30,18 @@
 DEB_MAKEMAKER_NORMAL_ARGS ?= \
 	NOECHO=
 
-cdbs_perl_makemaker_lddlflags := \
-	$(shell perl -MConfig -e 'print $$Config{lddlflags}')
-
 # Override optimizations to follow Perl Policy 3.9.4 § 4.3
 # and extend to also pass CPPFLAGS and 

Re: [pkg-cryptsetup-devel] Bug#779612: systemd-sysv,cryptsetup: systemd-sysv, cryptsetup should recommend plymouth; without plymouth cryptsetup prompts are unusable

2015-03-08 Thread Gordon Morehouse
On Sun, 08 Mar 2015 12:45:28 +0100, Jonas Meurer jo...@freesources.org wrote:
 Hi Gordon,
 
 thanks for the bugreport. I escalate this bugreport to the
 debian-release team, asking for advice: would you accept another
 cryptsetup upload targeted to jessie in order to add 'plymouth' to the
 list of recommended packages?

Thank you!

 I agree that plymouth should be pulled in per default on jessie
 installations with systemd and cryptsetup. While I don't know nothing
 about systemd without plymouth, when cryptsetup comes into play,
 plymouth is critical for the interactive password prompt at boot.
 
 Therefore I agree with the bug submitter, that cryptsetup in jessie
 should recommend plymouth.
 
 I could upload cryptsetup packages with the added recommends immediately
 after the pre-approval of the jessie release team.

There are some differing opinions starting at about [1] on Bug#768314.

I will attempt to direct them here.

1. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=768314#160

Best,
-Gordon M.


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yudvv-0006iv...@rmm6prod02.runbox.com



Bug#779523: unblock (pre-approval): sudo/1.8.10p3-1+deb8u2

2015-03-08 Thread Niels Thykier
On 2015-03-01 22:28, Niels Thykier wrote:
 Control: tags -1 confirmed moreinfo
 
 On 2015-03-01 22:01, Christian Kastner wrote:
 [...]

 Hi,

 With the maintainer's permission, I'd like to ask your approval for an
 upload to t-p-u for the attached debdiff. Two CVE patches and one tiny
 patch were added, and two issues were fixed with the maintainer scripts.

 All of these changes have been in unstable for at least a week now, and
 no new issues have been reported.

 Regards,
 Christian

 
 Excellent, please go ahead and upload this to t-p-u.  Once it has been
 uploaded, please notify us and remove the moreinfo tag.
 
 ~Niels
 

Hi Christian,

Any news on this upload to sudo?

~Niels


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54fc77e3.1040...@thykier.net



Bug#780038: unblock: ulogd2/2.0.4-2

2015-03-08 Thread Chris Boot
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package ulogd2.

The updated package fixes an RC bug (#779865). This is done by adding
some maintscript entries to remove more obsolete conffiles from the
previous ulogd package.

Here is the full debdiff from 2.0.4-1 (version in testing) to 2.0.4-2
(version freshly uploaded to sid):

diff -Nru ulogd2-2.0.4/debian/changelog ulogd2-2.0.4/debian/changelog
--- ulogd2-2.0.4/debian/changelog   2014-04-13 14:49:13.0 +0100
+++ ulogd2-2.0.4/debian/changelog   2015-03-08 15:22:46.0 +
@@ -1,3 +1,15 @@
+ulogd2 (2.0.4-2) unstable; urgency=medium
+
+  [ Andreas Beckmann ]
+  * Fix removal of old ulogd initscript upon initial installation of ulogd2.
+  * Remove more obsolete conffiles.
+
+  [ Chris Boot ]
+  * Apply patches from Andreas Beckmann correct the transition from ulogd to
+ulogd2. (Closes: #779865, LP: #1354720)
+
+ -- Chris Boot deb...@bootc.net  Sun, 08 Mar 2015 15:22:44 +
+
 ulogd2 (2.0.4-1) unstable; urgency=medium
 
   * New upstream release:
diff -Nru ulogd2-2.0.4/debian/ulogd2.maintscript 
ulogd2-2.0.4/debian/ulogd2.maintscript
--- ulogd2-2.0.4/debian/ulogd2.maintscript  2014-04-13 11:42:32.0 
+0100
+++ ulogd2-2.0.4/debian/ulogd2.maintscript  2015-03-08 15:22:10.0 
+
@@ -1,4 +1,6 @@
 
 # Remove the old ulogd 1.x init script, as it can cause problems/confusion
-rm_conffile /etc/init.d/ulogd 2.0.2-4~ ulogd
+# Provide a fall-back old-version (0) as a hack to ensure this is performed
+# by dpkg-maintscript-helper on the initial install of ulogd2, too.
+rm_conffile /etc/init.d/ulogd 2.0.4-2~ ulogd -- $@ 0
 
diff -Nru ulogd2-2.0.4/debian/ulogd.maintscript 
ulogd2-2.0.4/debian/ulogd.maintscript
--- ulogd2-2.0.4/debian/ulogd.maintscript   1970-01-01 01:00:00.0 
+0100
+++ ulogd2-2.0.4/debian/ulogd.maintscript   2015-03-08 15:22:10.0 
+
@@ -0,0 +1,2 @@
+rm_conffile /etc/init.d/ulogd 2.0.4-2~
+rm_conffile /etc/logrotate.d/ulogd 2.0.4-2~


unblock ulogd2/2.0.4-2

Thanks for your consideration.

Regards,
Chris

-- System Information:
Debian Release: 8.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'testing-updates')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/E1YUdgd-0004hA-Jq@ripley



Bug#780040: unblock: libwww-youtube-download-perl/0.56-2

2015-03-08 Thread gregor herrmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Please unblock package libwww-youtube-download-perl 0.56-2.

The upload fixes #779985: youtube-download fails to download any video.

I've added two small patches from upstream github, which are from
August 2014 and just not released due to a missing upstream
maintainer. My manual tests show that youtube-download works again.

Diff attached.


unblock libwww-youtube-download-perl/0.56-2


Cheers,
gregor

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAEBCgBmBQJU/HwWXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoG92UP/0bmTbOjYDpIKWTRC7PwL7gV
q7CXyBH8k/0qqy6RsDPMrtaj+DJf98ZfY+sBcyAmFokhgRzuvgAMq8O8PZURsnam
SMOabCqONGd3PGrxkvA4hadgEU4ydMIDjOIrCaJNYN0eiuM0oRJRswZGUwdes+7w
mBFA3vhoB5sP0rfGV9VGMzsrmr6kfH6dnqFignlm0dgDP3TW1wwskoKtKbciE6ai
fcz9j7CcgO9/FCBgRakAnX8ipgyP6FTkRxbFudO4OBdLVv1zfHzUIMCmQZmOsC9R
8/ikYnc/wNL13gXp9rxUQ/JtIZbPNZyCg1hfSWEs6l0DT+1Mjok71eJv3rA5DlYy
D94pM/XEL8bR9JwtNLG9qQ4pmV78sBwfptQ5JNLwqI/K6s78ESh6ls3id1V6It11
pBpzwstU5/XLLwko3qfD+2/qL/AlAVSlYKGClPvWfBeveu7B/Ldh+ZL1yu7iz9sI
KH7wxr8T8FuYPxnhEPLb1UI2xX23eOm1o9gaQi7hGFvN6YOQtIpKyd//9qlsH3zq
qVp0woMLRJ6mN+WenDdfwZoAYSw0fjpBsrKmmfxlqZgIHBKfUYrpUYChT6HvdiZQ
aqPwYhNQox84VvN7ft6PhEdWmkBMFO2BYRAM+AOJgy+hGasaXCfzAcPSt4x0ge7G
+EJMtSN+edsApPM5YDdl
=iqVG
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index 01db0c9..d41ed71 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+libwww-youtube-download-perl (0.56-2) unstable; urgency=medium
+
+  * Add 2 small patches from Github to adjust to YouTube changes.
+
+Patches are taken from PR#31 in issue #27 at
+https://github.com/xaicron/p5-www-youtube-download/issues/27
+
+(Closes: #779985)
+
+ -- gregor herrmann gre...@debian.org  Sun, 08 Mar 2015 15:35:00 +0100
+
 libwww-youtube-download-perl (0.56-1) unstable; urgency=low
 
   * Imported Upstream version 0.56
diff --git a/debian/patches/Dont_fail_if_we_can't_find_a_signature.patch b/debian/patches/Dont_fail_if_we_can't_find_a_signature.patch
new file mode 100644
index 000..8e468f6
--- /dev/null
+++ b/debian/patches/Dont_fail_if_we_can't_find_a_signature.patch
@@ -0,0 +1,27 @@
+From 87a6a56829a2a7265953b56dbc8f55d8384367a1 Mon Sep 17 00:00:00 2001
+From: Thomas Sibley tsib...@cpan.org
+Date: Sat, 23 Aug 2014 14:11:55 -0700
+Subject: [PATCH] Don't fail if we can't find a signature
+
+YouTube started offering pre-signed URLs, so at least give it a go if we
+can't parse out a signature.  This preserves the previous behaviour for
+backwards compat if there are still older videos without pre-signed URLs
+(unclear if that's so).
+---
+ lib/WWW/YouTube/Download.pm | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+--- a/lib/WWW/YouTube/Download.pm
 b/lib/WWW/YouTube/Download.pm
+@@ -299,9 +299,9 @@
+ my $uri = URI-new;
+ $uri-query($stuff);
+ my $query = +{ $uri-query_form };
+-my $sig = $query-{sig} || _getsig($query-{s});
++my $sig = $query-{sig} || ($query-{s} ? _getsig($query-{s}) : undef);
+ my $url = $query-{url};
+-$fmt_url_map-{$query-{itag}} = $url.'signature='.$sig;
++$fmt_url_map-{$query-{itag}} = $url . ($sig ? 'signature='.$sig : '');
+ }
+ 
+ return $fmt_url_map;
diff --git a/debian/patches/Let_the_JSON_parser_stop_when_it_finds_trailing_garbage.patch b/debian/patches/Let_the_JSON_parser_stop_when_it_finds_trailing_garbage.patch
new file mode 100644
index 000..9a2f87e
--- /dev/null
+++ b/debian/patches/Let_the_JSON_parser_stop_when_it_finds_trailing_garbage.patch
@@ -0,0 +1,21 @@
+From dd7f116d09142a921dea266b99c9065ca6ae394d Mon Sep 17 00:00:00 2001
+From: Thomas Sibley tsib...@cpan.org
+Date: Sat, 23 Aug 2014 14:11:14 -0700
+Subject: [PATCH] Let the JSON parser stop when it finds trailing garbage
+
+This is more robust than playing cat-and-mouse with the regex.
+---
+ lib/WWW/YouTube/Download.pm | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/lib/WWW/YouTube/Download.pm
 b/lib/WWW/YouTube/Download.pm
+@@ -223,7 +223,7 @@
+ croak 'Video not available in your country';
+ }
+ elsif ($line =~ /^.+ytplayer\.config\s*=\s*({.*})/) {
+-$data = JSON-new-utf8(1)-decode($1);
++($data, undef) = JSON-new-utf8(1)-decode_prefix($1);
+ last;
+ }
+ }
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..7e12fe0
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+Let_the_JSON_parser_stop_when_it_finds_trailing_garbage.patch
+Dont_fail_if_we_can't_find_a_signature.patch


Bug#780038: marked as done (unblock: ulogd2/2.0.4-2)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 08 Mar 2015 17:50:15 +0100
with message-id 54fc7dc7.40...@thykier.net
and subject line Re: Bug#780038: unblock: ulogd2/2.0.4-2
has caused the Debian Bug report #780038,
regarding unblock: ulogd2/2.0.4-2
to be marked as done.

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

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


-- 
780038: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780038
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package ulogd2.

The updated package fixes an RC bug (#779865). This is done by adding
some maintscript entries to remove more obsolete conffiles from the
previous ulogd package.

Here is the full debdiff from 2.0.4-1 (version in testing) to 2.0.4-2
(version freshly uploaded to sid):

diff -Nru ulogd2-2.0.4/debian/changelog ulogd2-2.0.4/debian/changelog
--- ulogd2-2.0.4/debian/changelog   2014-04-13 14:49:13.0 +0100
+++ ulogd2-2.0.4/debian/changelog   2015-03-08 15:22:46.0 +
@@ -1,3 +1,15 @@
+ulogd2 (2.0.4-2) unstable; urgency=medium
+
+  [ Andreas Beckmann ]
+  * Fix removal of old ulogd initscript upon initial installation of ulogd2.
+  * Remove more obsolete conffiles.
+
+  [ Chris Boot ]
+  * Apply patches from Andreas Beckmann correct the transition from ulogd to
+ulogd2. (Closes: #779865, LP: #1354720)
+
+ -- Chris Boot deb...@bootc.net  Sun, 08 Mar 2015 15:22:44 +
+
 ulogd2 (2.0.4-1) unstable; urgency=medium
 
   * New upstream release:
diff -Nru ulogd2-2.0.4/debian/ulogd2.maintscript 
ulogd2-2.0.4/debian/ulogd2.maintscript
--- ulogd2-2.0.4/debian/ulogd2.maintscript  2014-04-13 11:42:32.0 
+0100
+++ ulogd2-2.0.4/debian/ulogd2.maintscript  2015-03-08 15:22:10.0 
+
@@ -1,4 +1,6 @@
 
 # Remove the old ulogd 1.x init script, as it can cause problems/confusion
-rm_conffile /etc/init.d/ulogd 2.0.2-4~ ulogd
+# Provide a fall-back old-version (0) as a hack to ensure this is performed
+# by dpkg-maintscript-helper on the initial install of ulogd2, too.
+rm_conffile /etc/init.d/ulogd 2.0.4-2~ ulogd -- $@ 0
 
diff -Nru ulogd2-2.0.4/debian/ulogd.maintscript 
ulogd2-2.0.4/debian/ulogd.maintscript
--- ulogd2-2.0.4/debian/ulogd.maintscript   1970-01-01 01:00:00.0 
+0100
+++ ulogd2-2.0.4/debian/ulogd.maintscript   2015-03-08 15:22:10.0 
+
@@ -0,0 +1,2 @@
+rm_conffile /etc/init.d/ulogd 2.0.4-2~
+rm_conffile /etc/logrotate.d/ulogd 2.0.4-2~


unblock ulogd2/2.0.4-2

Thanks for your consideration.

Regards,
Chris

-- System Information:
Debian Release: 8.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'testing-updates')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
---End Message---
---BeginMessage---
On 2015-03-08 17:04, Chris Boot wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package ulogd2.
 
 The updated package fixes an RC bug (#779865). This is done by adding
 some maintscript entries to remove more obsolete conffiles from the
 previous ulogd package.
 
 Here is the full debdiff from 2.0.4-1 (version in testing) to 2.0.4-2
 (version freshly uploaded to sid):
 
 [...]
 
 
 unblock ulogd2/2.0.4-2
 
 Thanks for your consideration.
 
 Regards,
 Chris
 
 [...]

Unblocked, thanks.

~Niels---End Message---


Processed: Re: Bug#779997: unblock: (pre-approval) mksh/50d-4

2015-03-08 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 confirmed moreinfo
Bug #779997 [release.debian.org] unblock: (pre-approval) mksh/50d-4
Added tag(s) confirmed and moreinfo.

-- 
779997: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779997
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b779997.142583357210532.transcr...@bugs.debian.org



Bug#780042: unblock: emacs24/24.4+1-5

2015-03-08 Thread Rob Browning

Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please consider emacs24 24.4.1+1-5 for jessie.  As compared to the
current 4.1 version, this release should fix two bugs.

  * Add a Breaks for an older version of apel that newer versions of
Emacs can't compile:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775564

  * Add a Conflicts for an obsolete package that was breaking newer
Gnus:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=767949

This version also adjusts the 4.1 NMU patch (to startup.el) to match the
other patches (including the Debian NEWS header, etc).  The content
should be identical.

The changelog entry:

  emacs24 (24.4+1-5) unstable; urgency=medium

* emacs24-common: conflict with obsolete gnus-bonus-el package.
  Thanks to Hilko Bengen for reporting the problem. (Closes: 767949)

* Add Breaks: apel ( 10.8+0.20120427-4) to emacs24-common to fix
  a byte-compilation problem with older versions of the package.
  Thanks to Łukasz Stelmach for the report and Sébastien Villemot
  for tracking down the correct version. (Closes: 775564)

   -- Rob Browning r...@defaultvalue.org  Sat, 07 Mar 2015 13:25:57 -0600

And the debdiff (which excludes the automatically generated
debian/control):

diff -Nru emacs24-24.4+1/debian/.git-dpm emacs24-24.4+1/debian/.git-dpm
--- emacs24-24.4+1/debian/.git-dpm	2014-10-25 14:40:41.0 -0500
+++ emacs24-24.4+1/debian/.git-dpm	2015-03-07 13:33:35.0 -0600
@@ -1,6 +1,6 @@
 # see git-dpm(1) from git-dpm package
-ab7f768c51efc79f100d01ce4f3d6c5bad12be32
-ab7f768c51efc79f100d01ce4f3d6c5bad12be32
+be3e084c88ddd5292f485fd59216d016fec6ba99
+be3e084c88ddd5292f485fd59216d016fec6ba99
 fa54b24bfb46d6799598ccd7639c5ad7c02df252
 fa54b24bfb46d6799598ccd7639c5ad7c02df252
 emacs24_24.4+1.orig.tar.bz2
diff -Nru emacs24-24.4+1/debian/changelog emacs24-24.4+1/debian/changelog
--- emacs24-24.4+1/debian/changelog	2014-12-09 09:25:45.0 -0600
+++ emacs24-24.4+1/debian/changelog	2015-03-07 13:33:35.0 -0600
@@ -1,3 +1,15 @@
+emacs24 (24.4+1-5) unstable; urgency=medium
+
+  * emacs24-common: conflict with obsolete gnus-bonus-el package.
+Thanks to Hilko Bengen for reporting the problem. (Closes: 767949)
+
+  * Add Breaks: apel ( 10.8+0.20120427-4) to emacs24-common to fix
+a byte-compilation problem with older versions of the package.
+Thanks to Łukasz Stelmach for the report and Sébastien Villemot
+for tracking down the correct version. (Closes: 775564)
+
+ -- Rob Browning r...@defaultvalue.org  Sat, 07 Mar 2015 13:25:57 -0600
+
 emacs24 (24.4+1-4.1) unstable; urgency=medium
 
   * Non-maintainer upload.
--- emacs24-24.4+1/debian/control.in	2014-10-25 14:41:42.0 -0500
+++ emacs24-24.4+1/debian/control.in	2015-03-07 13:33:35.0 -0600
@@ -99,7 +99,8 @@
 Architecture: all
 Depends: emacsen-common (= 2.0.8), dpkg (= 1.15.4) | install-info, ${shlibs:Depends}, ${misc:Depends}
 Suggests: @DEB_FLAVOR@-el, @DEB_FLAVOR@-common-non-dfsg
-Conflicts: @DEB_FLAVOR@-el ( ${Source-Version}), cedet, eieio, speedbar
+Conflicts: @DEB_FLAVOR@-el ( ${Source-Version}), cedet, eieio, speedbar, gnus-bonus-el
+Breaks: apel ( 10.8+0.20120427-4)
 Description: GNU Emacs editor's shared, architecture independent infrastructure
  GNU Emacs is the extensible self-documenting text editor.
  This package contains the architecture independent infrastructure
diff -Nru emacs24-24.4+1/debian/patches/0009-Nil-load-path-elements-shouldn-t-crash-Emacs.patch emacs24-24.4+1/debian/patches/0009-Nil-load-path-elements-shouldn-t-crash-Emacs.patch
--- emacs24-24.4+1/debian/patches/0009-Nil-load-path-elements-shouldn-t-crash-Emacs.patch	1969-12-31 18:00:00.0 -0600
+++ emacs24-24.4+1/debian/patches/0009-Nil-load-path-elements-shouldn-t-crash-Emacs.patch	2015-03-07 13:33:35.0 -0600
@@ -0,0 +1,41 @@
+From be3e084c88ddd5292f485fd59216d016fec6ba99 Mon Sep 17 00:00:00 2001
+From: Glenn Morris r...@gnu.org
+Date: Sun, 9 Nov 2014 23:12:37 -0800
+Subject: Nil load-path elements shouldn't crash Emacs
+
+This upstream patches has been added:
+
+  * lisp/startup.el (command-line): Handle nil elements in load-path.
+
+Origin: upstream, http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=edfdb22f674312389ccf5d5e37efa4d3f1516994
+Bug-Debian: http://bugs/debian.org/768751
+Added-by: Rob Browning r...@defaultvalue.org
+---
+ lisp/ChangeLog  | 4 
+ lisp/startup.el | 1 +
+ 2 files changed, 5 insertions(+)
+
+diff --git a/lisp/ChangeLog b/lisp/ChangeLog
+index 781b3ab..b162ebc 100644
+--- a/lisp/ChangeLog
 b/lisp/ChangeLog
+@@ -1,3 +1,7 @@
++2014-11-10  Glenn Morris  r...@gnu.org
++
++	* startup.el (command-line): Handle nil elements in load-path.
++
+ 2014-10-20  Glenn Morris  r...@gnu.org
+ 
+ 	* Version 24.4 released.
+diff --git a/lisp/startup.el b/lisp/startup.el
+index c4f9f79..1ef2556 100644
+--- a/lisp/startup.el
 b/lisp/startup.el
+@@ -1336,6 

Bug#779997: unblock: (pre-approval) mksh/50d-4

2015-03-08 Thread Niels Thykier
Control: tags -1 confirmed moreinfo

On 2015-03-07 22:24, Thorsten Glaser wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package mksh
 
 With upstream hat, I found and fixed a security-relevant
 (privacy related) bug in mksh and would kindly like to
 request its inclusion into jessie.
 
 [...]
 
 unblock mksh/50d-4
 
 [...]

Ack, seems reasonable.  Please have it uploaded to unstable and remove
the moreinfo tag once it is accepted.

Thanks,
~Niels


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54fc7e5b.5070...@thykier.net



Bug#780042: marked as done (unblock: emacs24/24.4+1-5)

2015-03-08 Thread Debian Bug Tracking System
Your message dated Sun, 08 Mar 2015 18:09:45 +0100
with message-id 54fc8259.1090...@thykier.net
and subject line Re: Bug#780042: unblock: emacs24/24.4+1-5
has caused the Debian Bug report #780042,
regarding unblock: emacs24/24.4+1-5
to be marked as done.

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

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


-- 
780042: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780042
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---

Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please consider emacs24 24.4.1+1-5 for jessie.  As compared to the
current 4.1 version, this release should fix two bugs.

  * Add a Breaks for an older version of apel that newer versions of
Emacs can't compile:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775564

  * Add a Conflicts for an obsolete package that was breaking newer
Gnus:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=767949

This version also adjusts the 4.1 NMU patch (to startup.el) to match the
other patches (including the Debian NEWS header, etc).  The content
should be identical.

The changelog entry:

  emacs24 (24.4+1-5) unstable; urgency=medium

* emacs24-common: conflict with obsolete gnus-bonus-el package.
  Thanks to Hilko Bengen for reporting the problem. (Closes: 767949)

* Add Breaks: apel ( 10.8+0.20120427-4) to emacs24-common to fix
  a byte-compilation problem with older versions of the package.
  Thanks to Łukasz Stelmach for the report and Sébastien Villemot
  for tracking down the correct version. (Closes: 775564)

   -- Rob Browning r...@defaultvalue.org  Sat, 07 Mar 2015 13:25:57 -0600

And the debdiff (which excludes the automatically generated
debian/control):

diff -Nru emacs24-24.4+1/debian/.git-dpm emacs24-24.4+1/debian/.git-dpm
--- emacs24-24.4+1/debian/.git-dpm	2014-10-25 14:40:41.0 -0500
+++ emacs24-24.4+1/debian/.git-dpm	2015-03-07 13:33:35.0 -0600
@@ -1,6 +1,6 @@
 # see git-dpm(1) from git-dpm package
-ab7f768c51efc79f100d01ce4f3d6c5bad12be32
-ab7f768c51efc79f100d01ce4f3d6c5bad12be32
+be3e084c88ddd5292f485fd59216d016fec6ba99
+be3e084c88ddd5292f485fd59216d016fec6ba99
 fa54b24bfb46d6799598ccd7639c5ad7c02df252
 fa54b24bfb46d6799598ccd7639c5ad7c02df252
 emacs24_24.4+1.orig.tar.bz2
diff -Nru emacs24-24.4+1/debian/changelog emacs24-24.4+1/debian/changelog
--- emacs24-24.4+1/debian/changelog	2014-12-09 09:25:45.0 -0600
+++ emacs24-24.4+1/debian/changelog	2015-03-07 13:33:35.0 -0600
@@ -1,3 +1,15 @@
+emacs24 (24.4+1-5) unstable; urgency=medium
+
+  * emacs24-common: conflict with obsolete gnus-bonus-el package.
+Thanks to Hilko Bengen for reporting the problem. (Closes: 767949)
+
+  * Add Breaks: apel ( 10.8+0.20120427-4) to emacs24-common to fix
+a byte-compilation problem with older versions of the package.
+Thanks to Łukasz Stelmach for the report and Sébastien Villemot
+for tracking down the correct version. (Closes: 775564)
+
+ -- Rob Browning r...@defaultvalue.org  Sat, 07 Mar 2015 13:25:57 -0600
+
 emacs24 (24.4+1-4.1) unstable; urgency=medium
 
   * Non-maintainer upload.
--- emacs24-24.4+1/debian/control.in	2014-10-25 14:41:42.0 -0500
+++ emacs24-24.4+1/debian/control.in	2015-03-07 13:33:35.0 -0600
@@ -99,7 +99,8 @@
 Architecture: all
 Depends: emacsen-common (= 2.0.8), dpkg (= 1.15.4) | install-info, ${shlibs:Depends}, ${misc:Depends}
 Suggests: @DEB_FLAVOR@-el, @DEB_FLAVOR@-common-non-dfsg
-Conflicts: @DEB_FLAVOR@-el ( ${Source-Version}), cedet, eieio, speedbar
+Conflicts: @DEB_FLAVOR@-el ( ${Source-Version}), cedet, eieio, speedbar, gnus-bonus-el
+Breaks: apel ( 10.8+0.20120427-4)
 Description: GNU Emacs editor's shared, architecture independent infrastructure
  GNU Emacs is the extensible self-documenting text editor.
  This package contains the architecture independent infrastructure
diff -Nru emacs24-24.4+1/debian/patches/0009-Nil-load-path-elements-shouldn-t-crash-Emacs.patch emacs24-24.4+1/debian/patches/0009-Nil-load-path-elements-shouldn-t-crash-Emacs.patch
--- emacs24-24.4+1/debian/patches/0009-Nil-load-path-elements-shouldn-t-crash-Emacs.patch	1969-12-31 18:00:00.0 -0600
+++ emacs24-24.4+1/debian/patches/0009-Nil-load-path-elements-shouldn-t-crash-Emacs.patch	2015-03-07 13:33:35.0 -0600
@@ -0,0 +1,41 @@
+From be3e084c88ddd5292f485fd59216d016fec6ba99 Mon Sep 17 00:00:00 2001
+From: Glenn Morris r...@gnu.org
+Date: Sun, 9 Nov 2014 23:12:37 -0800
+Subject: Nil load-path elements shouldn't crash Emacs
+
+This upstream patches has been added:
+
+  * 

Bug#780044: unblock: whois/5.2.5

2015-03-08 Thread Marco d'Itri
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package whois

Data changes only.

unblock whois/5.2.5

-- 
ciao,
Marco
diff -Nru whois-5.2.4/debian/changelog whois-5.2.5/debian/changelog
--- whois-5.2.4/debian/changelog	2015-01-25 04:15:04.0 +0100
+++ whois-5.2.5/debian/changelog	2015-03-03 02:49:57.0 +0100
@@ -1,3 +1,12 @@
+whois (5.2.5) unstable; urgency=medium
+
+  * Added the .xn--90ais (.бел, Belarus) TLD server.
+  * Updated the .ky TLD server.
+  * Updated the list of new gTLDs.
+  * Added new recovered IPv4 allocations.
+
+ -- Marco d'Itri m...@linux.it  Tue, 03 Mar 2015 02:15:57 +0100
+
 whois (5.2.4) unstable; urgency=medium
 
   * Fixed referrals handling for the .cc, .tv a .jobs TLDs.
diff -Nru whois-5.2.4/ip_del_recovered.h whois-5.2.5/ip_del_recovered.h
--- whois-5.2.4/ip_del_recovered.h	2014-09-14 12:52:10.0 +0200
+++ whois-5.2.5/ip_del_recovered.h	2015-03-03 02:49:57.0 +0100
@@ -2,9 +2,13 @@
 { 736886784UL, 737411071UL, whois.apnic.net },
 { 737476608UL, 738000895UL, whois.apnic.net },
 { 738066432UL, 738197503UL, whois.apnic.net },
+{ 755236864UL, 755499007UL, whois.lacnic.net },
+{ 755499008UL, 756023295UL, whois.ripe.net },
 { 756023296UL, 757071871UL, whois.arin.net },
 { 757071872UL, 759169023UL, whois.arin.net },
 { 759169024UL, 759238655UL, whois.apnic.net },
+{ 759431168UL, 759693311UL, whois.lacnic.net },
+{ 759693312UL, 760217599UL, whois.arin.net },
 { 760217600UL, 761266175UL, whois.ripe.net },
 { 761266176UL, 762314751UL, whois.afrinic.net },
 { 762314752UL, 763363327UL, whois.apnic.net },
@@ -12,6 +16,8 @@
 { 765460480UL, 767557631UL, whois.lacnic.net },
 { 767557632UL, 769589247UL, whois.afrinic.net },
 { 769654784UL, 770703359UL, whois.lacnic.net },
+{ 770703360UL, 771227647UL, whois.afrinic.net },
+{ 771227648UL, 771751935UL, whois.apnic.net },
 { 2523594752UL, 2523660287UL, whois.apnic.net },
 { 2525036544UL, 2525102079UL, whois.apnic.net },
 { 2532442112UL, 2532507647UL, whois.apnic.net },
diff -Nru whois-5.2.4/new_gtlds_list whois-5.2.5/new_gtlds_list
--- whois-5.2.4/new_gtlds_list	2015-01-25 04:15:04.0 +0100
+++ whois-5.2.5/new_gtlds_list	2015-03-03 02:49:57.0 +0100
@@ -16,6 +16,7 @@
 alsace
 amsterdam
 android
+apartments
 aquarelle
 archi
 army
@@ -37,6 +38,7 @@
 best
 bid
 bike
+bingo
 bio
 black
 blackfriday
@@ -44,6 +46,7 @@
 blue
 bmw
 bnpparibas
+boats
 boo
 boutique
 brussels
@@ -58,6 +61,7 @@
 camera
 camp
 cancerresearch
+canon
 capetown
 capital
 caravan
@@ -68,11 +72,14 @@
 cartier
 casa
 cash
+casino
 catering
+cbn
 center
 ceo
 cern
 channel
+chat
 cheap
 christmas
 chrome
@@ -100,6 +107,7 @@
 cooking
 cool
 country
+courses
 credit
 creditcard
 cricket
@@ -153,6 +161,7 @@
 expert
 exposed
 fail
+fans
 farm
 fashion
 feedback
@@ -169,6 +178,7 @@
 flsmidth
 fly
 foo
+football
 forsale
 foundation
 frl
@@ -180,6 +190,7 @@
 gallery
 garden
 gbiz
+gdn
 gent
 ggee
 gift
@@ -192,6 +203,7 @@
 gmail
 gmo
 gmx
+goldpoint
 goog
 google
 gop
@@ -244,6 +256,7 @@
 koeln
 krd
 kred
+kyoto
 lacaixa
 land
 lat
@@ -298,9 +311,11 @@
 nexus
 ngo
 nhk
+nico
 ninja
 nra
 nrw
+ntt
 nyc
 okinawa
 one
@@ -366,9 +381,11 @@
 sale
 samsung
 sarl
+saxo
 sca
 scb
 schmidt
+school
 schule
 schwarz
 science
@@ -389,6 +406,9 @@
 soy
 space
 spiegel
+study
+style
+sucks
 supplies
 supply
 support
@@ -403,6 +423,7 @@
 tax
 technology
 temasek
+tennis
 tienda
 tips
 tires
@@ -411,6 +432,7 @@
 tokyo
 tools
 top
+toshiba
 town
 toys
 trade
@@ -496,6 +518,7 @@
 xyz
 yachts
 yandex
+yodobashi
 yoga
 yokohama
 youtube
diff -Nru whois-5.2.4/tld_serv_list whois-5.2.5/tld_serv_list
--- whois-5.2.4/tld_serv_list	2015-01-25 04:15:04.0 +0100
+++ whois-5.2.5/tld_serv_list	2015-03-03 02:49:57.0 +0100
@@ -192,7 +192,7 @@
 .kp	NONE		# NIC? http://www.star.co.kp/
 .kr	whois.kr
 .kw	WEB http://www.kw/
-.ky	WEB http://kynseweb.messagesecure.com/kywebadmin/ # http://www.icta.ky/
+.ky	whois.kyregistry.ky
 .kz	whois.nic.kz
 .la	whois.nic.la
 .lb	WEB http://www.aub.edu.lb/lbdr/
@@ -353,6 +353,7 @@
 .xn--45brj9c		whois.inregistry.net	# India, Bengali AW
 .xn--80ao21a		whois.nic.kz		# Kazakhstan
 .xn--90a3ac		whois.rnids.rs		# Serbia
+.xn--90ais		whois.cctld.by		# Belarus
 .xn--clchc0ea0b2g2a9gcd	whois.sgnic.sg		# Singapore, Tamil
 .xn--d1alf		whois.marnet.mk		# Macedonia
 .xn--fiqs8s		cwhois.cnnic.cn		# China, Simplified Chinese


pgp0YGiPdRJDK.pgp
Description: PGP signature