Processed: tags 807925 + pending

2015-12-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 807925 + pending
Bug #807925 [wnpp] ITP: golang-github-hashicorp-atlas-go -- The official Go 
client for HashiCorp's Atlas
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#605090:

2015-12-20 Thread bancfc
Is there other ways to deal with unwanted network stack modules like 
Appletalk besides going in and manually disabling them in config before 
compiling?


Is disabling module loading enough?

Please give some insight if its okay to discuss.



Processed: 808410

2015-12-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> owner 808410 li...@jcf.pm
Bug #808410 [wnpp] RFA: re2c -- tool for generating fast C-based recognizers
Owner recorded as li...@jcf.pm.
> retitle 808410 ITA: re2c -- tool for generating fast C-based recognizers
Bug #808410 [wnpp] RFA: re2c -- tool for generating fast C-based recognizers
Changed Bug title to 'ITA: re2c -- tool for generating fast C-based 
recognizers' from 'RFA: re2c -- tool for generating fast C-based recognizers'
>
End of message, stopping processing here.

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



Bug#808564: RFP: searx -- privacy-respecting, hackable metasearch engine

2015-12-20 Thread W. Martin Borgert
Package: wnpp
Severity: wishlist

* Package name: searx
  Version : 0.8.0
  Upstream Author : Adam Tauber, 
* URL : https://github.com/asciimoo/searx/
* License : AGPL3+
  Programming Lang: Python
  Description : privacy-respecting, hackable metasearch engine

Features of searx are:
 * Tracking free
 * Supports multiple output formats
   * json curl https://searx.me/?format=json=[query]
   * csv curl https://searx.me/?format=csv=[query]
   * opensearch/rss curl https://searx.me/?format=rss=[query]
 * Opensearch support (you can set as default search engine)
 * Configurable search engines/categories
 * Different search languages
 * Duckduckgo like !bang functionality with engine shortcuts
 * Parallel queries - relatively fast



Bug#743638: RFP: shairport -- Play music streamed from iTunes/iPads/iPods

2015-12-20 Thread Daniel Carter
On Sun, 20 Dec 2015 09:47:23 + Chris Boot  wrote:
>
> I would *definitely* appreciate patches from anyone who wishes to help,
> or even co-maintenance.

Nice work.

I just put a bit of effort into getting the systemd service side of things
working.  Happy to contribute those, see attached diff. (not sure how
alioth works, cant see how to do a pull request there?).  The patch for the
systemd unit path i have done a pull request for, so if that is accepted
you can drop that.

Though perhaps you intend this not to be a daemon package?

Regards,
Dan.
diff --git a/debian/control b/debian/control
index d7b5e00..c777519 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: shairport-sync
 Section: sound
 Priority: extra
 Maintainer: Chris Boot 
-Build-Depends: debhelper (>= 9), dh-autoreconf, dh-systemd, libasound2-dev, 
libavahi-client-dev, libconfig-dev, libdaemon-dev, libpopt-dev, libpulse-dev, 
libsoxr-dev, libssl-dev
+Build-Depends: debhelper (>= 9), dh-autoreconf, dh-systemd, systemd, 
libasound2-dev, libavahi-client-dev, libconfig-dev, libdaemon-dev, libpopt-dev, 
libpulse-dev, libsoxr-dev, libssl-dev
 Standards-Version: 3.9.6
 Homepage: https://github.com/mikebrady/shairport-sync
 Vcs-Git: git://anonscm.debian.org/collab-maint/shairport-sync.git
@@ -10,7 +10,7 @@ Vcs-Browser: 
http://anonscm.debian.org/cgit/collab-maint/shairport-sync.git/
 
 Package: shairport-sync
 Architecture: linux-any
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, adduser
 Description: AirPlay audio player
  Plays audio streamed from iTunes, iOS devices and third-party AirPlay
  sources such as ForkedDaapd and others. Audio played by a Shairport
diff --git a/debian/patches/correct-systemd-unit-path.diff 
b/debian/patches/correct-systemd-unit-path.diff
new file mode 100644
index 000..84b8f6c
--- /dev/null
+++ b/debian/patches/correct-systemd-unit-path.diff
@@ -0,0 +1,36 @@
+--- a/Makefile.am
 b/Makefile.am
+@@ -61,6 +61,6 @@ if INSTALL_SYSTEMV
+   [ -f $(DESTDIR)/etc/init.d/shairport-sync ] || cp 
scripts/shairport-sync $(DESTDIR)/etc/init.d/
+ endif
+ if INSTALL_SYSTEMD
+-  [ -e $(DESTDIR)/usr/lib/systemd/system ] || mkdir -p 
$(DESTDIR)/usr/lib/systemd/system
+-  cp scripts/shairport-sync.service $(DESTDIR)/usr/lib/systemd/system
++  [ -e $(DESTDIR)$(systemdsystemunitdir) ] || mkdir -p 
$(DESTDIR)$(systemdsystemunitdir)
++  cp scripts/shairport-sync.service $(DESTDIR)$(systemdsystemunitdir)
+ endif
+--- a/configure.ac
 b/configure.ac
+@@ -213,6 +213,22 @@ AC_ARG_WITH(dns_sd, [  --with-dns_sd = c
+   AC_SEARCH_LIBS([DNSServiceRefDeallocate], [dns_sd], , AC_MSG_ERROR(dns_sd 
support requires the dns_sd library!))], )
+ AM_CONDITIONAL([USE_DNS_SD], [test "x$HAS_DNS_SD" = "x1"])
+ 
++# Find systemd unit dir
++AC_ARG_WITH([systemdsystemunitdir],
++ [AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for 
systemd service files])],,
++ [with_systemdsystemunitdir=auto])
++AS_IF([test "x$with_systemdsystemunitdir" = "xyes" -o 
"x$with_systemdsystemunitdir" = "xauto"], [
++ def_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir 
systemd)
++
++ AS_IF([test "x$def_systemdsystemunitdir" = "x"],
++   [AS_IF([test "x$with_systemdsystemunitdir" = "xyes"],
++[AC_MSG_ERROR([systemd support requested but pkg-config unable to query 
systemd package])])
++with_systemdsystemunitdir=no],
++   [with_systemdsystemunitdir="$def_systemdsystemunitdir"])])
++AS_IF([test "x$with_systemdsystemunitdir" != "xno"],
++  [AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])])
++AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$with_systemdsystemunitdir" != "xno"])
++
+ # Checks for header files.
+ AC_HEADER_STDC
+ AC_CHECK_HEADERS([getopt_long.h])
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..6a10cf6
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,3 @@
+correct-systemd-unit-path.diff
+use-usr-bin-not-usr-local-bin-in-systemd.diff
+use-usr-bin-not-usr-local-bin-in-init.diff
diff --git a/debian/patches/use-usr-bin-not-usr-local-bin-in-init.diff 
b/debian/patches/use-usr-bin-not-usr-local-bin-in-init.diff
new file mode 100644
index 000..9340d5b
--- /dev/null
+++ b/debian/patches/use-usr-bin-not-usr-local-bin-in-init.diff
@@ -0,0 +1,11 @@
+--- a/scripts/shairport-sync
 b/scripts/shairport-sync
