Bug#639922: Fix package + version

2016-04-21 Thread Mathieu Malaterre
Control: reassign -1 libgl1-mesa-dri 7.7.1-6
Control: found -1 libgl1-mesa-dri 11.1.2-1

Fix version(s) based on OP reports.



Processed (with 1 error): Fix package + version

2016-04-21 Thread Debian Bug Tracking System
Processing control commands:

> reassign -1 libgl1-mesa-dri 7.7.1-6
Bug #639922 [libgl1-mesa-dri-experimental] segfault when mouse cursor comes 
over popup notification
Bug reassigned from package 'libgl1-mesa-dri-experimental' to 'libgl1-mesa-dri'.
No longer marked as found in versions mesa/7.10.3-4.
Ignoring request to alter fixed versions of bug #639922 to the same values 
previously set
Bug #639922 [libgl1-mesa-dri] segfault when mouse cursor comes over popup 
notification
Marked as found in versions mesa/7.7.1-6.
> found -1 libgl1-mesa-dri 11.1.2-1
Unknown command or malformed arguments to command.


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



Processed: your mail

2016-04-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 639922 11.1.2-1
Bug #639922 [libgl1-mesa-dri] segfault when mouse cursor comes over popup 
notification
Marked as found in versions mesa/11.1.2-1.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
639922: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=639922
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: Fwd:

2016-04-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 639922 7.10.3-4
Bug #639922 [libgl1-mesa-dri] segfault when mouse cursor comes over popup 
notification
Marked as found in versions mesa/7.10.3-4.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
639922: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=639922
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#821954: marked as done (libdrm: Patch to _just_ compile on hurd (no functionality implied) , close it)

2016-04-21 Thread Debian Bug Tracking System
Your message dated Thu, 21 Apr 2016 10:32:07 +0200
with message-id <20160421083207.gd2...@betterave.cristau.org>
and subject line Re: Bug#821954: libdrm: diff for NMU version 2.4.67-1.1
has caused the Debian Bug report #821954,
regarding libdrm: Patch to _just_ compile on hurd (no functionality implied) , 
close it
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.)


-- 
821954: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=821954
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libdrm
Version: 2.4.67-1
Severity: normal
Tags: patch pending

Dear maintainer,

I've prepared an NMU for libdrm (versioned as 2.4.67-1.1) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

This NMU ports libdrm to hurd. This will help us to compile e.g
gst-plugins-bad1.0 which will help us to remove obsolete binary
packages and eventually libpng 1.2...

The patch has been written in a way to only change code on hurd,
all other archs are unaffected.

--
tobi