+@@ -17,7 +17,7 @@
+ PATH=/sbin:/usr/sbin:/bin:/usr/bin
+ DESC="AirPlay Synchronous Audio Service"
+ NAME=shairport-sync
+-DAEMON=/usr/local/bin/$NAME
++DAEMON=/usr/bin/$NAME
+ 
+ # We don't use the DAEMON_ARGS variable here because some of the identifiers 
may have spaces in them, and so are
+ # impossible to pass as arguments.
diff --git a/debian/patches/use-usr-bin-not-usr-local-bin-in-systemd.diff 
b/debian/patches/use-usr-bin-not-usr-local-bin-in-systemd.diff
new file mode 100644
index 000..2b1571c
--- /dev/null
+++ 

Bug#605090:

2015-12-20 Thread Jacob Appelbaum
To make my Debian Jessie system work with pax, I had to set pax flags
for these three binaries:

  paxctl -c -m /usr/bin/gnome-shell
  paxctl -c -m /usr/bin/gnome-session
  paxctl -c -m /usr/bin/pulseaudio

If you don't want to modify the binary, you can also set the
attributes in the file system:

  setfattr -n user.pax.flags -v m /usr/bin/gnome-shell
  setfattr -n user.pax.flags -v m /usr/bin/gnome-session
  setfattr -n user.pax.flags -v m /usr/bin/pulseaudio

You will need the `attr` package to run the above command. See
https://wiki.debian.org/grsecurity/setfattr for more information. It
may make sense to add a suggestion on the grsec kernel package for
attr.

The above allowed me to properly start GDM and to login to my system.
To use iceweasel and other utilities, I had to modify other things. I
also was able to set `kernel.grsecurity.disable_priv_io=0` after
running the setfattr commands above.

I additionally had to set the following to make the following programs
"work" with this kernel:

  setfattr -n user.pax.flags -v m /usr/bin/seahorse
  setfattr -n user.pax.flags -v m /usr/bin/iceweasel
  setfattr -n user.pax.flags -v m /usr/bin/chromium
  setfattr -n user.pax.flags -v m /usr/lib/chromium/chromium

For those who care pulse audio was also making some log entries about
"denied resource overstep by requesting 25 for RLIMIT_NICE against
limit 0 for /usr/bin/pulseaudio" - I reconfigured it with an edit to
/etc/pulseaudio/daemon.conf to add 'high-priority = no' and the kernel
stopped complaining.

I now only see two grsec denied messages on by Debian jessie system after boot:

[9.560994] grsec: denied use of ioperm() by
/usr/lib/xorg/Xorg[Xorg:891] uid/euid:0/0 gid/egid:0/0, parent
/usr/sbin/gdm3[gdm3:885] uid/euid:0/0 gid/egid:0/0
[   12.091674] grsec: denied priority change of process
(rtkit-daemon:1066) by /usr/lib/rtkit/rtkit-daemon[rtkit-daemon:1066]
uid/euid:107/107 gid/egid:114/114, parent
/lib/systemd/systemd[systemd:1] uid/euid:0/0 gid/egid:0/0

After login - I see the following grsec messages:

[  448.243314] grsec: denied untrusted exec (due to not being in
trusted group and file in non-root-owned directory) of
/run/user/1000/orcexec.pIjl0t by
/usr/bin/pulseaudio[alsa-source-ALC:1617] uid/euid:1000/1000
gid/egid:1000/1000, parent /lib/systemd/systemd[systemd:1]
uid/euid:0/0 gid/egid:0/0
[  448.243366] grsec: denied untrusted exec (due to not being in
trusted group and file in non-root-owned directory) of
/home/error/orcexec.iEBctM by
/usr/bin/pulseaudio[alsa-source-ALC:1617] uid/euid:1000/1000
gid/egid:1000/1000, parent /lib/systemd/systemd[systemd:1]
uid/euid:0/0 gid/egid:0/0
[  448.243405] grsec: denied untrusted exec (due to not being in
trusted group and file in world-writable directory) of
/tmp/orcexec.VrI4V4 by /usr/bin/pulseaudio[alsa-source-ALC:1617]
uid/euid:1000/1000 gid/egid:1000/1000, parent
/lib/systemd/systemd[systemd:1] uid/euid:0/0 gid/egid:0/0
[  448.999276] grsec: denied RWX mmap of  by
/usr/share/system-config-printer/applet.py[applet.py:1661]
uid/euid:1000/1000 gid/egid:1000/1000, parent
/usr/bin/gnome-session[x-session-manag:1464] uid/euid:1000/1000
gid/egid:1000/1000
[  448.999349] grsec: denied untrusted exec (due to not being in
trusted group and file in world-writable directory) of /tmp/ffixSCBQp
by /usr/share/system-config-printer/applet.py[applet.py:1661]
uid/euid:1000/1000 gid/egid:1000/1000, parent
/usr/bin/gnome-session[x-session-manag:1464] uid/euid:1000/1000
gid/egid:1000/1000
[  448.999395] grsec: denied untrusted exec (due to not being in
trusted group and file in world-writable directory) of
/var/tmp/ffiQhZWhL by
/usr/share/system-config-printer/applet.py[applet.py:1661]
uid/euid:1000/1000 gid/egid:1000/1000, parent
/usr/bin/gnome-session[x-session-manag:1464] uid/euid:1000/1000
gid/egid:1000/1000
[  448.999422] grsec: denied untrusted exec (due to not being in
trusted group and file in world-writable directory) of
/dev/shm/ffi5YViJ6 by
/usr/share/system-config-printer/applet.py[applet.py:1661]
uid/euid:1000/1000 gid/egid:1000/1000, parent
/usr/bin/gnome-session[x-session-manag:1464] uid/euid:1000/1000
gid/egid:1000/1000
[  448.999457] grsec: more alerts, logging disabled for 10 seconds
[  449.760884] EXT4-fs (sdb1): mounted filesystem with ordered data
mode. Opts: (null)

To eliminate most of those issues, I ran:

  setfattr -n user.pax.flags -v m /usr/bin/seahorse
  setfattr -n user.pax.flags -v m /usr/bin/gjs-console
  setfattr -n user.pax.flags -v m /usr/bin/python

I was left with:

[ 1802.373906] grsec: denied untrusted exec (due to not being in
trusted group and file in non-root-owned directory) of
/run/user/1000/orcexec.bCtW1V by
/usr/bin/pulseaudio[alsa-source-ALC:3038] uid/euid:1000/1000
gid/egid:1000/1000, parent /lib/systemd/systemd[systemd:1]
uid/euid:0/0 gid/egid:0/0
[ 1802.373967] grsec: denied untrusted exec (due to not being in
trusted group and file in non-root-owned directory) of
/home/error/orcexec.SzaIXb by

Bug#808569: ITP: awsshell -- The interactive productivity booster for the AWS CLI

2015-12-20 Thread 陳昌倬
Package: wnpp
Severity: wishlist
Owner: "ChangZhuo Chen (陳昌倬)" 

* Package name: awsshell
  Version : 0.0.1
  Upstream Author : James Saryerwinnie
* URL : https://github.com/awslabs/aws-shell
* License : Apache-2
  Programming Lang: python
  Description : The interactive productivity booster for the AWS CLI

 awsshell provides a interactive environment to control AWS services.
 The following features are supported:
 .
 * Auto completion of commands and options
 * Shorthand auto completion
 * Server side auto completion
 * Fuzzy searching
 * Inline documentation
 * Fish-style auto suggestions
 * Command history
 * Toolbar options
 * Dot commands
 * Executing Shell Commands

-- 
ChangZhuo Chen (陳昌倬) 
Debian Developer (https://nm.debian.org/public/person/czchen)
Key fingerprint = EC9F 905D 866D BE46 A896  C827 BE0C 9242 03F4 552D


signature.asc
Description: PGP signature


Bug#605090: Git tag signing

2015-12-20 Thread bancfc
I just wanted to mention Git tag signing. Its a very useful security 
feature we use for protecting source code builds in our project.


https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work



Bug#808440: ITP: pkgdiff -- tool for visualizing changes in Linux software packages

2015-12-20 Thread Peter Spiess-Knafl
Package: wnpp
Severity: wishlist
Owner: "Peter Spiess-Knafl" 

* Package name: pkgdiff
  Version : 1.7.1
  Upstream Author : Andrey Ponomarenko 
* URL : https://github.com/lvc/pkgdiff
* License : GPL-2
  Programming Lang: Perl
  Description : tool for visualizing changes in Linux software packages

Package Changes Analyzer (pkgdiff) - a tool for visualizing changes in Linux
software packages (RPM, DEB, TAR.GZ, etc). The tool is intended for Linux
maintainers who are interested in ensuring compatibility of old and new
versions of packages.

The tool gives a brief overview about new upstream source or binary packages.
It is used inside the abi-tracker, which I plan to bring to Debian [1].

Therefore I first need to package all of abi-tracker's dependencies.

[1]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808260



Bug#743638: RFP: shairport -- Play music streamed from iTunes/iPads/iPods

2015-12-20 Thread Chris Boot
On 2015-12-19 21:19, Daniel Carter wrote:
> Hi Folks,
> 
> Mikes just pointed me at this effort.  I've setup a debian package for
> this, which you may or may not find worthy for re-use (I'm a total
> newbie at packaging).  In particular i did take the time to fill out the
> copyright file, but i did this based on the claims in the licenses file,
> i didn't do any forensic work tracing the forks through github.
> 
> https://launchpad.net/~dantheperson/+archive/ubuntu/shairplay-sync
> 
> _https://github.com/dantheperson/packaging/tree/master/shairport-sync/debian_

Hi Dan, all,

I've also made a start at packaging, and spent some time on the
copyright file. I haven't yet look at Dan's copyright file but I
appreciate the effort you've put in and will definitely take a look.

I've uploaded my effort so far to collab-maint (where I intend for it to
reside):

http://anonscm.debian.org/cgit/collab-maint/shairport-sync.git

I would *definitely* appreciate patches from anyone who wishes to help,
or even co-maintenance.

HTH,
Chris

-- 
Chris Boot
deb...@bootc.net
GPG: 8467 53CB 1921 3142 C56D  C918 F5C8 3C05 D9CE 



Processed: dependencies

2015-12-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 808427 by 671282
Bug #808427 [wnpp] RFP: kaldi -- Kaldi speech recognition toolkit
808427 was blocked by: 671282
808427 was blocking: 782763
Ignoring request to alter blocking bugs of bug #808427 to the same blocks 
previously set
> thanks
Stopping processing here.

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



Bug#745399: Any progress on mailpile?

2015-12-20 Thread Alexandre Viau
Hello Guys,

Is there any progress on the Mailpile ITP? Did someone take a look at
the dependencies?


-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Processed: node-restore: block ITP 804507 by RFS 808546

2015-12-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 804507 by 808546
Bug #804507 [wnpp] ITP: node-restore -- Simple remoteStorage server written in 
Node.js
804507 was not blocked by any bugs.
804507 was not blocking any bugs.
Added blocking bug(s) of 804507: 808546
> stop
Stopping processing here.

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



Bug#807085: ITP: Ubiquity -- This is a simple live CD installer designed to integrate well with Debian- and Ubuntu-based systems

2015-12-20 Thread Raju


On 19 दिसम्बर 2015 11:46:06 pm IST, Zlatan Todoric  wrote:
>Hi Raju
>
>On Sat, 5 Dec 2015 12:45:15 +0530 Raju  wrote:
>> package: wnpp
>> Severity: wishlist
>> Owner: 'Raju Vindane' 
>> 
>> *Package Name : ubiquity
>>   Version :2.21.38
>>   Upstream Author : Guadalinex, Colin Watson , Jonathan Riddell ,
>Evan Dandrea
>> *URL :  https://launchpad.net/ubiquity
>> *License : GNU GPL v2
>> *Description : Ubiquity is a simple graphical live CD installer
>designed to integrate
>> well with Debian- and Ubuntu-based systems, written largely in
>Python,
>> using d-i as a backend for many of its functions for ease of
>> maintenance.
>> 
>> 
>> Raju Vindane
>> 
>> 
>> 
>
>It's awesome to see you want to package this for Debian! Do you have
>already done some initial work or I you starting from scratch? (did you
>contact Colin about possible problems you could hit during packaging
>it)?
>