Regards.
diff -u libdrm-2.4.67/debian/changelog libdrm-2.4.67/debian/changelog
--- libdrm-2.4.67/debian/changelog
+++ libdrm-2.4.67/debian/changelog
@@ -1,3 +1,10 @@
+libdrm (2.4.67-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Patch for hurd. (Closes: #xx) 
+
+ -- Tobias Frost   Wed, 20 Apr 2016 21:19:56 +0200
+
 libdrm (2.4.67-1) unstable; urgency=medium
 
   * New upstream release.
diff -u libdrm-2.4.67/debian/patches/series libdrm-2.4.67/debian/patches/series
--- libdrm-2.4.67/debian/patches/series
+++ libdrm-2.4.67/debian/patches/series
@@ -1,0 +2 @@
+02_hurd.patch
only in patch2:
unchanged:
--- libdrm-2.4.67.orig/debian/patches/02_hurd.patch
+++ libdrm-2.4.67/debian/patches/02_hurd.patch
@@ -0,0 +1,147 @@
+--- a/include/drm/drm.h
 b/include/drm/drm.h
+@@ -42,10 +42,19 @@
+ #include 
+ typedef unsigned int drm_handle_t;
+ 
++#elif defined(__gnu_hurd__)
++#include 
++#include 
++
+ #else /* One of the BSDs */
+ 
+ #include 
+ #include 
++
++#endif
++
++#if !defined(__linux__)
++
+ typedef int8_t   __s8;
+ typedef uint8_t  __u8;
+ typedef int16_t  __s16;
+--- a/xf86drm.h
 b/xf86drm.h
+@@ -58,7 +58,11 @@
+ 
+ #else /* One of the *BSDs */
+ 
++#if defined(__gnu_hurd__)
++#include 
++#else
+ #include 
++#endif
+ #define DRM_IOCTL_NR(n) ((n) & 0xff)
+ #define DRM_IOC_VOIDIOC_VOID
+ #define DRM_IOC_READIOC_OUT
+--- a/xf86drm.c
 b/xf86drm.c
+@@ -103,6 +103,16 @@
+ 
+ #define memclear(s) memset(&s, 0, sizeof(s))
+ 
++/* for systems like hurd which does not have PATH_MAX.
++ Usage is only for string manipulation, so it is save to define it.
++ 1kB will be plenty space...*/
++#ifndef PATH_MAX
++#define MY_PATH_MAX (1024)
++#else
++#define MY_PATH_MAX PATH_MAX
++#endif
++
++
+ static drmServerInfoPtr drm_server_info;
+ 
+ void drmSetServerInfo(drmServerInfoPtr info)
+@@ -2835,14 +2845,15 @@
+ static int drmParseSubsystemType(int maj, int min)
+ {
+ #ifdef __linux__
+-char path[PATH_MAX + 1];
+-char link[PATH_MAX + 1] = "";
++
++char path[MY_PATH_MAX + 1];
++char link[MY_PATH_MAX + 1] = "";
+ char *name;
+ 
+-snprintf(path, PATH_MAX, "/sys/dev/char/%d:%d/device/subsystem",
++snprintf(path, MY_PATH_MAX, "/sys/dev/char/%d:%d/device/subsystem",
+  maj, min);
+ 
+-if (readlink(path, link, PATH_MAX) < 0)
++if (readlink(path, link, MY_PATH_MAX) < 0)
+ return -errno;
+ 
+ name = strrchr(link, '/');
+@@ -2857,18 +2868,19 @@
+ #warning "Missing implementation of drmParseSubsystemType"
+ return -EINVAL;
+ #endif
++
+ }
+ 
+ static int drmParsePciBusInfo(int maj, int min, drmPciBusInfoPtr info)
+ {
+ #ifdef __linux__
+-char path[PATH_MAX + 1];
++char path[MY_PATH_MAX + 1];
+ char data[128 + 1];
+ char *str;
+ int domain, bus, dev, func;
+ int fd, ret;
+ 
+-snprintf(path, PATH_MAX, "/sys/dev/char/%d:%d/device/uevent", maj, min);
++snprintf(path, MY_PATH_MAX, "/sys/dev/char/%d:%d/device/uevent", maj, 
min);
+ fd = open(path, O_RDONLY);
+ if (fd < 0)
+ return -errno;
+@@ -2949,11 +2961,11 @@
+  drmPciDeviceInfoPtr device)
+ {
+ #ifdef __linux__
+-char path[PATH_MAX + 1];
++char path[MY_PATH_MAX + 1];
+ unsigned char config[64];
+ int fd, ret;
+ 
+-snprintf(path, PATH_MAX, "/sys/class/drm/%s/device/config", d_name);
++snprintf(path, MY_PATH_MAX, "/sys/class/drm/%s/device/config", d_name);
+ fd = open(path, O_RDONLY);
+ if (fd < 0)
+ return -errno;
+@@ -3082,7 +3094,7 @@
+ DIR *sysdir;
+  

Tuna Accidentally Swallows Seagull,Should Anglers Worry About the Zika Virus?,Last Minute Gear and Prep for Turkey Season Success

2016-04-21 Thread OutdoorHub
To view this mail in a browser, copy 
http://links.outdoorhub.mkt5196.com/servlet/MailView?ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&j=OTAyNjY1NzYwS0&mt=1&rt=0
 into your browser.
OutdoorHub Daily Newswire





Front Page

Video: Tuna Accidentally Swallows Seagull
By: OutdoorHub Reporters
If you spend enough time on the water, you'll get to see all sorts of neat 
things. These anglers at the Port of L'Escala in Spain managed to record this 
video of a tuna swallowing a floating seagull. Apparently it didn't like the 
taste of the bird much, since it spat the confused avian back out several...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=1&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 

Last Minute Gear and Prep for Turkey Season Success
By: Outwrite Outdoors
It’s here! Winter is gone and it’s time to get out into the woods and chase 
longbeards around. Is there any other springtime activity that is more fun than 
turkey hunting? Just any other season, you need to do your pre-hunt prep work. 
It’s also a great reason to go buy some new gear. And who doesn’t...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=30&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 

Senate Passes Energy Bill with Big Benefits for Sportsmen
By: Theodore Roosevelt Conservation Partnership
The Senate has just passed a comprehensive energy reform bill that includes key 
conservation provisions to benefit fish, wildlife, and sportsmen’s access. This 
is a true bipartisan achievement that highlights our uniquely American 
conservation values.

“Sportsmen’s groups, including the Theodore...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=4&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 

Video: Two Barrett 50 BMGs Turn Man into Human Gun Turret
By: OutdoorHub Reporters
We can't speak for his accuracy, but this man is handling a lot of serious 
firepower. Shooting just one Barrett M82/M107 is impressive enough, but two at 
the same time? His arms are going to be sore later. To put things in 
perspective, the M82 fires a .50 BMG round (something which was originally 
designed...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=28&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 

Quiz: Are You Operator as &%#$?
By: OutdoorHub
Do you think you have what it takes to be a Tier X, Super Delta Alpha operator? 
Do you conduct high-risk, low speed, high drag covert missions, specialize in 
direct action, combat search and rescue, and have the gear to prove it? Well, 
instead of packing on an additional five pounds of accessories on...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=29&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 

Should Anglers Worry About the Zika Virus?
By: OutdoorHub Social
Summer means fishing, and that means putting up with mosquitoes.

The government is sounding the alarm that mosquitoes could rapidly spread the 
dangerous Zika Virus as it moves north from countries south of the border -- 
where it is already causing major problems.

How worried should you be?

"Most...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=5&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 

Baits VS Lures: Which is More Beneficial?
By: Gina Sanders
Debates among fishing buddies can cover a wide range of topics. There is so 
much to agree or disagree on that much precious time can be lost in 
conversation. One of the many points to discuss when it comes to successful 
angling is which is more beneficial, bait or a lure?

Although it is indisputable...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=23&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 

Video: Australian Politician Makes Stand for Gun Rights
By: OutdoorHub Reporters
Shots fired! Australian Senator Ricky Muir recently shared a video of himself 
making an impassioned plea for gun rights, specifically on the issue of 12 
gauge lever-action shotguns. Australia is already well known for its tough 
stance on gun control, especially after the Port Arthur massacre in 1996

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=7&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 

OutdoorHub Videos 
Persistence Pays Off - CO Elk 
Adam Wells heads into the high country of Colorado as his patience and 
persistence are put to the te 
 
http://links.outdoorhub.mkt5196.com/ctt?kn=2&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 
- 
Bald Eagle's Second Egg Hatches! 
The second egg in the bald eagles' nest hatches! 
 
http://links.outdoorhub.mkt5196.com/ctt?kn=27&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 
- 
Dead Battery Buck 
This 170 inch buck gets some luck when the camera battery dies. 
 
http://links.outdoorhub.mkt5196.com/ctt?kn=6&ms=NTEyMDI1NTUS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNjY1NzYwS0&mt=1&rt=0
 
- 
Chris 

Bug#822179: xorg: X.Org X Server starts normally, crashes with Segmentation fault on starting any application

2016-04-21 Thread Matthias
Package: xorg
Version: 1:7.7+14
Severity: normal

Dear Maintainer,

X crashes instantly when starting any application, e.g. FF or system 
configuration settings or display settings. The Xorg.0.log file states, 
xorg-server version is 2:1.18.3-1 . System is Debian testing running under hurd.


-- Package-specific info:
X server symlink status:

lrwxr-xr-x 1 root root 13 Dec 28 11:32 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 274 Apr  5 11:40 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--

Xorg X server configuration file status:

-rw-r--r-- 1 root root 131 Dec 28 11:38 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
---
Section "InputDevice"
   Identifier "Generic Keyboard"
   Driver "kbd"
   Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

/etc/X11/xorg.conf.d does not exist.

/etc/modprobe.d contains no KMS configuration files.

Kernel version (/proc/version):
---
Linux version 2.6.1 (GNU 0.7 GNU-Mach 1.6+git20160311-486/Hurd-0.7 i686-AT386)

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 29974 Apr 21 22:45 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[982589.873] 
X.Org X Server 1.18.3
Release Date: 2016-04-04
[982589.873] X Protocol Version 11, Revision 0
[982589.873] Build Operating System: GNU 0.7 i686-AT386 Debian
[982589.873] Current Operating System: GNU debian 0.7 GNU-Mach 
1.6+git20160311-486/Hurd-0.7 i686-AT386
[982589.873] Build Date: 05 April 2016  09:20:21AM
[982589.873] xorg-server 2:1.18.3-1 (http://www.debian.org/support) 
[982589.873] Current version of pixman: 0.33.6
[982589.873]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[982589.873] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[982589.873] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Apr 21 22:44:30 
2016
[982589.883] (==) Using config file: "/etc/X11/xorg.conf"
[982589.883] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[982589.883] (==) No Layout section.  Using the first Screen section.
[982589.883] (==) No screen section available. Using defaults.
[982589.883] (**) |-->Screen "Default Screen Section" (0)
[982589.883] (**) |   |-->Monitor ""
[982589.893] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[982589.893] (==) Not automatically adding devices
[982589.893] (==) Not automatically enabling devices
[982589.893] (==) Not automatically adding GPU devices
[982589.893] (==) Max clients allowed: 256, resource mask: 0x1f
[982589.893] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[982589.893]Entry deleted from font path.
[982589.903] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[982589.903] (==) ModulePath set to "/usr/lib/xorg/modules"
[982589.903] (==) |-->Input Device ""
[982589.903] (==) |-->Input Device "Generic Keyboard"
[982589.903] (==) No Layout section. Using the default mouse configuration.
[982589.903] (==) No Layout section. Using the first keyboard device.
[982589.903] (II) Loader magic: 0x273500
[982589.903] (II) Module ABI versions:
[982589.903]X.Org ANSI C Emulation: 0.4
[982589.903]X.Org Video Driver: 20.0
[982589.903]X.Org XInput driver : 22.1
[982589.903]X.Org Server Extension : 9.0
[982591.283] (--) PCI:*(0:0:15:0) 15ad:0405:15ad:0405 rev 0, Mem @ 
0xe800/134217728, 0xfe00/8388608, I/O @ 0x10d0/16, BIOS @ 
0x/65536
[982591.283] (II) LoadModule: "glx"
[982591.293] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[982591.313] (II) Module glx: vendor="X.Org Foundation"
[982591.313]compiled for 1.18.3, module version = 1.0.0
[982591.313]ABI class: X.Org Server Extension, version 9.0
[982591.313] (==) AIGLX enabled
[982591.313] (==) Matched vmware as autoconfigured driver 0
[982591.313] (==) Matched fbdev as autoconfigured driver 1
[982591.313] (==) Matched vesa as autoconfigured driver 2
[982591.313] (==) Assigned the driver to the xf86ConfigLayout
[982591.313] (II) LoadModule: "vmware"
[982591.313] (II) Loading /usr/lib/xorg/modules/drivers/vmware_drv.so
[982591.313] (II) Module vmware: vendor="X.Org Foundation"
[982591.313]compiled for 1.18.0, module version = 13.1.0
[982591.313]Module class: X.Org Video Driver
[982591.313]ABI class: X.Org Video Driver, version 20.

Tuna Accidentally Swallows Seagull,Should Anglers Worry About the Zika Virus?,Last Minute Gear and Prep for Turkey Season Success

2016-04-21 Thread OutdoorHub
To view this mail in a browser, copy 
http://links.outdoorhub.mkt5196.com/servlet/MailView?ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&j=OTAyNTc5NTUxS0&mt=1&rt=0
 into your browser.
OutdoorHub Daily Newswire





Front Page

Video: Tuna Accidentally Swallows Seagull
By: OutdoorHub Reporters
If you spend enough time on the water, you'll get to see all sorts of neat 
things. These anglers at the Port of L'Escala in Spain managed to record this 
video of a tuna swallowing a floating seagull. Apparently it didn't like the 
taste of the bird much, since it spat the confused avian back out several...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=1&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 

Last Minute Gear and Prep for Turkey Season Success
By: Outwrite Outdoors
It’s here! Winter is gone and it’s time to get out into the woods and chase 
longbeards around. Is there any other springtime activity that is more fun than 
turkey hunting? Just any other season, you need to do your pre-hunt prep work. 
It’s also a great reason to go buy some new gear. And who doesn’t...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=30&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 

Senate Passes Energy Bill with Big Benefits for Sportsmen
By: Theodore Roosevelt Conservation Partnership
The Senate has just passed a comprehensive energy reform bill that includes key 
conservation provisions to benefit fish, wildlife, and sportsmen’s access. This 
is a true bipartisan achievement that highlights our uniquely American 
conservation values.

“Sportsmen’s groups, including the Theodore...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=4&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 

Video: Two Barrett 50 BMGs Turn Man into Human Gun Turret
By: OutdoorHub Reporters
We can't speak for his accuracy, but this man is handling a lot of serious 
firepower. Shooting just one Barrett M82/M107 is impressive enough, but two at 
the same time? His arms are going to be sore later. To put things in 
perspective, the M82 fires a .50 BMG round (something which was originally 
designed...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=28&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 

Quiz: Are You Operator as &%#$?
By: OutdoorHub
Do you think you have what it takes to be a Tier X, Super Delta Alpha operator? 
Do you conduct high-risk, low speed, high drag covert missions, specialize in 
direct action, combat search and rescue, and have the gear to prove it? Well, 
instead of packing on an additional five pounds of accessories on...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=29&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 

Should Anglers Worry About the Zika Virus?
By: OutdoorHub Social
Summer means fishing, and that means putting up with mosquitoes.

The government is sounding the alarm that mosquitoes could rapidly spread the 
dangerous Zika Virus as it moves north from countries south of the border -- 
where it is already causing major problems.

How worried should you be?

"Most...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=5&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 

Baits VS Lures: Which is More Beneficial?
By: Gina Sanders
Debates among fishing buddies can cover a wide range of topics. There is so 
much to agree or disagree on that much precious time can be lost in 
conversation. One of the many points to discuss when it comes to successful 
angling is which is more beneficial, bait or a lure?

Although it is indisputable...

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=23&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 

Video: Australian Politician Makes Stand for Gun Rights
By: OutdoorHub Reporters
Shots fired! Australian Senator Ricky Muir recently shared a video of himself 
making an impassioned plea for gun rights, specifically on the issue of 12 
gauge lever-action shotguns. Australia is already well known for its tough 
stance on gun control, especially after the Port Arthur massacre in 1996

Read More: 
http://links.outdoorhub.mkt5196.com/ctt?kn=7&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 

OutdoorHub Videos 
Persistence Pays Off - CO Elk 
Adam Wells heads into the high country of Colorado as his patience and 
persistence are put to the te 
 
http://links.outdoorhub.mkt5196.com/ctt?kn=2&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 
- 
Bald Eagle's Second Egg Hatches! 
The second egg in the bald eagles' nest hatches! 
 
http://links.outdoorhub.mkt5196.com/ctt?kn=27&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 
- 
Dead Battery Buck 
This 170 inch buck gets some luck when the camera battery dies. 
 
http://links.outdoorhub.mkt5196.com/ctt?kn=6&ms=NTExOTgxODMS1&r=NDcyMzY2MjExMDMS1&b=2&j=OTAyNTc5NTUxS0&mt=1&rt=0
 
- 
Chris 

xinit: Changes to 'debian-unstable'

2016-04-21 Thread Timo Aaltonen
 debian/changelog  |7 +++
 debian/xinit.postinst |3 ++-
 2 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 091916933d19240c60b1eeaff8b61139bb3c6d6e
Author: Timo Aaltonen 
Date:   Fri Apr 22 06:53:35 2016 +0300

postinst: Check that xinitrc exists before trying to chmod it. (LP: 
#1562033)

diff --git a/debian/changelog b/debian/changelog
index 68ad392..513c3e1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xinit (1.3.4-4) UNRELEASED; urgency=medium
+
+  * postinst: Check that xinitrc exists before trying to chmod it. (LP:
+#1562033)
+
+ -- Timo Aaltonen   Fri, 22 Apr 2016 06:53:18 +0300
+
 xinit (1.3.4-3) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/xinit.postinst b/debian/xinit.postinst
index e0d08f6..6555210 100644
--- a/debian/xinit.postinst
+++ b/debian/xinit.postinst
@@ -8,7 +8,8 @@ set -e
 case "$1" in
 configure)
if dpkg --compare-versions "$2" lt-nl "1.3.4-2~"; then
-if ! dpkg-statoverride --list /etc/X11/xinit/xinitrc >/dev/null 
2>&1; then
+if ! dpkg-statoverride --list /etc/X11/xinit/xinitrc >/dev/null 
2>&1 && \
+[ -e /etc/X11/xinit/xinitrc ]; then
 chmod 0755 /etc/X11/xinit/xinitrc
 fi
fi



Processed: your mail

2016-04-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> clone 639922 -1
Bug #639922 [libgl1-mesa-dri] segfault when mouse cursor comes over popup 
notification
Bug 639922 cloned as bug 80
> reassign -1 xserver-xorg-video-nouveau
Bug #80 [libgl1-mesa-dri] segfault when mouse cursor comes over popup 
notification
Bug reassigned from package 'libgl1-mesa-dri' to 'xserver-xorg-video-nouveau'.
No longer marked as found in versions mesa/7.10.3-4, mesa/7.7.1-6, and 
mesa/11.1.2-1.
Ignoring request to alter fixed versions of bug #80 to the same values 
previously set
> retitle -1 "../../nouveau/pushbuf.c", [...] "pushbuf_krel") at assert.c:101
Bug #80 [xserver-xorg-video-nouveau] segfault when mouse cursor comes over 
popup notification
Changed Bug title to '"../../nouveau/pushbuf.c", [...] "pushbuf_krel") at 
assert.c:101' from 'segfault when mouse cursor comes over popup notification'.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
639922: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=639922
80: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=80
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#822220:

2016-04-21 Thread Mathieu Malaterre
В письме от 21 апреля 2016 07:49:29 Вы написали:
> On Thu, Apr 21, 2016 at 7:42 AM, Vladimir Berezenko 
> Could you please then try again after installing debug package:
> 'qtdeclarative5-dbg'. Then from gdb type :
> gdb> bt full

A little bit later.

> Thanks much

I've got segfault in nouveau. Here's the kcrash log

--
WBR, Vladimir Berezenko
Application: Plasma (plasmashell), signal: Aborted
Using host libthread_db library "/lib/powerpc-linux-gnu/libthread_db.so.1".
[Current thread is 1 (Thread 0xf7919000 (LWP 28434))]

Thread 8 (Thread 0xf7788320 (LWP 28435)):
#0  0x0d31e588 in poll () at ../sysdeps/unix/syscall-template.S:84
#1  0x0f916870 in ?? () from /usr/lib/powerpc-linux-gnu/libxcb.so.1
#2  0x0f9192b4 in xcb_wait_for_event () from 
/usr/lib/powerpc-linux-gnu/libxcb.so.1
#3  0x090e5208 in QXcbEventReader::run (this=0x) at 
qxcbconnection.cpp:1230
#4  0x0d694404 in QThreadPrivate::start (arg=0x1089ab08) at 
thread/qthread_unix.cpp:331
#5  0x0d0dd410 in start_thread (arg=0xf7788320) at pthread_create.c:336
#6  0x0d32b16c in clone () at 
../sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S:93

Thread 7 (Thread 0xf63f4320 (LWP 28436)):
#0  0x0c6250b8 in g_mutex_lock () from /lib/powerpc-linux-gnu/libglib-2.0.so.0
#1  0x0c5c988c in g_main_context_prepare () from 
/lib/powerpc-linux-gnu/libglib-2.0.so.0
#2  0x0c5ca544 in ?? () from /lib/powerpc-linux-gnu/libglib-2.0.so.0
#3  0x0c5ca790 in g_main_context_iteration () from 
/lib/powerpc-linux-gnu/libglib-2.0.so.0
#4  0x0d92032c in QEventDispatcherGlib::processEvents (this=0xf5a02738, 
flags=...) at kernel/qeventdispatcher_glib.cpp:420
#5  0x0d8b2314 in QEventLoop::processEvents (this=this@entry=0xf63f3bd4, 
flags=...) at kernel/qeventloop.cpp:128
#6  0x0d8b2a00 in QEventLoop::exec (this=this@entry=0xf63f3bd4, flags=...) at 
kernel/qeventloop.cpp:204
#7  0x0d68d7dc in QThread::exec (this=) at thread/qthread.cpp:503
#8  0x0f1015c8 in ?? () from /usr/lib/powerpc-linux-gnu/libQt5Qml.so.5
#9  0x0d694404 in QThreadPrivate::start (arg=0x109399b8) at 
thread/qthread_unix.cpp:331
#10 0x0d0dd410 in start_thread (arg=0xf63f4320) at pthread_create.c:336
#11 0x0d32b16c in clone () at 
../sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S:93

Thread 6 (Thread 0xf406d320 (LWP 28437)):
#0  0x0c6250b8 in g_mutex_lock () from /lib/powerpc-linux-gnu/libglib-2.0.so.0
#1  0x0c5c9720 in g_main_context_prepare () from 
/lib/powerpc-linux-gnu/libglib-2.0.so.0
#2  0x0c5ca544 in ?? () from /lib/powerpc-linux-gnu/libglib-2.0.so.0
#3  0x0c5ca790 in g_main_context_iteration () from 
/lib/powerpc-linux-gnu/libglib-2.0.so.0
#4  0x0d92032c in QEventDispatcherGlib::processEvents (this=0xf3702938, 
flags=...) at kernel/qeventdispatcher_glib.cpp:420
#5  0x0d8b2314 in QEventLoop::processEvents (this=this@entry=0xf406cbd4, 
flags=...) at kernel/qeventloop.cpp:128
#6  0x0d8b2a00 in QEventLoop::exec (this=this@entry=0xf406cbd4, flags=...) at 
kernel/qeventloop.cpp:204
#7  0x0d68d7dc in QThread::exec (this=) at thread/qthread.cpp:503
#8  0x0f1015c8 in ?? () from /usr/lib/powerpc-linux-gnu/libQt5Qml.so.5
#9  0x0d694404 in QThreadPrivate::start (arg=0x109275f0) at 
thread/qthread_unix.cpp:331
#10 0x0d0dd410 in start_thread (arg=0xf406d320) at pthread_create.c:336
#11 0x0d32b16c in clone () at 
../sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S:93

Thread 5 (Thread 0xf2c89320 (LWP 28440)):
#0  0x0d31e588 in poll () at ../sysdeps/unix/syscall-template.S:84
#1  0x0c5dcdd4 in g_poll () from /lib/powerpc-linux-gnu/libglib-2.0.so.0
#2  0x0c5ca628 in ?? () from /lib/powerpc-linux-gnu/libglib-2.0.so.0
#3  0x0c5ca790 in g_main_context_iteration () from 
/lib/powerpc-linux-gnu/libglib-2.0.so.0
#4  0x0d92032c in QEventDispatcherGlib::processEvents (this=0xf2302938, 
flags=) at 
kernel/qeventdispatcher_glib.cpp:420
#5  0x0d8b2314 in QEventLoop::processEvents (this=this@entry=0xf2c88bd4, 
flags=...) at kernel/qeventloop.cpp:128
#6  0x0d8b2a00 in QEventLoop::exec (this=this@entry=0xf2c88bd4, flags=...) at 
kernel/qeventloop.cpp:204
#7  0x0d68d7dc in QThread::exec (this=) at thread/qthread.cpp:503
#8  0x0f1015c8 in ?? () from /usr/lib/powerpc-linux-gnu/libQt5Qml.so.5
#9  0x0d694404 in QThreadPrivate::start (arg=0x10b756c0) at 
thread/qthread_unix.cpp:331
#10 0x0d0dd410 in start_thread (arg=0xf2c89320) at pthread_create.c:336
#11 0x0d32b16c in clone () at 
../sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S:93

Thread 4 (Thread 0xf1a9f320 (LWP 28441)):
#0  0x0d0e5798 in __pthread_cond_wait (cond=0xff32d04, mutex=0xff32cec) at 
pthread_cond_wait.c:186
#1  0x0d33cee8 in __pthread_cond_wait (cond=, mutex=) at forward.c:149
#2  0x0fe77f48 in ?? () from /usr/lib/powerpc-linux-gnu/libQt5Script.so.5
#3  0x0fe77fb0 in ?? () from /usr/lib/powerpc-linux-gnu/libQt5Script.so.5
#4  0x0d0dd410 in start_thread (arg=0xf1a9f320) at pthread_create.c:336
Backtrace stopped: previous frame inner to this frame (corrupt stack?)

Thread 3 (Thread 0xf05ff320 (LWP 28442)):
#0  0x0c6250b8 in g_mutex_lock () from /lib/powerpc-lin

Processed: your mail

2016-04-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 80 libdrm-nouveau2 2.4.58-2
Bug #80 [xserver-xorg-video-nouveau] "../../nouveau/pushbuf.c", [...] 
"pushbuf_krel") at assert.c:101
Bug reassigned from package 'xserver-xorg-video-nouveau' to 'libdrm-nouveau2'.
Ignoring request to alter found versions of bug #80 to the same values 
previously set
Ignoring request to alter fixed versions of bug #80 to the same values 
previously set
Bug #80 [libdrm-nouveau2] "../../nouveau/pushbuf.c", [...] "pushbuf_krel") 
at assert.c:101
Marked as found in versions libdrm/2.4.58-2.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
80: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=80
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#821389: xinput: please support distinct device IDs

2016-04-21 Thread Harald Dunkel
Hi Julien,

On 04/20/16 11:41, Julien Cristau wrote:
> I don't think there's an xinput bug here.  xinput just doesn't have any
> more information about the devices...
> 
> Cheers,
> Julien
> 

There is only one "Logitech USB Receiver" plugged in. At
least the "mouse:Logitech USB Receiver" recommended by
xinput itself should work. Does it stumble over the space
chars?

BTW, the man page says

device can be the device name as a string or the XID of the device.

, but thats broken, too:

% lsusb -d 046d:c525
Bus 003 Device 002: ID 046d:c525 Logitech, Inc. MX Revolution Cordless 
Mouse

% xinput list-props 046d:c525
unable to find device 046d:c525


Please reassign, if necessary. Thanx very much
Harri