Hi zlatan,
I have little experience of ruby packaging for Debian. 
I have just got started on porting it for Hamara Linux (which will be a Debian 
based distro). 
Once I get successful with that, I will start packaging it in Debian. 



>Cheers and all best,

Thanks a lot. Its a huge task. 
>
>zlatan

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.



Bug#808445: ITP: vim-editorconfig -- EditorConfig Plugin for Vim

2015-12-20 Thread Michael Fladischer
Package: wnpp
Severity: wishlist
Owner: Michael Fladischer 

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

* Package name: vim-editorconfig
  Version : 0.3.3
  Upstream Author : EditorConfig Team
* URL : https://github.com/editorconfig/editorconfig-vim
* License : BSD_2-clause
  Programming Lang: VimScript
  Description : EditorConfig Plugin for Vim

 EditorConfig helps developers define and maintain consistent coding styles for
 their projects for different editors and IDEs. The EditorConfig project
 consists of a file format for defining coding styles and a collection of text
 editor plugins that enable editors to read the file format and adhere to
 defined styles. EditorConfig files are easily readibly and they work nicely
 with version control systems.
 .
 The EditorConfig Vim plugin supports the following EditorConfig properties:
 * indent_style
 * indent_size
 * tab_width
 * end_of_line
 * charset
 * insert_final_newline
 * trim_trailing_whitespace
 * max_line_length
 * root (only used by EditorConfig core)

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWdnSxAAoJEGlMre9Rx7W2Ad8QALYJfmBN7FU35owOOjnI7JAu
poUVEs7VD7JhBUrja7yX8sna/H7Hs00gPngbp3srnKcuqmjMzKDSfcZ6qTn8oVgb
xBWyszX5WRwroVllhgBhv/RygCZfbTHMrnuohtrSPTf54+HreUNk+FNBTMie863h
jQWOmgvh2N8k7HHPP9nvJJs0YCaQ4pyutQJNaYHmTt8UYgakxjv8NS9nteNkg8w+
5pfOHwetSz84Ks+VgPeAepqgh+3E+rMsUeotUBQQXHFfsiHedWcqAEbDVCjRJfpo
/NB+dJ9pKPheF2E0zf4YF0BsmP7C0pbtINhPysHUK2Nme7JLEm1g7A7Fj6Wvs45E
5UfYQcgHFVY2DJjRXO6+Zz20N9WeYJ5+EkBTBT1nYjMfpypHl7WraU4g8yZnZpfP
JHYMj/b82U84wN2JjCvu0KEupSGlqI7rLh+etZ6YpEvgmIELjk1HKYIRwdjVE87Q
FUAHAXE/1Tt5T3kQwbOIZSv3D2lqlzTRf+ed24HylkuZX4aBKu4tKNDhBpxO16oP
ChyZMi7MZOcnkUxuuyLhdHOAgJAyN0v7wHwOtfNFQZMU1Qr7EvCs3l2RLDfcW2yJ
tMjJqjSt9l8SkJqDLq/XNVc17jvcCw0GzsF30lR15GGypN9BGglNgo5Q7I1zP3Jq
bFJaeZ8OnetGmupUb+R3
=YzsB
-END PGP SIGNATURE-



Bug#605090: linux-grsec testing

2015-12-20 Thread Yves-Alexis Perez
On dim., 2015-12-20 at 00:32 +, ban...@openmailbox.org wrote:
> Hi. After testing the kernel X doesn't boot because restrict mprotect is 
> enabled.


Hi,

it's most likely because you're using nvidia/nouveau or amd/radeon graphic
card, and the userland driver uses LLVMpipe which in turns uses JIT code. I
don't have the issue with my intel graphic card.

>  Are there plans to integrate a PaX exception list so mprotect 
> can be enabled system wide while common software can still work?

I don't have any, I'm mostly interested in the kernel part right now. Also the
exceptions are really system-specific, and you don't want them if you don't
really need them.

Regards,
-- 
Yves-Alexis



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


Bug#808414: ITP: ms-sys -- Program for writing Microsoft compatible boot records

2015-12-20 Thread Marco d'Itri
On Dec 20, lucas castro  wrote:

> I'll take a look at ms-sys-free.
Can you clarify which features it provides over the existing mbr 
package?

-- 
ciao,
Marco



Processed: dependencies

2015-12-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 782763 by 808427
Bug #782763 [wnpp] RFP: sirius -- Speech and Vision Based Intelligent Personal 
Assistant
782763 was not blocked by any bugs.
782763 was not blocking any bugs.
Added blocking bug(s) of 782763: 808427
> block 808427 by 671282
Bug #808427 [wnpp] RFP: kaldi -- Kaldi speech recognition toolkit
808427 was not blocked by any bugs.
808427 was blocking: 782763
Added blocking bug(s) of 808427: 671282
> thanks
Stopping processing here.

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



Bug#808577: ITP: ruby-mime-types-data -- registry for information about MIME media type definitions

2015-12-20 Thread Balasankar C
Package: wnpp
Owner: Balasankar C 
Severity: wishlist

* Package name : ruby-mime-types-data
  Version : 3.2015.1120
  Upstream Author  : Austin Ziegler 
* URL  :
https://github.com/mime-types/mime-types-data/
* License: Expat
  Programming Lang   : Ruby
  Description  : registry for information about MIME media
type definitions


-- 
Regards
Balasankar C
http://balasankarc.in



Processed: Bug#805636 marked as pending

2015-12-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 805636 pending
Bug #805636 {Done: Mike Gabriel } [wnpp] ITP: 
mate-user-guide -- User Documentation for MATE Desktop Environment
Added tag(s) pending.
> thanks
Stopping processing here.

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



Processed: tagging 808072

2015-12-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 808072 + pending
Bug #808072 [wnpp] ITP: mdp -- command-line based markdown presentation tool
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#808495: ITP: roary -- high speed stand alone pan genome pipeline

2015-12-20 Thread Sascha Steinbiss
Package: wnpp
Severity: wishlist
Owner: Sascha Steinbiss 

* Package name: roary
  Version : 3.5.7
  Upstream Author : Andrew J. Page 
* URL : http://sanger-pathogens.github.io/Roary/
* License : GPL-3+
  Programming Lang: Perl
  Description : high speed stand alone pan genome pipeline

Roary is a high speed stand alone pan genome pipeline, which takes annotated
assemblies in GFF3 format (as produced, for instance, by Prokka) and calculates
the pan genome. Using a standard desktop PC, it can analyse datasets with
thousands of samples, something which is computationally infeasible with
existing methods, without compromising the quality of the results. 128 samples
can be analysed in under 1 hour using 1 GB of RAM and a single processor.
To perform this analysis using existing methods would take weeks and hundreds
of GB of RAM. Roary is not intended for meta-genomics or for comparing
extremely diverse sets of genomes.

This package will be maintained under the umbrella of the Debian Med
Packaging Team.



Processed: Re: ITP: corebird -- Native Gtk+ Twitter client for the Linux desktop

2015-12-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> owner 770087 !
Bug #770087 [wnpp] ITP: corebird -- Native Gtk+ Twitter client for the Linux 
desktop
Bug #783209 [wnpp] ITP: corebird -- Modern, easy and fun Twitter client
Owner changed from Adnan Hodzic  to Philip Rinn 
.
Owner changed from Adnan Hodzic  to Philip Rinn 
.
> thanks
Stopping processing here.

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



Bug#770087: ITP: corebird -- Native Gtk+ Twitter client for the Linux desktop

2015-12-20 Thread Philip Rinn
owner 770087 !
thanks

Hi Adnan,

thanks for the reply. I already finished tha packaging and I'm looking for a
sponsor now.

Best,
Philip


On 20.12.2015 at 16:26, Adnan Hodzic wrote:
> Hey Philip, 
> 
> Edward Betts and I agreed to co-maintain this package. However after that we 
> met
> on DebConf15 and we decided we won't maintain it  after all. 
> 
> Package was created and ready to go, so please cherry-pick whatever you need
> (git://4angle.com/git/corebird.git )
> 
> You're free to take ownership of this ITP and I wish you all the best. I'm 
> hoping
> we'll see corebird as a package in Debian soon.
> 
> Let me know if you have any other questions and/or comments.
> 
> Adnan
> 
> On Fri, Dec 18, 2015 at 1:03 PM, Philip Rinn  > wrote:
> 
> Hi,
> 
> to give people the chance to build corebird themselves I prepared a 
> package and
> uploaded it to mentors:
> 
> http://mentors.debian.net/package/corebird
> 
> From my point of view this could be uploaded right away - Adnan, could 
> you please
> comment if you plan to make an upload soon or if you are willing to hand 
> over this
> ITP. You last comment on this ITP was over seven month ago.
> 
> Best,
> Philip




signature.asc
Description: OpenPGP digital signature


Bug#795686: marked as done (ITP: xserver-xorg-video-amdgpu -- X.Org X server -- AMDGPU video driver)

2015-12-20 Thread Debian Bug Tracking System
Your message dated Sun, 20 Dec 2015 17:00:24 +
with message-id 
and subject line Bug#795686: fixed in xserver-xorg-video-amdgpu 
0.0.01~git20150807-1
has caused the Debian Bug report #795686,
regarding ITP: xserver-xorg-video-amdgpu -- X.Org X server -- AMDGPU video 
driver
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.)


-- 
795686: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=795686
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Timo Aaltonen 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: xserver-xorg-video-amdgpu
  Version : 0.0.01~git20150807
  Upstream Author : Advanced Micro Devices, Inc.
* URL : http://www.x.org
* License : MIT/X
  Programming Lang: C
  Description : X.Org X server -- AMDGPU video driver

 This package provides the 'amdgpu' driver for the AMD Radeon cards. The
 following chip families should be supported: Bonaire, Hawaii, Kaveri,
 Kabini, Mullins, Iceland, Tonga, Carrizo.
 .
 More information about X.Org can be found at:
 
 .
 This package is built from the X.org xf86-video-amdgpu driver module.
--- End Message ---
--- Begin Message ---
Source: xserver-xorg-video-amdgpu
Source-Version: 0.0.01~git20150807-1

We believe that the bug you reported is fixed in the latest version of
xserver-xorg-video-amdgpu, which is due to be installed in the Debian FTP 
archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 795...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Timo Aaltonen  (supplier of updated 
xserver-xorg-video-amdgpu package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 16 Aug 2015 11:26:30 +0300
Source: xserver-xorg-video-amdgpu
Binary: xserver-xorg-video-amdgpu xserver-xorg-video-amdgpu-dbg
Architecture: source amd64
Version: 0.0.01~git20150807-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Description:
 xserver-xorg-video-amdgpu - X.Org X server -- AMDGPU display driver
 xserver-xorg-video-amdgpu-dbg - X.Org X server -- AMDGPU display driver 
(debugging symbols)
Closes: 795686
Changes:
 xserver-xorg-video-amdgpu (0.0.01~git20150807-1) unstable; urgency=low
 .
   * Initial release (Closes: #795686)
Checksums-Sha1:
 5bae7e3dd6228622ebd205f7532b73ca20f2f15b 2234 
xserver-xorg-video-amdgpu_0.0.01~git20150807-1.dsc
 79dfc899cd11ecf47a858a91664a18785f7dd43e 246583 
xserver-xorg-video-amdgpu_0.0.01~git20150807-1.tar.gz
 30a4d7ae9b3788db5a300c1ba43701ece1994582 314804 
xserver-xorg-video-amdgpu-dbg_0.0.01~git20150807-1_amd64.deb
 8f97460c6e7fbbedbad4119bf496e448ccc32658 47338 
xserver-xorg-video-amdgpu_0.0.01~git20150807-1_amd64.deb
Checksums-Sha256:
 343f6a769cfb9047042c068c5947b83fa99987bf2f1f172b7b50a72b7ef76a93 2234 
xserver-xorg-video-amdgpu_0.0.01~git20150807-1.dsc
 6c4516f0f634a253dec15987c05b915680a1764e2a4bc8dc0b29262f8594066d 246583 
xserver-xorg-video-amdgpu_0.0.01~git20150807-1.tar.gz
 5ad619a1da09bb438f7dc17102a791680a5f9516221008161eac07a79f545a85 314804 
xserver-xorg-video-amdgpu-dbg_0.0.01~git20150807-1_amd64.deb
 dc4611513eb2810726d637ad0bebe8b63ee8f025fbbb1038b44ae77f90ec0a6c 47338 
xserver-xorg-video-amdgpu_0.0.01~git20150807-1_amd64.deb
Files:
 11ee994d0b20dcc65abbbed7bfd65483 2234 x11 optional 
xserver-xorg-video-amdgpu_0.0.01~git20150807-1.dsc
 718a9251a0b7321938f19f52882ffb9e 246583 x11 optional 
xserver-xorg-video-amdgpu_0.0.01~git20150807-1.tar.gz
 3ac3eea58d51785e13bc0bbaba6371f3 314804 debug extra 
xserver-xorg-video-amdgpu-dbg_0.0.01~git20150807-1_amd64.deb
 476a94ac91ba500d6a43f328f28bbff0 47338 x11 optional 
xserver-xorg-video-amdgpu_0.0.01~git20150807-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJV0F4fAAoJEMtwMWWoiYTcLx4QAIDabCpe57xngySnzYG193f+
6+a3Ubq76fmbgDThPFW5od+sm7uNv/KkaaPXa0u9+UGYSXuPt1D8WHxrbXud+Vvu
3cEfttdiFgfEGFe6+oh/52A9f1sZTXWj2PYR4EZzqPmTVI1i1Ah5X7hDGH7vmdCd
SglBXO+XNrCbK16BbDqlfbfzddjii9Ke7yci+0YK10r42hq6w+bAeiWMZJQ3/3L0

Bug#808097: marked as done (ITP: ruby-semantic-puppet -- Useful tools for working with semantic versions with Puppet)

2015-12-20 Thread Debian Bug Tracking System
Your message dated Sun, 20 Dec 2015 17:00:23 +
with message-id 
and subject line Bug#808097: fixed in ruby-semantic-puppet 0.1.1-1
has caused the Debian Bug report #808097,
regarding ITP: ruby-semantic-puppet -- Useful tools for working with semantic 
versions with Puppet
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.)


-- 
808097: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808097
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Sebastien Badia 

* Package name: ruby-semantic-puppet
  Version : 0.1.1
  Upstream Author : Puppet Labs 
* URL : https://github.com/puppetlabs/semantic_puppet
* License : Apache-2
  Programming Lang: Ruby
  Description : Useful tools for working with semantic versions with Puppet

 Tools used by Puppet to parse, validate, and compare semantic versions and
 version ranges and to query and resolve module dependencies.
 This library is used by a number of Puppet Labs projects, including Puppet and
 r10k.

This package is intended to be maintained within the package-puppet team.
 https://anonscm.debian.org/cgit/pkg-puppet/ruby-semantic-puppet.git
--- End Message ---
--- Begin Message ---
Source: ruby-semantic-puppet
Source-Version: 0.1.1-1

We believe that the bug you reported is fixed in the latest version of
ruby-semantic-puppet, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 808...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Markus Frosch  (supplier of updated ruby-semantic-puppet 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Dec 2015 14:41:16 +0100
Source: ruby-semantic-puppet
Binary: ruby-semantic-puppet
Architecture: source all
Version: 0.1.1-1
Distribution: unstable
Urgency: medium
Maintainer: Puppet Package Maintainers 

Changed-By: Markus Frosch 
Description:
 ruby-semantic-puppet - Useful tools for working with semantic versions with 
Puppet
Closes: 808097
Changes:
 ruby-semantic-puppet (0.1.1-1) unstable; urgency=medium
 .
   [ Sebastien Badia ]
   * Initial release (Closes: #808097)
Checksums-Sha1:
 2ef630fc6e9d6f67a70c52a916dc989c375770ea 1814 ruby-semantic-puppet_0.1.1-1.dsc
 39d9cb939a3bc1c6b4e8b1f45698e3498955d5b6 22338 
ruby-semantic-puppet_0.1.1.orig.tar.gz
 629ed0ff2647685a8bae1e5d7dfd5a9176b31aa2 1888 
ruby-semantic-puppet_0.1.1-1.debian.tar.xz
 47dc139bc6eaab3edc94551baae65bd7c20e5794 12212 
ruby-semantic-puppet_0.1.1-1_all.deb
Checksums-Sha256:
 a007de169b8579128958795d7936f3267d7106da504ea79af8e6298578f8b3e1 1814 
ruby-semantic-puppet_0.1.1-1.dsc
 ebb018885527998be55ac30c0da8937657bcfc1d6bf9783faaa9d8c755ef3085 22338 
ruby-semantic-puppet_0.1.1.orig.tar.gz
 f206f6984acdb4971a014aa71a6682c19cafabde45b19b93d91d00cf3051ca79 1888 
ruby-semantic-puppet_0.1.1-1.debian.tar.xz
 f09f3b4a7da2b555b42304ef8b17f1c773a59f0a4f5710ba4da32a5c4b950682 12212 
ruby-semantic-puppet_0.1.1-1_all.deb
Files:
 3fb256671c157eec24f8cb1ee453b69f 1814 ruby optional 
ruby-semantic-puppet_0.1.1-1.dsc
 7af0618f99d500158782b2d0bb9a52b4 22338 ruby optional 
ruby-semantic-puppet_0.1.1.orig.tar.gz
 971245f53d6b07281c34865086a9379e 1888 ruby optional 
ruby-semantic-puppet_0.1.1-1.debian.tar.xz
 7e0d3f317389089353c313176daf1cd2 12212 ruby optional 
ruby-semantic-puppet_0.1.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCAAGBQJWcrv9AAoJEPJhXZqrmHtuoDUIAJKx8LubpB/7x7lfw8dR7Z4t
dV4JGLvTbytrE52cCgJRzzEBAm5+BJvMhcFYtdDwn39qlu8BTb4MDYptjlEZzP29
RD+Z7Kvw5KVjRl+D6MJisdMdmcuHGITEfPSfWe6CY+f6omfsi22imLfDlNVK8OBm
90R1UPsezmGpP9QWEWWYLgVmk32j8f5L8M3dPxpY+nDlQCpbRgwfcTWGipfkosXg
0QYK8IlK07y7ZZ7yDSNV0Ux1R1iSEUxvarCJBLM3wrnuuGStBSijPBvt1az/GyVG
zONmW6bpPlxTPO34Zkc6qs8PrV9am5QTyS37Q7/CRoQxvwhgW2aCJB1nDXV8k0k=
=XuI0
-END PGP SIGNATURE End Message ---


Bug#808351: marked as done (ITP: libfile-grep-perl -- find matches to a pattern in a series of files and related functions)

2015-12-20 Thread Debian Bug Tracking System
Your message dated Sun, 20 Dec 2015 17:00:18 +
with message-id 
and subject line Bug#808351: fixed in libfile-grep-perl 0.02-1
has caused the Debian Bug report #808351,
regarding ITP: libfile-grep-perl -- find matches to a pattern in a series of 
files and related functions
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.)


-- 
808351: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808351
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Sascha Steinbiss 

* Package name: libfile-grep-perl
  Version : 0.02
  Upstream Author : Michael K. Neylon  
* URL : https://metacpan.org/release/File-Grep
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : find matches to a pattern in a series of files and related 
functions

File::Grep provides similar functionality as perl's builtin grep, map,
and foreach commands, but iterating over a passed filelist instead of
arrays.  While trivial, this module can provide a quick dropin when
such functionality is needed.

This package will be maintained under the umbrella of the Debian Perl Group.
--- End Message ---
--- Begin Message ---
Source: libfile-grep-perl
Source-Version: 0.02-1

We believe that the bug you reported is fixed in the latest version of
libfile-grep-perl, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 808...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sascha Steinbiss  (supplier of updated libfile-grep-perl 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 19 Dec 2015 16:35:21 +
Source: libfile-grep-perl
Binary: libfile-grep-perl
Architecture: source all
Version: 0.02-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: Sascha Steinbiss 
Description:
 libfile-grep-perl - module for pattern matching in a series of files
Closes: 808351
Changes:
 libfile-grep-perl (0.02-1) unstable; urgency=low
 .
   * Initial Release (Closes: #808351).
Checksums-Sha1:
 34e1f334bdf093d02133dc1287d1c4768ba1661e 2194 libfile-grep-perl_0.02-1.dsc
 9f7dab673e18cad72edc13191e868d552988f24d 4877 
libfile-grep-perl_0.02.orig.tar.gz
 e047f7dd3b3ea71fed3017d51dd695292a8660ce 1540 
libfile-grep-perl_0.02-1.debian.tar.xz
 23561e417a21ff0f7cdc49b5e2db3658bf05c15d 7654 libfile-grep-perl_0.02-1_all.deb
Checksums-Sha256:
 9977eed492fb65275118f38392b7fe6cb9f368c904ff0f631fab2946eed9e96c 2194 
libfile-grep-perl_0.02-1.dsc
 462e15274eb6278521407ea302d9eea7252cd44cab2382871f7de833d5f85632 4877 
libfile-grep-perl_0.02.orig.tar.gz
 f13163d42ab1339b2c73576dee3fc1587cfb44ff015ae9df1b9c1c3c9bf9ef8d 1540 
libfile-grep-perl_0.02-1.debian.tar.xz
 3cc0efaf60698804cf1a0ea887c04cd3b853e2e6fd210db87819917a23c69505 7654 
libfile-grep-perl_0.02-1_all.deb
Files:
 d10e76d2d772bee5960fe7080dafbd17 2194 perl optional 
libfile-grep-perl_0.02-1.dsc
 6ea1d06a385229b1c015db23e1ef93fa 4877 perl optional 
libfile-grep-perl_0.02.orig.tar.gz
 4f5334f60b70e026098e68e736873228 1540 perl optional 
libfile-grep-perl_0.02-1.debian.tar.xz
 667fda0a6a2072219817782d38fe11b7 7654 perl optional 
libfile-grep-perl_0.02-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAEBCgBmBQJWdYk5XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGTa0QAJHQx/3LSHBFP14S23+sa/wj
o5AzkXhKAH1zB5ZQHTBvsFrIbEcvylr1DMQOQnxDchzcIkBzqPFiKjH86plUiEUz
4kOIFctUZxrrURq6hFbwrAqBgZ9NR8pE3uSFDYjJmoUJEuFjXoy/H0z6xswKg2zm
JttlKciWXgDKyoarQhDoDdBruCHTYXYAouncYUxY9aV5Y7jvu9T3GlKYSB8vxKO1
Veg3YdaP/5qe+HSB5cVFeCTn5o0O5TO7g5KT+7SaMdTaLcDBj20wV12oiAiBEgiz
nhkjWkyw0COlszSguRpzTTO5mcodkvfW3tcD8Oc72RIsKM/Wc6sDi4NPl1dMx2fE
WKXs8jrP3ccHZCyvGKKp4eW1i9pqn6U/rE2wTcdPFoaohlzgXeokjMevGDMO6qjx
AYdaQ3LWsZV9+uaPttauCqT/MYu5l2tubpA9BBN9qrx0hB43CJw21MrPbiifO+B4
Gm31smXMim65xQbXaNOVFnlgZxtxvrZY662L5EGQ+ApzXoAEf8V8JmmlPLATCyvG

Bug#770087: ITP: corebird -- Native Gtk+ Twitter client for the Linux desktop

2015-12-20 Thread Adnan Hodzic
Hey Philip,

Edward Betts and I agreed to co-maintain this package. However after that
we met on DebConf15 and we decided we won't maintain it  after all.

Package was created and ready to go, so please cherry-pick whatever you
need (git://4angle.com/git/corebird.git)

You're free to take ownership of this ITP and I wish you all the best. I'm
hoping we'll see corebird as a package in Debian soon.

Let me know if you have any other questions and/or comments.

Adnan

On Fri, Dec 18, 2015 at 1:03 PM, Philip Rinn  wrote:

> Hi,
>
> to give people the chance to build corebird themselves I prepared a
> package and
> uploaded it to mentors:
>
> http://mentors.debian.net/package/corebird
>
> From my point of view this could be uploaded right away - Adnan, could you
> please
> comment if you plan to make an upload soon or if you are willing to hand
> over this
> ITP. You last comment on this ITP was over seven month ago.
>
> Best,
> Philip
>
>


Bug#808350: marked as done (ITP: libtest-files-perl -- Test::Builder based module to ease testing with files and dirs)

2015-12-20 Thread Debian Bug Tracking System
Your message dated Sun, 20 Dec 2015 17:00:18 +
with message-id 
and subject line Bug#808350: fixed in libtest-files-perl 0.14-1
has caused the Debian Bug report #808350,
regarding ITP: libtest-files-perl -- Test::Builder based module to ease testing 
with files and dirs
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.)


-- 
808350: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808350
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Sascha Steinbiss 

* Package name: libtest-files-perl
  Version : 0.14 
  Upstream Author : Phil Crow 
* URL : https://metacpan.org/release/Test-Files
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Test::Builder based module to ease testing with files and 
dirs

This is a Test::Builder based module to ease testing with files and
directories, e.g. compare the contents of a file to a string, compare the
contents of two files, check a directory for the presence of a list of files,
compare all text files in two directories reporting any differences, etc.

This package will be maintained under the umbrella of the Debian Perl Group.
--- End Message ---
--- Begin Message ---
Source: libtest-files-perl
Source-Version: 0.14-1

We believe that the bug you reported is fixed in the latest version of
libtest-files-perl, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 808...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sascha Steinbiss  (supplier of updated 
libtest-files-perl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 19 Dec 2015 16:36:35 +
Source: libtest-files-perl
Binary: libtest-files-perl
Architecture: source all
Version: 0.14-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: Sascha Steinbiss 
Description:
 libtest-files-perl - module to ease testing with files and directories
Closes: 808350
Changes:
 libtest-files-perl (0.14-1) unstable; urgency=low
 .
   * Initial Release (Closes: #808350).
Checksums-Sha1:
 fccc546aac152fdcbf81f48f1e1e61df5959b6fb 2252 libtest-files-perl_0.14-1.dsc
 6e5a5320c4dc039e4d968d9962a00bc78ec0ac59 11520 
libtest-files-perl_0.14.orig.tar.gz
 445148f60586362de4185f6ebc88e0f140071ba9 1536 
libtest-files-perl_0.14-1.debian.tar.xz
 7386221a8770283cfc3a47ab4d9d3945ba4c9010 11214 
libtest-files-perl_0.14-1_all.deb
Checksums-Sha256:
 0abf284a77090ee31c53b850194c14d92d58fabba04fc85778dee751b311b0e5 2252 
libtest-files-perl_0.14-1.dsc
 96ceabf035243048f591bfe135ed3f7619b63b25597a92658807dbffa21fc3fe 11520 
libtest-files-perl_0.14.orig.tar.gz
 754ab4cf6e514cc82f7fc5d79640844eb942d7e0fa48d38b2ed6fa0d5ce84812 1536 
libtest-files-perl_0.14-1.debian.tar.xz
 b60de623a507dbb74cc8b438c342b1aed77545e2cfad5c5717bed951e66f0eb8 11214 
libtest-files-perl_0.14-1_all.deb
Files:
 ccec8f2d6e9e871c1767aec4ff19798a 2252 perl optional 
libtest-files-perl_0.14-1.dsc
 52139ac7bfcd77ebc0469d1dae18b80e 11520 perl optional 
libtest-files-perl_0.14.orig.tar.gz
 1bee7ec8fab113096171e21c40140126 1536 perl optional 
libtest-files-perl_0.14-1.debian.tar.xz
 da2305f71d09585f1dbc455b0da8efaa 11214 perl optional 
libtest-files-perl_0.14-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAEBCgBmBQJWdYmoXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREMUUxMzE2RTkzQTc2MEE4MTA0RDg1RkFC
QjNBNjgwMTg2NDlBQTA2AAoJELs6aAGGSaoGHocQAKB25KT8BpkXngTCq9dJfPrP
8lCxbTRDd7kHd+B0JMfJccscb1LY38CC5UKBg0ms8+yhWT3lyZHxccX0SyA5WLKm
US0x48LhDGXjh+8kHlfzsqpwxTU92nDqVff0q5RbGJFOPx6enkmAQqaF+I5jwQEb
PFjZgoZOv8oH+hA5zinN69ESVLJnYZoC487pzY+5GuqPpRjb2NzPnci16v4SW6Xi
sixH5DACn9RQhRYkgUbJjgUcZ+jZO69rGceCWGjGoev1BIHdR088EjhQHIzvPpe4
GDLrSZjJfhVo1Cxx0UKwu0vEMG69l/VYV4iSDSEpsB31pKFVdJl9AFusT2vNgXeL
AVWFyXSmQMtMENxxSPJzWJVGYYREpHmaU0Fr7k16SJCVaj9sLkpz+A6l9aS2w8mU
hrfDi04DNwUwg5kxOvNDPSQFhAmwdg1i7aLZUa6jkzziOudn4gJF8vxDAbmfaBEg

Processed: owner 804507 !

2015-12-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> owner 804507 !
Bug #804507 [wnpp] ITP: node-restore -- Simple remoteStorage server written in 
Node.js
Owner changed from Markus Sabadello  to Markus 
Sabadello .
> stop
Stopping processing here.

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



Bug#605090: linux-grsec testing

2015-12-20 Thread Yves-Alexis Perez
On dim., 2015-12-20 at 19:28 +, ban...@openmailbox.org wrote:
> Agreed but there are many major software packages especially on the 
> desktop that need exceptions to work for example Iceweasel and by 
> extension Tor Browser.

Sure. I'm just not interested in maintaining that list myself.
> 
> For these you can just use paxd.conf that's maintained by Arch but the 
> list will need some tweaking for binary paths and package name 
> differences between them and Debian. Please see:
> 
> https://wiki.archlinux.org/index.php/PaX#User_exceptions
> https://github.com/thestinger/paxd/blob/master/paxd.conf

If you're volunteering to package paxd for Debian, feel free :)

Regards,
-- 
Yves-Alexis



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


Bug#605090: linux-grsec testing

2015-12-20 Thread bancfc

On 2015-12-20 09:51, Yves-Alexis Perez wrote:

On dim., 2015-12-20 at 00:32 +, ban...@openmailbox.org wrote:
Hi. After testing the kernel X doesn't boot because restrict mprotect 
is 

enabled.



Hi,

it's most likely because you're using nvidia/nouveau or amd/radeon 
graphic
card, and the userland driver uses LLVMpipe which in turns uses JIT 
code. I

don't have the issue with my intel graphic card.


I see. In a KVM guest there is a similar conflict situation with the QXL 
driver too.





 Are there plans to integrate a PaX exception list so mprotect 
can be enabled system wide while common software can still work?


I don't have any, I'm mostly interested in the kernel part right now. 
Also the
exceptions are really system-specific, and you don't want them if you 
don't

really need them.



Agreed but there are many major software packages especially on the 
desktop that need exceptions to work for example Iceweasel and by 
extension Tor Browser.


For these you can just use paxd.conf that's maintained by Arch but the 
list will need some tweaking for binary paths and package name 
differences between them and Debian. Please see:


https://wiki.archlinux.org/index.php/PaX#User_exceptions
https://github.com/thestinger/paxd/blob/master/paxd.conf

Great work. I look forward to testing more releases in the future.


Regards,




Bug#605090: [RFC] Proposal for a new linux-grsec source package

2015-12-20 Thread Jacob Appelbaum
It may make sense for us to have a package of paxrat with common
configurations for Debian users:

  https://github.com/subgraph/paxrat

This would ensure that everyone can use this kernel and have xorg work
as expected, for example.

Otherwise, I think we will see a lot of people who just run:

  paxctl -m /usr/bin/Xorg

paxctl one off runs isn't great for a full solution.

paxrat improves on this as package updates and other things can stomp
on pax related xattributes. paxrat seems very very useful in this
context - we get configuration files as well as dpkg hooks.