[DRE-maint] ruby-asetus is marked for autoremoval from testing

2016-05-01 Thread Debian testing autoremoval watch
ruby-asetus 0.3.0-1 is marked for autoremoval from testing on 2016-05-25

It (build-)depends on packages with these RC bugs:
818155: ruby-toml: FTBFS: NoMethodError: undefined method `map' for 
"strings"@50:Parslet::Slice


___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] ruby-toml is marked for autoremoval from testing

2016-05-01 Thread Debian testing autoremoval watch
ruby-toml 0.1.2-3 is marked for autoremoval from testing on 2016-05-25

It is affected by these RC bugs:
818155: ruby-toml: FTBFS: NoMethodError: undefined method `map' for 
"strings"@50:Parslet::Slice


___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] jekyll is marked for autoremoval from testing

2016-05-01 Thread Debian testing autoremoval watch
jekyll 3.0.1+dfsg-1 is marked for autoremoval from testing on 2016-05-25

It (build-)depends on packages with these RC bugs:
818155: ruby-toml: FTBFS: NoMethodError: undefined method `map' for 
"strings"@50:Parslet::Slice


___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#820144: marked as done (rdtool: please honour SOURCE_DATE_EPOCH)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 May 2016 22:27:22 +
with message-id 
and subject line Bug#820144: fixed in rdtool 0.6.38-4
has caused the Debian Bug report #820144,
regarding rdtool: please honour SOURCE_DATE_EPOCH
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.)


-- 
820144: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=820144
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: rdtool
Version: 0.6.38-3
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: toolchain
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

While working on the “reproducible builds” effort [1], we have noticed
that several packages (like apt-listbugs) use rdtool in their building
process, resulting in timestamps (month and year of build) in man files
that break reproducibility.

To solve this kind of issues, it would be nice to have rdtool support
the SOURCE_DATE_EPOCH environment variable [2].

See the attached patch for a proposed solution.

Regards,
Alexis Bienvenüe.

[1] https://wiki.debian.org/ReproducibleBuilds
[2] https://reproducible-builds.org/specs/source-date-epoch/

diff -Nru rdtool-0.6.38/debian/changelog rdtool-0.6.38/debian/changelog
--- rdtool-0.6.38/debian/changelog	2014-09-09 11:16:13.0 +0200
+++ rdtool-0.6.38/debian/changelog	2016-04-05 19:52:49.0 +0200
@@ -1,3 +1,9 @@
+rdtool (0.6.38-3.0~reproducible1) unstable; urgency=medium
+
+  * Honour the SOURCE_DATE_EPOCH environment variable.
+
+ -- Alexis Bienvenüe   Tue, 05 Apr 2016 19:52:49 +0200
+
 rdtool (0.6.38-3) unstable; urgency=medium
 
   * Team upload.
diff -Nru rdtool-0.6.38/debian/patches/040_honour_SOURCE_DATE_EPOCH rdtool-0.6.38/debian/patches/040_honour_SOURCE_DATE_EPOCH
--- rdtool-0.6.38/debian/patches/040_honour_SOURCE_DATE_EPOCH	1970-01-01 01:00:00.0 +0100
+++ rdtool-0.6.38/debian/patches/040_honour_SOURCE_DATE_EPOCH	2016-04-05 20:00:27.0 +0200
@@ -0,0 +1,26 @@
+Description: Honour the SOURCE_DATE_EPOCH environment variable
+ If the environment variable SOURCE_DATE_EPOCH is set, uses this date
+ instead of current date for generated man pages.
+ See https://reproducible-builds.org/specs/source-date-epoch/
+Author: Alexis Bienvenüe 
+
+Index: rdtool-0.6.38/lib/rd/rd2man-lib.rb
+===
+--- rdtool-0.6.38.orig/lib/rd/rd2man-lib.rb
 rdtool-0.6.38/lib/rd/rd2man-lib.rb
+@@ -43,9 +43,14 @@ module RD
+   content = content.join
+   title = guess_title
+   title = title.sub(/\.rd$/i, '').upcase
++  if ENV['SOURCE_DATE_EPOCH'].nil?
++date=Time.now
++  else
++date=Time.at(ENV['SOURCE_DATE_EPOCH'].to_i).gmtime
++  end
+   <<"EOT"
+ .\\" DO NOT MODIFY THIS FILE! it was generated by rd2
+-.TH #{title} 1 "#{Time.now.strftime '%B %Y'}"
++.TH #{title} 1 "#{date.strftime '%B %Y'}"
+ #{content}
+ EOT
+ end # "
diff -Nru rdtool-0.6.38/debian/patches/series rdtool-0.6.38/debian/patches/series
--- rdtool-0.6.38/debian/patches/series	2014-01-23 19:25:38.0 +0100
+++ rdtool-0.6.38/debian/patches/series	2016-04-05 19:50:18.0 +0200
@@ -1,2 +1,3 @@
 010_change_dot_rd2rc_path
 020_test_load_fix
+040_honour_SOURCE_DATE_EPOCH
--- End Message ---
--- Begin Message ---
Source: rdtool
Source-Version: 0.6.38-4

We believe that the bug you reported is fixed in the latest version of
rdtool, 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 820...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Hofstaedtler  (supplier of updated rdtool 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: Sun, 01 May 2016 20:33:46 +
Source: rdtool
Binary: rdtool ruby-rd rdtool-elisp
Architecture: source
Version: 0.6.38-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 rdtool - RD document formatter
 rdtool-elisp - Emacs-lisp rd-mode for writing RD document
 ruby-rd- RDTool library for Ruby - library
Closes: 820144
Changes:
 rdtool (0.6.38-4) unstable; urgency=medium
 .
  

[DRE-maint] Bug#819079: marked as done (ruby-powerpack ships without a gemspec file)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 May 2016 22:27:44 +
with message-id 
and subject line Bug#819079: fixed in ruby-powerpack 0.1.1-3
has caused the Debian Bug report #819079,
regarding ruby-powerpack ships without a gemspec file
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.)


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

Package: ruby-powerpack
Version: 0.1.1-2
Severity: serious
Tags: sid stretch

ruby-powerpack ships without a gemspec file, making it useless to fulfil 
dependencies.
--- End Message ---
--- Begin Message ---
Source: ruby-powerpack
Source-Version: 0.1.1-3

We believe that the bug you reported is fixed in the latest version of
ruby-powerpack, 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 819...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastien Badia  (supplier of updated ruby-powerpack 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: Tue, 29 Mar 2016 00:35:22 +0200
Source: ruby-powerpack
Binary: ruby-powerpack
Architecture: source
Version: 0.1.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Sebastien Badia 
Description:
 ruby-powerpack - Useful extensions to core Ruby classes
Closes: 819079
Changes:
 ruby-powerpack (0.1.1-3) unstable; urgency=medium
 .
   * Rebuild, using a newer version of gem2deb (Closes: #819079)
Checksums-Sha1:
 42a3ca749fe0a205f88e249a06e3736261fb2766 2084 ruby-powerpack_0.1.1-3.dsc
 b479544cb34216a3090b7ba1bf172598e8655af1 2308 
ruby-powerpack_0.1.1-3.debian.tar.xz
Checksums-Sha256:
 eb885fa7db27114ec3c14bb91ae7716385c0f60e0803c53a7da6e26bad690cd5 2084 
ruby-powerpack_0.1.1-3.dsc
 63e1120fc491b01f8046257671b2d30dc64815aabf33499481abde6b84a0f8e3 2308 
ruby-powerpack_0.1.1-3.debian.tar.xz
Files:
 7295b0762b52b589a0db2640a7324735 2084 ruby optional ruby-powerpack_0.1.1-3.dsc
 ea6293ae89f6723da70bfa6bde84b3a4 2308 ruby optional 
ruby-powerpack_0.1.1-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJnjoAAoJEFwT1tuTBS4D/4cP/3We5ES3OZAdiNVuCKXUBaFd
mNBJnLQ6Xc0zs21G8a8Ty/Pf8kqyQCiaIZmVe7qcUPljmDtcWvjogCo2c3MCmduA
v6O9MrLjOGU//XC6PzAwJq90lSq/+SUW6AR1zN2FC4GNdfywxL4RXKwuFJYHnjq6
Yi0eURL0C2VobN5lbRl2f98GQsnyejty6uCopWYAHBMdnFUSjoMT8xJpH8urTOhf
QHAxkrXGAtRb/Uzf0QGTgNQdR8PXes9j7SHUrLeBFjc0j1W3tpDIhls8rQJAJNBx
1AblABzX0BvegzXRohT4ouYNqKD2mIGiK/n+eGy/YwfOMIKRWpkIl9yA26D94M+z
Yo0ps6IBgtVj0IuiJl/SQFsNZjIxT7ZU3+8+GBLOajeOPat+q5aOj3mGwzWmpmYa
ZVmfxGlhOUSI+StyckVehdCy/TMVvioKNce59+5+Usk8vB4ZjCUgtliXYwAAOl33
FvBczcl4LOcr+bv7qsJL5hZGurP4vvqUAzJjAFQ5ZG2pLUSJ/7iahU70yqwNo9aM
GCT6AgVhtPYfTUteDhlrN8fIR6PiT4eiebLWP8iqIzoEr4ULsZU7ZU+W0vrDdqZc
atVfU5TXQ77I8oHgfQ08tko3FAGu6ztXmcQwuKJRgO/lE7Icg2sfTSGM10+Tp4vm
YcVQEMvmXIw9sNRg1ouj
=VxLR
-END PGP SIGNATURE End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Bug#813928: marked as done (New version available)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 May 2016 22:27:17 +
with message-id 
and subject line Bug#813928: fixed in rbenv 1.0.0-1
has caused the Debian Bug report #813928,
regarding New version available
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.)


-- 
813928: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813928
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rbenv
Version: 0.4.0+debian1-3
Severity: wishlist

rbenv 1.0 is out, which has a lot of improvements over 0.4.0.

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

Kernel: Linux 4.2.0-1-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)
--- End Message ---
--- Begin Message ---
Source: rbenv
Source-Version: 1.0.0-1

We believe that the bug you reported is fixed in the latest version of
rbenv, 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 813...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Hofstaedtler  (supplier of updated rbenv 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: Sun, 01 May 2016 20:57:35 +
Source: rbenv
Binary: rbenv
Architecture: source
Version: 1.0.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 rbenv  - simple per-user Ruby version manager
Closes: 813928
Changes:
 rbenv (1.0.0-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Cédric Boutillier ]
   * Bump debhelper compatibility level to 9
   * Use https:// in Vcs-* fields
   * Bump Standards-Version to 3.9.7 (no changes needed)
   * Run wrap-and-sort on packaging files
 .
   [ Christian Hofstaedtler ]
   * New upstream version. (Closes: #813928)
Checksums-Sha1:
 e2d12c782268f857efedba48283cdd27a101e2d9 1921 rbenv_1.0.0-1.dsc
 47b5161693acef81d544cf07a249f43209e93381 30298 rbenv_1.0.0.orig.tar.gz
 dd1dd616200a1f21c5a16b53dd41d52d8d2c327a 3520 rbenv_1.0.0-1.debian.tar.xz
Checksums-Sha256:
 b069c88843459568d0f5b4ed669a4ff6443cf97909087baa76a799d5b84636bb 1921 
rbenv_1.0.0-1.dsc
 4658f2d8604ef847b39cb8216bb0d8a8aa000f504b6d06b30e008f92e6fa5210 30298 
rbenv_1.0.0.orig.tar.gz
 0f33b4f44ad42533e0107e19e38545ac319f078a8f82a57eeaef8d299551afbe 3520 
rbenv_1.0.0-1.debian.tar.xz
Files:
 07cbd09c950f7c77f09633aa1b050e14 1921 ruby optional rbenv_1.0.0-1.dsc
 0c0e8d5b612f424c8c907249e9ad05c5 30298 ruby optional rbenv_1.0.0.orig.tar.gz
 c376f6df2192c274371d66da1b75a35f 3520 ruby optional rbenv_1.0.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJm41AAoJEFwT1tuTBS4DFHcP/3yho8kUKA7euV/M8FOmbHE4
LrPz6677cElUSch2ZJhZssxwHVVZ3WtFXChpXOMj6hN12U3KFd2nVKUa81i/gxJn
UgZAK5GstEdEcBULpMRpktTCcq+NTo4HSh1qWrXw4iCL9KoxpoyLQqKMcm8JLCqj
VH3VqJCTlxoppiH25fPgU2sltO1wdGHq3GcyRXd6EK+Js846/fb/mvkAMzQwbW/2
jlJxgRd/tejU/cVh8WkkYP+OgaJVEaWumDS3jKGKOX5wFz6RB6GWZVxT/ceRGCCJ
ZyPExi934hssJBu68kyu78FNjgAbJxgQTGIu5ZAeNQpt99WM83lf+j994jK++ibt
8zDnXXrUjAbG0ENKgck4Yf9OCLTjPiQw+cWJjwR0T/6YSCWQEfbNfnwP5hUTW2Ve
+j3IXkcrzTck0YCyspXOION0qa3RCxzkfM4pNpNWBs3QqyI5ybbqONGhVMVRmTV5
CtXcinxb69GrG+pgQg9CF6P3ARrL6EZBDRefB7jUJAJyNk11TUIZBxEH+oGaf8n3
DsCuokxe+acyk/ddhYiV4Nzgs6K2h5ANNYikAQ/HGmflrUrftUvpThgW5uGTYQkY
tOQIgD2x1zAjA7UwUCAqCOgNSIpc87eAEYogtnrJLYIY4HJn8QDK6Vd528bjZJUp
EIcrpTCFdOrNP6qWZmN/
=8l7f
-END PGP SIGNATURE End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Bug#815802: marked as done (ruby-gir-ffi: Requiring 'gir_ffi' fails)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 May 2016 22:27:26 +
with message-id 
and subject line Bug#815802: fixed in ruby-gir-ffi 0.9.0-3
has caused the Debian Bug report #815802,
regarding ruby-gir-ffi: Requiring 'gir_ffi' fails
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.)


-- 
815802: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815802
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ruby-gir-ffi
Version: 0.9.0-1
Severity: important

Dear Maintainer,

requiring 'gir_ffi' fails when using just the Debian packages, I have
a file with just this line:

require 'gir_ffi'

and when I execute it I get this error:

$ ruby test.rb 
/usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require': cannot 
load such file -- ffi/bit_masks (LoadError)
from /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in 
`require'
from /usr/lib/ruby/vendor_ruby/gir_ffi/core.rb:2:in `'
from /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in 
`require'
from /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in 
`require'
from /usr/lib/ruby/vendor_ruby/gir_ffi.rb:1:in `'
from /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in 
`require'
from /usr/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in 
`require'
from test.rb:1:in `'

It looks like this happens because the ffi-bit_masks[1] plugin is
missing and it's not available in Debian so it can't be pulled in
automatically as a dependency of ruby-gir-ffi.

[1] https://github.com/postmodern/ffi-bit_masks

by installing the plugin via gem the error is gone:

$ sudo gem install ffi-bit_masks
[sudo] password for user: 
Fetching: ffi-bit_masks-0.1.0.gem (100%)
Successfully installed ffi-bit_masks-0.1.0
Parsing documentation for ffi-bit_masks-0.1.0
Installing ri documentation for ffi-bit_masks-0.1.0
Done installing documentation for ffi-bit_masks after 0 seconds
1 gem installed
$ ruby test.rb 
$

However if I install the ruby-gir-ffi as a Debian package I would like
not to have to pull stuff in using gem.

I guess ffi-bit_masks would need to be packaged to make ruby-gir-ffi
work as expected when installed as a Debian package.

Thanks,
   Antonio


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

Kernel: Linux 4.5.0-rc4-ao2 (SMP w/2 CPU cores)
Locale: LANG=it_IT.utf8, LC_CTYPE=it_IT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages ruby-gir-ffi depends on:
ii  libgirepository-1.0-1   1.46.0-4
ii  libglib2.0-dev  2.46.2-3
ii  ruby1:2.2.4
ii  ruby-ffi1.9.10debian-1
ii  ruby-indentation0.1.1-1
ii  ruby2.1 [ruby-interpreter]  2.1.5-4
ii  ruby2.2 [ruby-interpreter]  2.2.4-1

ruby-gir-ffi recommends no packages.

Versions of packages ruby-gir-ffi suggests:
ii  gir1.2-glib-2.01.46.0-4
ii  gir1.2-gtk-3.0 3.18.7-1
pn  gir1.2-webkit-1.0  

-- no debconf information
-- 
Antonio Ospite
http://ao2.it

A: Because it messes up the order in which people normally read text.
   See http://en.wikipedia.org/wiki/Posting_style
Q: Why is top-posting such a bad thing?
--- End Message ---
--- Begin Message ---
Source: ruby-gir-ffi
Source-Version: 0.9.0-3

We believe that the bug you reported is fixed in the latest version of
ruby-gir-ffi, 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 815...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Hofstaedtler  (supplier of updated ruby-gir-ffi 
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: Sun, 01 May 2016 21:40:40 +
Source: ruby-gir-ffi
Binary: ruby-gir-ffi
Architecture: source
Version: 0.9.0-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 ruby-gir-ffi - FFI-based GObject binding using the GObject Introspection 
Reposit
Closes: 815802
Changes:
 ruby-gir-ffi (0.9.0-3) unstable; urgen

[DRE-maint] Bug#812677: marked as done (ruby-gnome2: FTBFS with Poppler 0.39.0)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 May 2016 22:27:33 +
with message-id 
and subject line Bug#812677: fixed in ruby-gnome2 2.2.5-5
has caused the Debian Bug report #812677,
regarding ruby-gnome2: FTBFS with Poppler 0.39.0
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.)


-- 
812677: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812677
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: ruby-gnome2
Version: 2.2.5-3
Severity: normal
Tags: patch fixed-upstream
Control: forwarded -1 https://github.com/ruby-gnome2/ruby-gnome2/issues/653

Hi,

ruby-gnome2 fails to build with Poppler >= 0.39.  The problem has been
reported upstream [1], and the patch (commit 3dda8566 [2]) applies
cleanly to the current Debian sources, and fixes the issue.

Attached a copy of the patch for help.

[1] https://github.com/ruby-gnome2/ruby-gnome2/issues/653
[2] 
https://github.com/ruby-gnome2/ruby-gnome2/commit/3dda85661515d71101f1028dc7d68d4e53de45b1

Thanks,
-- 
Pino
>From 3dda85661515d71101f1028dc7d68d4e53de45b1 Mon Sep 17 00:00:00 2001
From: Kouhei Sutou 
Date: Fri, 25 Dec 2015 23:36:00 +0900
Subject: [PATCH] poppler: remove needless POPPLER_TYPE_ORIENTATION binding

Poppler 0.39 removed it. And there are no Poppler releases that use
POPPLER_TYPE_ORIENTATION.

GitHub: fix #653

Reported by Rob Brackett. Thanks!!!
---
 poppler/ext/poppler/rbpoppler.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/poppler/ext/poppler/rbpoppler.c b/poppler/ext/poppler/rbpoppler.c
index 2b28f95..fb3bfed 100644
--- a/poppler/ext/poppler/rbpoppler.c
+++ b/poppler/ext/poppler/rbpoppler.c
@@ -56,7 +56,6 @@ Init_poppler(void)
 INT2FIX(POPPLER_MICRO_VERSION)));
 
 G_DEF_CLASS(POPPLER_TYPE_ERROR, "Error", RG_TARGET_NAMESPACE);
-G_DEF_CLASS(POPPLER_TYPE_ORIENTATION, "Orientation", RG_TARGET_NAMESPACE);
 
 G_DEF_CLASS(POPPLER_TYPE_PAGE_TRANSITION_TYPE,
 "PageTransitionType", RG_TARGET_NAMESPACE);
-- 
2.7.0.rc3

--- End Message ---
--- Begin Message ---
Source: ruby-gnome2
Source-Version: 2.2.5-5

We believe that the bug you reported is fixed in the latest version of
ruby-gnome2, 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 812...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Hofstaedtler  (supplier of updated ruby-gnome2 
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: Sun, 01 May 2016 21:11:21 +
Source: ruby-gnome2
Binary: ruby-atk ruby-atk-dbg ruby-cairo-gobject ruby-cairo-gobject-dbg 
ruby-clutter ruby-clutter-gtk ruby-gdk-pixbuf2 ruby-gdk-pixbuf2-dbg ruby-gdk3 
ruby-gio2 ruby-gio2-dbg ruby-glib2 ruby-glib2-dbg ruby-gnome2 ruby-gnome2-dev 
ruby-gobject-introspection ruby-gobject-introspection-dbg ruby-gstreamer 
ruby-gstreamer-dbg ruby-gtk2 ruby-gtk2-dbg ruby-gtk3 ruby-gtk3-dbg 
ruby-gtksourceview2 ruby-gtksourceview2-dbg ruby-gtksourceview3 
ruby-gtksourceview3-dbg ruby-pango ruby-pango-dbg ruby-poppler ruby-poppler-dbg 
ruby-rsvg2 ruby-rsvg2-dbg ruby-webkit-gtk
Architecture: source
Version: 2.2.5-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 ruby-atk   - ATK bindings for the Ruby language
 ruby-atk-dbg - ATK bindings for the Ruby language (debugging symbols)
 ruby-cairo-gobject - CairoGObject bindings for the Ruby language
 ruby-cairo-gobject-dbg - CairoGObject bindings for the Ruby language 
(debugging symbols)
 ruby-clutter - Clutter bindings for the Ruby language
 ruby-clutter-gtk - Clutter-Gtk bindings for the Ruby language
 ruby-gdk-pixbuf2 - Gdk-Pixbuf 2 bindings for the Ruby language
 ruby-gdk-pixbuf2-dbg - Gdk-Pixbuf 2 bindings for the Ruby language (debugging 
symbols)
 ruby-gdk3  - GDK 3 bindings for the Ruby language
 ruby-gio2  - GIO bindings for the Ruby language
 ruby-gio2-dbg - GIO bindings for the Ruby language (debugging symbols)
 ruby-glib2 - GLib 2 bindings for the Ruby language
 ruby-glib2-dbg - GLib 2 bindings for the Ruby language (debugging symbols)
 ruby-gnome2 - GNOME-related bindings for the Ruby language
 ruby-gnome2-dev - GNOME-related bindings for

[DRE-maint] Bug#805804: marked as done (please remove ruby-clutter-gstreamer package)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 May 2016 22:27:33 +
with message-id 
and subject line Bug#805804: fixed in ruby-gnome2 2.2.5-5
has caused the Debian Bug report #805804,
regarding please remove ruby-clutter-gstreamer package
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.)


-- 
805804: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=805804
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: ruby-gnome2
Severity: normal

Dear maintainer,

The src:clutter-gst-2.0 has been deprecated by src:clutter-gst-3.0,
see http://bugs.debian.org/805640

ruby-gnome2 depends on it via the ruby-clutter-gstreamer package
which has no reverse dependencies.

Please consider just removing ruby-clutter-gstreamer from
src:ruby-gnome2.

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

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
--- End Message ---
--- Begin Message ---
Source: ruby-gnome2
Source-Version: 2.2.5-5

We believe that the bug you reported is fixed in the latest version of
ruby-gnome2, 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 805...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Hofstaedtler  (supplier of updated ruby-gnome2 
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: Sun, 01 May 2016 21:11:21 +
Source: ruby-gnome2
Binary: ruby-atk ruby-atk-dbg ruby-cairo-gobject ruby-cairo-gobject-dbg 
ruby-clutter ruby-clutter-gtk ruby-gdk-pixbuf2 ruby-gdk-pixbuf2-dbg ruby-gdk3 
ruby-gio2 ruby-gio2-dbg ruby-glib2 ruby-glib2-dbg ruby-gnome2 ruby-gnome2-dev 
ruby-gobject-introspection ruby-gobject-introspection-dbg ruby-gstreamer 
ruby-gstreamer-dbg ruby-gtk2 ruby-gtk2-dbg ruby-gtk3 ruby-gtk3-dbg 
ruby-gtksourceview2 ruby-gtksourceview2-dbg ruby-gtksourceview3 
ruby-gtksourceview3-dbg ruby-pango ruby-pango-dbg ruby-poppler ruby-poppler-dbg 
ruby-rsvg2 ruby-rsvg2-dbg ruby-webkit-gtk
Architecture: source
Version: 2.2.5-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 ruby-atk   - ATK bindings for the Ruby language
 ruby-atk-dbg - ATK bindings for the Ruby language (debugging symbols)
 ruby-cairo-gobject - CairoGObject bindings for the Ruby language
 ruby-cairo-gobject-dbg - CairoGObject bindings for the Ruby language 
(debugging symbols)
 ruby-clutter - Clutter bindings for the Ruby language
 ruby-clutter-gtk - Clutter-Gtk bindings for the Ruby language
 ruby-gdk-pixbuf2 - Gdk-Pixbuf 2 bindings for the Ruby language
 ruby-gdk-pixbuf2-dbg - Gdk-Pixbuf 2 bindings for the Ruby language (debugging 
symbols)
 ruby-gdk3  - GDK 3 bindings for the Ruby language
 ruby-gio2  - GIO bindings for the Ruby language
 ruby-gio2-dbg - GIO bindings for the Ruby language (debugging symbols)
 ruby-glib2 - GLib 2 bindings for the Ruby language
 ruby-glib2-dbg - GLib 2 bindings for the Ruby language (debugging symbols)
 ruby-gnome2 - GNOME-related bindings for the Ruby language
 ruby-gnome2-dev - GNOME-related bindings for the Ruby language (development 
files)
 ruby-gobject-introspection - GObject Introspection bindings for the Ruby 
language
 ruby-gobject-introspection-dbg - GObject Introspection bindings for the Ruby 
(debugging symbols)
 ruby-gstreamer - GStreamer bindings for the Ruby language
 ruby-gstreamer-dbg - GStreamer bindings for the Ruby language (debugging 
symbols)
 ruby-gtk2  - GTK+ 2 bindings for the Ruby language
 ruby-gtk2-dbg - GTK+ 2 bindings for the Ruby language (debugging symbols)
 ruby-gtk3  - GTK+ 3 bindings for the Ruby language
 ruby-gtk3-dbg - GTK+ 3 bindings for the Ruby language (debugging symbols)
 ruby-gtksourceview2 - GtkSourceView2 bindings for the Ruby language
 ruby-gtksourceview2-dbg - GtkSourceView2 bindings for the Ruby language 
(debugging symbols)
 ruby-gtksourceview3 - GtkSourceView3 bindings for the Ruby language
 ruby-gtk

[DRE-maint] Bug#822315: marked as done (ruby-clutter-gstreamer: depends on clutter-gst-2.0 which is going to be removed)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 May 2016 22:27:33 +
with message-id 
and subject line Bug#805804: fixed in ruby-gnome2 2.2.5-5
has caused the Debian Bug report #805804,
regarding ruby-clutter-gstreamer: depends on clutter-gst-2.0 which is going to 
be removed
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.)


-- 
805804: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=805804
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ruby-clutter-gstreamer
Version: 2.2.5-4
Severity: important

clutter-gst-2.0 is superseeded by clutter-gst-3.0. Please switch to that or
drop this package, as we'll remove clutter-gst-2.0 before Stretch is released.

Emilio
--- End Message ---
--- Begin Message ---
Source: ruby-gnome2
Source-Version: 2.2.5-5

We believe that the bug you reported is fixed in the latest version of
ruby-gnome2, 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 805...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Hofstaedtler  (supplier of updated ruby-gnome2 
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: Sun, 01 May 2016 21:11:21 +
Source: ruby-gnome2
Binary: ruby-atk ruby-atk-dbg ruby-cairo-gobject ruby-cairo-gobject-dbg 
ruby-clutter ruby-clutter-gtk ruby-gdk-pixbuf2 ruby-gdk-pixbuf2-dbg ruby-gdk3 
ruby-gio2 ruby-gio2-dbg ruby-glib2 ruby-glib2-dbg ruby-gnome2 ruby-gnome2-dev 
ruby-gobject-introspection ruby-gobject-introspection-dbg ruby-gstreamer 
ruby-gstreamer-dbg ruby-gtk2 ruby-gtk2-dbg ruby-gtk3 ruby-gtk3-dbg 
ruby-gtksourceview2 ruby-gtksourceview2-dbg ruby-gtksourceview3 
ruby-gtksourceview3-dbg ruby-pango ruby-pango-dbg ruby-poppler ruby-poppler-dbg 
ruby-rsvg2 ruby-rsvg2-dbg ruby-webkit-gtk
Architecture: source
Version: 2.2.5-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 ruby-atk   - ATK bindings for the Ruby language
 ruby-atk-dbg - ATK bindings for the Ruby language (debugging symbols)
 ruby-cairo-gobject - CairoGObject bindings for the Ruby language
 ruby-cairo-gobject-dbg - CairoGObject bindings for the Ruby language 
(debugging symbols)
 ruby-clutter - Clutter bindings for the Ruby language
 ruby-clutter-gtk - Clutter-Gtk bindings for the Ruby language
 ruby-gdk-pixbuf2 - Gdk-Pixbuf 2 bindings for the Ruby language
 ruby-gdk-pixbuf2-dbg - Gdk-Pixbuf 2 bindings for the Ruby language (debugging 
symbols)
 ruby-gdk3  - GDK 3 bindings for the Ruby language
 ruby-gio2  - GIO bindings for the Ruby language
 ruby-gio2-dbg - GIO bindings for the Ruby language (debugging symbols)
 ruby-glib2 - GLib 2 bindings for the Ruby language
 ruby-glib2-dbg - GLib 2 bindings for the Ruby language (debugging symbols)
 ruby-gnome2 - GNOME-related bindings for the Ruby language
 ruby-gnome2-dev - GNOME-related bindings for the Ruby language (development 
files)
 ruby-gobject-introspection - GObject Introspection bindings for the Ruby 
language
 ruby-gobject-introspection-dbg - GObject Introspection bindings for the Ruby 
(debugging symbols)
 ruby-gstreamer - GStreamer bindings for the Ruby language
 ruby-gstreamer-dbg - GStreamer bindings for the Ruby language (debugging 
symbols)
 ruby-gtk2  - GTK+ 2 bindings for the Ruby language
 ruby-gtk2-dbg - GTK+ 2 bindings for the Ruby language (debugging symbols)
 ruby-gtk3  - GTK+ 3 bindings for the Ruby language
 ruby-gtk3-dbg - GTK+ 3 bindings for the Ruby language (debugging symbols)
 ruby-gtksourceview2 - GtkSourceView2 bindings for the Ruby language
 ruby-gtksourceview2-dbg - GtkSourceView2 bindings for the Ruby language 
(debugging symbols)
 ruby-gtksourceview3 - GtkSourceView3 bindings for the Ruby language
 ruby-gtksourceview3-dbg - GtkSourceView3 bindings for the Ruby language 
(debugging symbols)
 ruby-pango - Pango bindings for the Ruby language
 ruby-pango-dbg - Pango bindings for the Ruby language (debug symbols)
 ruby-poppler - Ruby bindings for the libpoppler-glib library
 ruby-poppler-dbg - Ruby bindings for the libpoppler-glib library (debugging 
symbols)
 ruby-rsvg2 - RSVG renderer bindings for the Ruby language
 ruby-rsvg2-dbg - RSVG

[DRE-maint] ruby-mechanize_2.7.4-1_source.changes ACCEPTED into unstable

2016-05-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 01 May 2016 21:46:37 +
Source: ruby-mechanize
Binary: ruby-mechanize
Architecture: source
Version: 2.7.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 ruby-mechanize - library used for automating interaction with websites
Changes:
 ruby-mechanize (2.7.4-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Cédric Boutillier ]
   * Bump debhelper compatibility level to 9
   * Remove version in the gem2deb build-dependency
   * Use https:// in Vcs-* fields
   * Bump Standards-Version to 3.9.7 (no changes needed)
   * Run wrap-and-sort on packaging files
 .
   [ Christian Hofstaedtler ]
   * Imported Upstream version 2.7.4
Checksums-Sha1:
 52fa114ca0efa1ba2bf865c4408e84369d609706 2236 ruby-mechanize_2.7.4-1.dsc
 c9ab641599d89e1d37275cd52eaa271da479646a 135329 
ruby-mechanize_2.7.4.orig.tar.gz
 846e6cfb319f2163d1cedcb6a72881dd262ba04f 5520 
ruby-mechanize_2.7.4-1.debian.tar.xz
Checksums-Sha256:
 7d0837e519b44af1b1a4436503ff6183b83e4f9e490adab30699e88c09ddaaf7 2236 
ruby-mechanize_2.7.4-1.dsc
 1ab55c8f0e73f54136fad7617590a48a6a92484fe8d0b72d94e906068bdbc1d8 135329 
ruby-mechanize_2.7.4.orig.tar.gz
 3703c43a5b0523a48ba6762821f44c2c0d7d9fff6dc3c64954cdebff11ec525e 5520 
ruby-mechanize_2.7.4-1.debian.tar.xz
Files:
 1c58b5b429f0f17c9715843771bfd2e1 2236 ruby optional ruby-mechanize_2.7.4-1.dsc
 e135b63630b1a6d590810143a140ce1f 135329 ruby optional 
ruby-mechanize_2.7.4.orig.tar.gz
 721f4b72d57c07a90dddfe083c3024e0 5520 ruby optional 
ruby-mechanize_2.7.4-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJnm6AAoJEFwT1tuTBS4DSfsP/3M/KpacmBpD/72M5wSSw8/R
Yh55/NtKRO+2LoHCfFPP+E+9LFEj6YsSL5B3X4SE+Z4mJ6/LHvjO/3bvJ1WcgZ5u
PNPprcqS7cMTLSfkTVGrTFl2vcWi5pyIAt6uNKHuujvEVLbv0ILdaymfn184gUgk
JlX0WoSm0oIg2KLieAnXpQQrMOpxbGIq+wVqf+lwyiHLQ7aW+oXLD1XQASCRi/wM
Q2G7GfDbQ2W6Ps3VuiyNPnMWjBO91m/Uk8HJe4GZjJGvHZi7BxBdBR3pDw8UXZjs
4I7d5GrAIz1b5II2MSXZQDYXvsbm52ibigRHxrzAMrPzYIrb+HWi5FmyP5427gpN
xESt2B/BULZb5Sm1NTYYBFjFYd5vxyjAdWIq3AgmdkqDnDBKdN+anfpODv6xNPsM
Cmt2H/2/5ywWX3Ydz3KbdZERuSySHQBhvhdNoy+BcTQm8vGBqq9EOTeDGZWUGyNL
9TZhH2nnC8Lbh0f3RY6EXEADwEI/FSIaqtInprszYAU438c/DgwcXMRCA1ur3C6u
GTI9j0WqWWnFFVnhFFqfnWFKuIfihvj4iSrsRV3OhHcQLoLaTy3wT4hgGnDaGYzJ
2s+acQQb+FPJc5LhfNg/RgBGT28qfZFmEkpURnLukP8AFXIXOIuHcM2VPgUM92fT
sjCRBXnh+pn9STWa452I
=5I0d
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] ruby-powerpack_0.1.1-3_source.changes ACCEPTED into unstable

2016-05-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 29 Mar 2016 00:35:22 +0200
Source: ruby-powerpack
Binary: ruby-powerpack
Architecture: source
Version: 0.1.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Sebastien Badia 
Description:
 ruby-powerpack - Useful extensions to core Ruby classes
Closes: 819079
Changes:
 ruby-powerpack (0.1.1-3) unstable; urgency=medium
 .
   * Rebuild, using a newer version of gem2deb (Closes: #819079)
Checksums-Sha1:
 42a3ca749fe0a205f88e249a06e3736261fb2766 2084 ruby-powerpack_0.1.1-3.dsc
 b479544cb34216a3090b7ba1bf172598e8655af1 2308 
ruby-powerpack_0.1.1-3.debian.tar.xz
Checksums-Sha256:
 eb885fa7db27114ec3c14bb91ae7716385c0f60e0803c53a7da6e26bad690cd5 2084 
ruby-powerpack_0.1.1-3.dsc
 63e1120fc491b01f8046257671b2d30dc64815aabf33499481abde6b84a0f8e3 2308 
ruby-powerpack_0.1.1-3.debian.tar.xz
Files:
 7295b0762b52b589a0db2640a7324735 2084 ruby optional ruby-powerpack_0.1.1-3.dsc
 ea6293ae89f6723da70bfa6bde84b3a4 2308 ruby optional 
ruby-powerpack_0.1.1-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJnjoAAoJEFwT1tuTBS4D/4cP/3We5ES3OZAdiNVuCKXUBaFd
mNBJnLQ6Xc0zs21G8a8Ty/Pf8kqyQCiaIZmVe7qcUPljmDtcWvjogCo2c3MCmduA
v6O9MrLjOGU//XC6PzAwJq90lSq/+SUW6AR1zN2FC4GNdfywxL4RXKwuFJYHnjq6
Yi0eURL0C2VobN5lbRl2f98GQsnyejty6uCopWYAHBMdnFUSjoMT8xJpH8urTOhf
QHAxkrXGAtRb/Uzf0QGTgNQdR8PXes9j7SHUrLeBFjc0j1W3tpDIhls8rQJAJNBx
1AblABzX0BvegzXRohT4ouYNqKD2mIGiK/n+eGy/YwfOMIKRWpkIl9yA26D94M+z
Yo0ps6IBgtVj0IuiJl/SQFsNZjIxT7ZU3+8+GBLOajeOPat+q5aOj3mGwzWmpmYa
ZVmfxGlhOUSI+StyckVehdCy/TMVvioKNce59+5+Usk8vB4ZjCUgtliXYwAAOl33
FvBczcl4LOcr+bv7qsJL5hZGurP4vvqUAzJjAFQ5ZG2pLUSJ/7iahU70yqwNo9aM
GCT6AgVhtPYfTUteDhlrN8fIR6PiT4eiebLWP8iqIzoEr4ULsZU7ZU+W0vrDdqZc
atVfU5TXQ77I8oHgfQ08tko3FAGu6ztXmcQwuKJRgO/lE7Icg2sfTSGM10+Tp4vm
YcVQEMvmXIw9sNRg1ouj
=VxLR
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] ruby-gnome2_2.2.5-5_source.changes ACCEPTED into unstable

2016-05-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 01 May 2016 21:11:21 +
Source: ruby-gnome2
Binary: ruby-atk ruby-atk-dbg ruby-cairo-gobject ruby-cairo-gobject-dbg 
ruby-clutter ruby-clutter-gtk ruby-gdk-pixbuf2 ruby-gdk-pixbuf2-dbg ruby-gdk3 
ruby-gio2 ruby-gio2-dbg ruby-glib2 ruby-glib2-dbg ruby-gnome2 ruby-gnome2-dev 
ruby-gobject-introspection ruby-gobject-introspection-dbg ruby-gstreamer 
ruby-gstreamer-dbg ruby-gtk2 ruby-gtk2-dbg ruby-gtk3 ruby-gtk3-dbg 
ruby-gtksourceview2 ruby-gtksourceview2-dbg ruby-gtksourceview3 
ruby-gtksourceview3-dbg ruby-pango ruby-pango-dbg ruby-poppler ruby-poppler-dbg 
ruby-rsvg2 ruby-rsvg2-dbg ruby-webkit-gtk
Architecture: source
Version: 2.2.5-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 ruby-atk   - ATK bindings for the Ruby language
 ruby-atk-dbg - ATK bindings for the Ruby language (debugging symbols)
 ruby-cairo-gobject - CairoGObject bindings for the Ruby language
 ruby-cairo-gobject-dbg - CairoGObject bindings for the Ruby language 
(debugging symbols)
 ruby-clutter - Clutter bindings for the Ruby language
 ruby-clutter-gtk - Clutter-Gtk bindings for the Ruby language
 ruby-gdk-pixbuf2 - Gdk-Pixbuf 2 bindings for the Ruby language
 ruby-gdk-pixbuf2-dbg - Gdk-Pixbuf 2 bindings for the Ruby language (debugging 
symbols)
 ruby-gdk3  - GDK 3 bindings for the Ruby language
 ruby-gio2  - GIO bindings for the Ruby language
 ruby-gio2-dbg - GIO bindings for the Ruby language (debugging symbols)
 ruby-glib2 - GLib 2 bindings for the Ruby language
 ruby-glib2-dbg - GLib 2 bindings for the Ruby language (debugging symbols)
 ruby-gnome2 - GNOME-related bindings for the Ruby language
 ruby-gnome2-dev - GNOME-related bindings for the Ruby language (development 
files)
 ruby-gobject-introspection - GObject Introspection bindings for the Ruby 
language
 ruby-gobject-introspection-dbg - GObject Introspection bindings for the Ruby 
(debugging symbols)
 ruby-gstreamer - GStreamer bindings for the Ruby language
 ruby-gstreamer-dbg - GStreamer bindings for the Ruby language (debugging 
symbols)
 ruby-gtk2  - GTK+ 2 bindings for the Ruby language
 ruby-gtk2-dbg - GTK+ 2 bindings for the Ruby language (debugging symbols)
 ruby-gtk3  - GTK+ 3 bindings for the Ruby language
 ruby-gtk3-dbg - GTK+ 3 bindings for the Ruby language (debugging symbols)
 ruby-gtksourceview2 - GtkSourceView2 bindings for the Ruby language
 ruby-gtksourceview2-dbg - GtkSourceView2 bindings for the Ruby language 
(debugging symbols)
 ruby-gtksourceview3 - GtkSourceView3 bindings for the Ruby language
 ruby-gtksourceview3-dbg - GtkSourceView3 bindings for the Ruby language 
(debugging symbols)
 ruby-pango - Pango bindings for the Ruby language
 ruby-pango-dbg - Pango bindings for the Ruby language (debug symbols)
 ruby-poppler - Ruby bindings for the libpoppler-glib library
 ruby-poppler-dbg - Ruby bindings for the libpoppler-glib library (debugging 
symbols)
 ruby-rsvg2 - RSVG renderer bindings for the Ruby language
 ruby-rsvg2-dbg - RSVG renderer bindings for the Ruby language (debugging 
symbols)
 ruby-webkit-gtk - WebKitGTK+ bindings for the Ruby language
Closes: 805804 812677
Changes:
 ruby-gnome2 (2.2.5-5) unstable; urgency=medium
 .
   * Team upload.
   * Refresh patches
   * Drop ruby-clutter-gstreamer (Closes: #805804)
   * Apply patch to fix FTBFS with poppler 0.39.0.
 Thanks to Pino Toscano  (Closes: #812677)
Checksums-Sha1:
 35ef73caa38776cad042354a0aec4a80b7d32b7a 4362 ruby-gnome2_2.2.5-5.dsc
 9cff964168dda9eed1ebb51ad2fcad380f4b1afd 18484 
ruby-gnome2_2.2.5-5.debian.tar.xz
Checksums-Sha256:
 d79523b9fdc5942d0a63887e9e955dd0f6e19a7544cd07069433f15db3fdfbc4 4362 
ruby-gnome2_2.2.5-5.dsc
 c80bc6319ac5bdfbf11fa105e5bfa2c7be152de3ff50fb9d8a34e43870bb1a32 18484 
ruby-gnome2_2.2.5-5.debian.tar.xz
Files:
 61b9c39610e9bdca432de36730c92913 4362 ruby optional ruby-gnome2_2.2.5-5.dsc
 8810807f4803f03d905a0bf8d37a9bc3 18484 ruby optional 
ruby-gnome2_2.2.5-5.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJnWgAAoJEFwT1tuTBS4DwycP/35hXRf23Mz1geu/9jU1rpDM
nApzFqkEiTDOlBeo7RTxXp3AyBbaeSQBgJsbzAnuRsU3CgXpSYa8/RksJF/VhxKA
WQrN5nNJhTLaXMia7bBi2LYyIqdw7pE4zvOjXIkx7fVtlWKzH3JJ5V3yrSpNjGDB
WJ2k0X7aY6VJQAM1j/gCYr1ThYDbD5ZPyGJgQDv94nkrYcR5xZlmdDU1VtLiRnzM
SMo6lv9M0JQTN/goJDjFGJoIOmdAgKEXB86NK9RuGzWh+X61T+L3bPJz2tE598kX
R4vrqEyNKB9QMIrmBO1wZVYVbZc8P5c8DRyg/wtcU51cidQ0DOmiqgre4eclz+IM
g7An9e9RGrge7D4JJFY6GgViLgMVVDrc0qJXdoprvJRWTZb1cZLRXdV538U/kenX
vV2JE42lQYQi/By0QVvRjhuCKyiW22KzjVugdKA5EyyHihJZ23ElJoibSQwOzXWG
fJ4JTZh6Z1cl6PtNBMonqQ9E9Jzgzj0nAmtiqa/+gcM19++0pyplpZfIAn7akNcL
b+6Et+xyLTWtn8rcY6W99R8WoQWAeSKuBaijCMfU1kpJduA7eKazw9P5SnEbHu7p
hwBdQIKEEUGDlvKRC4dMoZZXGZf5oS2yuYWWQJzVIi6VOujUUAPL/kyLaKWTq0Uy
XyXVf7wgnFY3bSi3+/Od
=XLY4
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-ruby-extr

[DRE-maint] rbenv_1.0.0-1_source.changes ACCEPTED into unstable

2016-05-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 01 May 2016 20:57:35 +
Source: rbenv
Binary: rbenv
Architecture: source
Version: 1.0.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 rbenv  - simple per-user Ruby version manager
Closes: 813928
Changes:
 rbenv (1.0.0-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Cédric Boutillier ]
   * Bump debhelper compatibility level to 9
   * Use https:// in Vcs-* fields
   * Bump Standards-Version to 3.9.7 (no changes needed)
   * Run wrap-and-sort on packaging files
 .
   [ Christian Hofstaedtler ]
   * New upstream version. (Closes: #813928)
Checksums-Sha1:
 e2d12c782268f857efedba48283cdd27a101e2d9 1921 rbenv_1.0.0-1.dsc
 47b5161693acef81d544cf07a249f43209e93381 30298 rbenv_1.0.0.orig.tar.gz
 dd1dd616200a1f21c5a16b53dd41d52d8d2c327a 3520 rbenv_1.0.0-1.debian.tar.xz
Checksums-Sha256:
 b069c88843459568d0f5b4ed669a4ff6443cf97909087baa76a799d5b84636bb 1921 
rbenv_1.0.0-1.dsc
 4658f2d8604ef847b39cb8216bb0d8a8aa000f504b6d06b30e008f92e6fa5210 30298 
rbenv_1.0.0.orig.tar.gz
 0f33b4f44ad42533e0107e19e38545ac319f078a8f82a57eeaef8d299551afbe 3520 
rbenv_1.0.0-1.debian.tar.xz
Files:
 07cbd09c950f7c77f09633aa1b050e14 1921 ruby optional rbenv_1.0.0-1.dsc
 0c0e8d5b612f424c8c907249e9ad05c5 30298 ruby optional rbenv_1.0.0.orig.tar.gz
 c376f6df2192c274371d66da1b75a35f 3520 ruby optional rbenv_1.0.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJm41AAoJEFwT1tuTBS4DFHcP/3yho8kUKA7euV/M8FOmbHE4
LrPz6677cElUSch2ZJhZssxwHVVZ3WtFXChpXOMj6hN12U3KFd2nVKUa81i/gxJn
UgZAK5GstEdEcBULpMRpktTCcq+NTo4HSh1qWrXw4iCL9KoxpoyLQqKMcm8JLCqj
VH3VqJCTlxoppiH25fPgU2sltO1wdGHq3GcyRXd6EK+Js846/fb/mvkAMzQwbW/2
jlJxgRd/tejU/cVh8WkkYP+OgaJVEaWumDS3jKGKOX5wFz6RB6GWZVxT/ceRGCCJ
ZyPExi934hssJBu68kyu78FNjgAbJxgQTGIu5ZAeNQpt99WM83lf+j994jK++ibt
8zDnXXrUjAbG0ENKgck4Yf9OCLTjPiQw+cWJjwR0T/6YSCWQEfbNfnwP5hUTW2Ve
+j3IXkcrzTck0YCyspXOION0qa3RCxzkfM4pNpNWBs3QqyI5ybbqONGhVMVRmTV5
CtXcinxb69GrG+pgQg9CF6P3ARrL6EZBDRefB7jUJAJyNk11TUIZBxEH+oGaf8n3
DsCuokxe+acyk/ddhYiV4Nzgs6K2h5ANNYikAQ/HGmflrUrftUvpThgW5uGTYQkY
tOQIgD2x1zAjA7UwUCAqCOgNSIpc87eAEYogtnrJLYIY4HJn8QDK6Vd528bjZJUp
EIcrpTCFdOrNP6qWZmN/
=8l7f
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] nanoc_4.1.4-2_source.changes ACCEPTED into unstable

2016-05-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 01 May 2016 20:09:44 +
Source: nanoc
Binary: nanoc nanoc-doc
Architecture: source
Version: 4.1.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 nanoc  - static site generator written in Ruby
 nanoc-doc  - static site generator written in Ruby - documentation
Changes:
 nanoc (4.1.4-2) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Cédric Boutillier ]
   * Remove version in the gem2deb build-dependency
   * Use https:// in Vcs-* fields
   * Run wrap-and-sort on packaging files
 .
   [ Christian Hofstaedtler ]
   * Drop ruby-bluecloth dependency. Please use rdiscount instead.
Checksums-Sha1:
 8bc59946619745de978d8bfb13be54b7262874af 2390 nanoc_4.1.4-2.dsc
 9534b4ebb46794dc21a5cc87ff2325545903 7636 nanoc_4.1.4-2.debian.tar.xz
Checksums-Sha256:
 2cf8cf162c636e2c8320bc1c17e52b5d519032e1aa6db4fdd051d8077a97141f 2390 
nanoc_4.1.4-2.dsc
 b784427ba81e42e0476903006117eb03e6e8159fb5ee6bf678a384794ef514d4 7636 
nanoc_4.1.4-2.debian.tar.xz
Files:
 bf9f0a5450a394e40091feb73f14f868 2390 web optional nanoc_4.1.4-2.dsc
 8d24ceb712eb6ab375161d5ec9532cee 7636 web optional nanoc_4.1.4-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJmNhAAoJEFwT1tuTBS4DDGAP+gMgDI8j0wMPNlznrUWtVSqK
Aq6QPu8PeISZzqN6L+0mz2GJFaGNKGyKvkMuc3PQE92DZOt8RC5V0SM2M2/VFZ+6
NJaFh79r4YDazZBb5cpww3c5xVY2sZXEQ2a6uSB95elAkM97mdvy8qcBJw/p6lgq
XdU+XU1TctM8f8zg8f5M1IrTMBrxX/SYF+RwTlJjwovwBgH4xTfOVhF590XXxjDq
eSVKRN+LZnn02dULfXoXL7YO1d9WlDuZFirZQqMPmDXGARQm3YKYeOG2OHdewjVd
1TISB3w0ZM6aMsNL2jfwvPZUZOP8x1/IOhTn2OmY7EYzTgwZlh1MnH9hp0vxkX5B
JutRVegZ4BR/UJ8x5P0wqM/OFxNBdSPDV5+3nfeGhPvQ5LG/nA1QMuZMcnpZOcDX
hC1u6aB+Qgiq5axuISDaWnGjbFQL+2LjjXwt1UOpCptHWaHsV4wrBbTT/Npam8v+
iwEtDWfFg4P0b7dsxleFth9pTJhptFBQL9vGiW+DKamdE2+IZdwgT+Zl5iWoGGcx
EPjKZPKkfDeumnv5Gpg7rfJm9bjtrU29/4f9CxgN6lQeX9xzy5cuYYFjp8DljJSU
SBqzLZCvltjdlmdhygh96XLBFKO72R36zR/I67MhEh4GfjfIO1Qm9rLebsYaFz3I
mN1TbabqsMPncycTp+r4
=k8Zj
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Processing of ruby-powerpack_0.1.1-3_source.changes

2016-05-01 Thread Debian FTP Masters
ruby-powerpack_0.1.1-3_source.changes uploaded successfully to localhost
along with the files:
  ruby-powerpack_0.1.1-3.dsc
  ruby-powerpack_0.1.1-3.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Processing of ruby-gir-ffi_0.9.0-3_source.changes

2016-05-01 Thread Debian FTP Masters
ruby-gir-ffi_0.9.0-3_source.changes uploaded successfully to localhost
along with the files:
  ruby-gir-ffi_0.9.0-3.dsc
  ruby-gir-ffi_0.9.0-3.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Processing of ruby-mechanize_2.7.4-1_source.changes

2016-05-01 Thread Debian FTP Masters
ruby-mechanize_2.7.4-1_source.changes uploaded successfully to localhost
along with the files:
  ruby-mechanize_2.7.4-1.dsc
  ruby-mechanize_2.7.4.orig.tar.gz
  ruby-mechanize_2.7.4-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#812607: marked as done (autopkg test failing)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 23:29:49 +0200
with message-id <20160501212949.GL91435@sx>
and subject line Re: #812607: autopkg test failing
has caused the Debian Bug report #812607,
regarding autopkg test failing
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.)


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

Package: src:ruby-redcarpet
Version: 3.3.3-2
Severity: important
Tags: patch

test dependency is missing, patch at
http://launchpadlibrarian.net/235168083/ruby-redcarpet_3.3.3-2build1_3.3.3-2ubuntu1.diff.gz
--- End Message ---
--- Begin Message ---
The test has been removed in 3.3.4-2.

-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  ` End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Processing of ruby-gnome2_2.2.5-5_source.changes

2016-05-01 Thread Debian FTP Masters
ruby-gnome2_2.2.5-5_source.changes uploaded successfully to localhost
along with the files:
  ruby-gnome2_2.2.5-5.dsc
  ruby-gnome2_2.2.5-5.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#762739: marked as done ([CVE-2013-0334] Ruby dependency manager Bundler may install gems from a different source than expected)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 23:27:53 +0200
with message-id <20160501212753.GK91435@sx>
and subject line Re: #762739: CVE-2013-0334
has caused the Debian Bug report #762739,
regarding [CVE-2013-0334] Ruby dependency manager Bundler may install gems from 
a different source than expected
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.)


-- 
762739: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=762739
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bundler
Version: 1.1.4-6
Severity: important
Tags: security upstream patch fixed-upstream

Hi there,
the following vulnerability was published for bundler:

CVE-2013-0334: Ruby dependency manager Bundler may install gems from a 
different 
source than expected

If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities & Exposures) id in your changelog entry.

For further information see:

http://www.openwall.com/lists/oss-security/2014/09/24/9
http://bundler.io/blog/2014/08/14/bundler-may-install-gems-from-a-different-source-than-expected-cve-2013-0334.html

Please adjust the affected versions in the BTS as needed.

Regards, luciano
--- End Message ---
--- Begin Message ---
Closing, given a fixed bundler is in stable and newer.

Thanks,
-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  ` End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Processed: reassign 591419 to ruby-rmagick

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

> reassign 591419 ruby-rmagick
Bug #591419 [librmagick-ruby] librmagick-ruby should not be installable with 
imagemagick
Bug reassigned from package 'librmagick-ruby' to 'ruby-rmagick'.
Ignoring request to alter found versions of bug #591419 to the same values 
previously set
Ignoring request to alter fixed versions of bug #591419 to the same values 
previously set
> thanks
Stopping processing here.

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

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#599034: marked as done (rails: README.Debian refers to non-existing rails-app-debianize)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 23:20:50 +0200
with message-id <20160501212050.GJ91435@sx>
and subject line Re: #599034: rails: README.Debian refers to non-existing 
rails-app-debianize
has caused the Debian Bug report #599034,
regarding rails: README.Debian refers to non-existing rails-app-debianize
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.)


-- 
599034: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=599034
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rails
Version: 2.3.5-1.1
Severity: normal

/usr/share/rails-ruby1.8/railties/bin/rails says:

   You can use the command rails-app-debianize to create those links.


"rails-app-debianize" seems to be missing.


--- End Message ---
--- Begin Message ---
Newer rails packaging no longer talks about rails-app-debianize.

Thanks,
-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  ` End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Processed: reassign 822315 to src:ruby-gnome2, forcibly merging 805804 822315

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

> reassign 822315 src:ruby-gnome2
Bug #822315 [ruby-clutter-gstreamer] ruby-clutter-gstreamer: depends on 
clutter-gst-2.0 which is going to be removed
Bug reassigned from package 'ruby-clutter-gstreamer' to 'src:ruby-gnome2'.
No longer marked as found in versions ruby-gnome2/2.2.5-4.
Ignoring request to alter fixed versions of bug #822315 to the same values 
previously set
> forcemerge 805804 822315
Bug #805804 [src:ruby-gnome2] please remove ruby-clutter-gstreamer package
Bug #822315 [src:ruby-gnome2] ruby-clutter-gstreamer: depends on 
clutter-gst-2.0 which is going to be removed
Severity set to 'normal' from 'important'
805640 was blocked by: 808512 805804 808518
805640 was not blocking any bugs.
Added blocking bug(s) of 805640: 822315
Merged 805804 822315
> thanks
Stopping processing here.

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

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#756592: marked as done (ruby-gsl failed to run test on mips64el)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 23:02:47 +0200
with message-id <20160501210246.GI91435@sx>
and subject line Re: #756592: ruby-gsl failed to run test on mips64el
has caused the Debian Bug report #756592,
regarding ruby-gsl failed to run test on mips64el
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.)


-- 
756592: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756592
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ruby-gsl
Version: 1.15.3+dfsg-2

I tried to build ruby-gsl on mips64el while failed, due to a failure on test.

*** running tests/multifit/test_filip.rb ***
FAIL: filip gsl_fit_multilinear c8 (-0.0670191086058517793 observed vs
-0.0670191154593408056 expected)
FAIL: filip gsl_fit_multilinear c9 (-0.00246781052277280982 observed
vs -0.00246781078275479021 expected)
FAIL: filip gsl_fit_multilinear c10 (-4.02962481217298765e-05 observed
vs -4.02962525080403984e-05 expected)
FAIL: filip gsl_fit_multilinear c8 (-0.0670191086058517793 observed vs
-0.0670191154593408056 expected)
FAIL: filip gsl_fit_multilinear c9 (-0.00246781052277280982 observed
vs -0.00246781078275479021 expected)
FAIL: filip gsl_fit_multilinear c10 (-4.02962481217298765e-05 observed
vs -4.02962525080403984e-05 expected)
ERROR: Test "ruby2.1" failed. Exiting.

You can get the buildlog from
http://mips64el.debian.net/debian/buildlog/r/ruby-gsl_1.15.3%2bdfsg-2/ruby-gsl_1.15.3%2bdfsg-2_mips64el-20140711-0005.build

any idea?


-- 
YunQiang Su
--- End Message ---
--- Begin Message ---
At least 1.16.0.6+dfsg1-2+b1 has built on mips64el, so this is
likely fixed.

-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  ` End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Processing of rbenv_1.0.0-1_source.changes

2016-05-01 Thread Debian FTP Masters
rbenv_1.0.0-1_source.changes uploaded successfully to localhost
along with the files:
  rbenv_1.0.0-1.dsc
  rbenv_1.0.0.orig.tar.gz
  rbenv_1.0.0-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#723532: marked as done (ruby-pcaprub link with -L/usr/lib)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 22:54:41 +0200
with message-id <20160501205441.GH91435@sx>
and subject line Re: #723532: ruby-pcaprub link with -L/usr/lib
has caused the Debian Bug report #723532,
regarding ruby-pcaprub link with -L/usr/lib
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.)


-- 
723532: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=723532
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ruby-pcaprub
Version: 0.11.3-1
X-Debbugs-CC: wzss...@gmail.com

This package has one or more -L/usr/lib in its build system,
which will make it ftbfs if there is libraries under /usr/lib,
while is not the default architecture, mips* for example.

On mips* systems, /usr/lib is defined as place to hold O32
libraries, and /usr/lib32 for N32, and /usr/lib64 is for N64.

Beside the way, on the multiarch system like Debian, user may install
libraries under /usr/lib by hand.

Please use the default search path if you can, and please consider fix
this.

I will try to fix this bug, while if you can help to fix it, 
It will be very appreciative.

The attachement is the buildlog of this package on mips64el platform.


ruby-pcaprub_0.11.3-1_mips64el.build.xz
Description: Binary data
--- End Message ---
--- Begin Message ---
Thank you for your report. If this problem is still present in sid,
please reopen this report. For now, I'm closing it assuming it is
not an issue in sid anymore.

-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  ` End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Bug#691743: marked as done (bundler: Bundler does not seem to see system-installed gems when using --user-install)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 22:44:15 +0200
with message-id <20160501204415.GF91435@sx>
and subject line Re: #691743: bundler: Bundler does not seem to see 
system-installed gems when using --user-install
has caused the Debian Bug report #691743,
regarding bundler: Bundler does not seem to see system-installed gems when 
using --user-install
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.)


-- 
691743: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691743
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bundler
Version: 1.2.1-1
Severity: normal

To install gems in my home directory as a normal user I run

bundle install --path $HOME/.gem

However, this ignores all the gems already installed on the system via
rubygems-integration.

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

Kernel: Linux 3.5.0-17-generic (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages bundler depends on:
ii  ruby1.8 [ruby-interpreter]1.8.7.358-4ubuntu0.1
ii  ruby1.9.1 [ruby-interpreter]  1.9.3.194-1ubuntu1.2

Versions of packages bundler recommends:
ii  build-essential 11.5ubuntu3
ii  less444-4ubuntu1
ii  ruby1.8-dev [ruby-dev]  1.8.7.358-4ubuntu0.1
ii  rubygems-integration1.1
ii  sudo1.8.5p2-1ubuntu1

bundler suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Not a bug, but upstream's design decision. Closing to stop tracking
it as a bug.

-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  ` End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Bug#711079: marked as done (bundler: Bundler is incompatible with chruby)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 22:43:21 +0200
with message-id <20160501204321.GE91435@sx>
and subject line Re: #711079: bundler: Bundler is incompatible with chruby
has caused the Debian Bug report #711079,
regarding bundler: Bundler is incompatible with chruby
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.)


-- 
711079: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=711079
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bundler
Version: 1.1.4-6
Severity: normal

Dear Maintainer,

The /usr/bin/bundle binary supplied by the bundler package uses
"#!/usr/bin/env ruby" as its shebang line.  This means that when I run
`bundle install` with a non-system ruby enabled, and I don't have the
bundler gem separately installed, the `bundle install` command fails
with the following output:

$ bundle install
/home/alex/.rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:45:in
 `require': cannot load such file -- bundler (LoadError)

from 
/home/alex/.rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:45:in
 `require'
from /usr/bin/bundle:2:in `'

This is specifically a problem when using chruby (and chruby-exec) to
select the activated ruby.

The `bundle` package should specify the system ruby to run with,
otherwise `require "bundler"` will fail to see the installed libraries
at /usr/lib/ruby/vendor_ruby/bundler.  Replacing the shebang line with
"#!/usr/bin/ruby" fixes this.


-- System Information:
Debian Release: 7.0
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE= (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages bundler depends on:
ii  ruby  1:1.9.3
ii  ruby1.9.1 [ruby-interpreter]  1.9.3.194-8.1

Versions of packages bundler recommends:
ii  build-essential   11.5
ii  less  444-4
ii  ruby-dev  1:1.9.3
ii  rubygems-integration  1.1
ii  sudo  1.8.5p2-1+nmu1

bundler suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Given this is caused by a design decision (in multiple programs), I'm
closing this to no longer track it as a bug.

Also, the recent bundler/ruby-bundler split may make this less
relevant.

-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  ` End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Bug#582043: marked as done (libgtk2-ruby1.8: Ruby/GTK+ program spins around when other Ruby threads are executing)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 22:41:13 +0200
with message-id <20160501204113.GD91435@sx>
and subject line Re: #582043: libgtk2-ruby1.8: Ruby/GTK+ program spins
has caused the Debian Bug report #582043,
regarding libgtk2-ruby1.8: Ruby/GTK+ program spins around when other Ruby 
threads are executing
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.)


-- 
582043: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582043
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libgtk2-ruby1.8
Version: 0.19.3-2
Severity: normal

The following program:


#!/usr/bin/ruby
require 'gtk2'

@window = Gtk::Window.new('Bogosity')
@window.set_default_size(320, 240)
@window.show

def count() i = 0; loop { sleep 1; i += 1 } end
@thread = Thread.new { count() }
Gtk.main


does not properly block when no GTK+ input events are being received
and the other thread is sleeping.  It generates strace output (with
strace -etrace=\!rt_sigprocmask) along the lines of the attached file;
observe the repeated flips between select() and poll(), all with zero
timeouts.

Commenting out the @thread creation causes the GTK+ main loop to block
(according to interactive strace) when no input events are coming to
the window, and commenting out the Gtk.main and replacing it with <<
sleep 0.5; count() >> causes the Ruby threading engine to block when
both threads are sleeping.  Mixing the two causes a furious explosion
of system calls.

   ---> Drake Wilson

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.29-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libgtk2-ruby1.8 depends on:
ii  libatk1-ruby1.8  0.19.3-2ATK bindings for the Ruby language
ii  libatk1.0-0  1.30.0-1The ATK accessibility toolkit
ii  libc62.10.2-7Embedded GNU C Library: Shared lib
ii  libcairo21.8.8-2 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.8.0-2.1   generic font configuration library
ii  libfreetype6 2.3.11-1FreeType 2 font engine, shared lib
ii  libgdk-pixbuf2-ruby1.8   0.19.3-2Gdk-Pixbuf 2 bindings for the Ruby
ii  libglib2.0-0 2.24.0-1The GLib library of C routines
ii  libgtk2.0-0  2.20.0-3The GTK+ graphical user interface 
ii  libpango1-ruby1.80.19.3-2Pango bindings for the Ruby langua
ii  libpango1.0-01.26.2-1Layout and rendering of internatio
ii  libruby1.8   1.8.7.249-2 Libraries necessary to run Ruby 1.

libgtk2-ruby1.8 recommends no packages.

libgtk2-ruby1.8 suggests no packages.

-- no debconf information


dpw-20100517-gtk-spin-1.strace.gz
Description: GNU Zip compressed data
--- End Message ---
--- Begin Message ---
Closing this issue as it's fixed in at least (at the time of
writing) in stable and newer.

-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  ` End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Processing of rdtool_0.6.38-4_source.changes

2016-05-01 Thread Debian FTP Masters
rdtool_0.6.38-4_source.changes uploaded successfully to localhost
along with the files:
  rdtool_0.6.38-4.dsc
  rdtool_0.6.38-4.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#823178: ruby-bluecloth: obsolete

2016-05-01 Thread Christian Hofstaedtler
Package: ruby-bluecloth
Severity: important

Bluecloth is no longer developed or maintained upstream. While we
may keep this package around for a bit longer, dependencies on it
need to be removed over time.

New packages certainly must not depend on ruby-bluecloth.

-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  `-

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Processed: reassign 821821 to src:ruby-gollum-lib, forcibly merging 823046 821821, affects 823046

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

> reassign 821821 src:ruby-gollum-lib
Bug #821821 [ruby-gollum-lib] gitlab: fails to install in sid: Bundler could 
not find compatible versions for gem "github-markup"
Bug reassigned from package 'ruby-gollum-lib' to 'src:ruby-gollum-lib'.
Ignoring request to alter found versions of bug #821821 to the same values 
previously set
Ignoring request to alter fixed versions of bug #821821 to the same values 
previously set
> forcemerge 823046 821821
Bug #823046 [src:ruby-gollum-lib] ruby-gollum-lib: FTBFS:  Could not find 
'github-markup' (~> 1.3.3) - did find: [github-markup-1.4.0] (Gem::LoadError)
Bug #821821 [src:ruby-gollum-lib] gitlab: fails to install in sid: Bundler 
could not find compatible versions for gem "github-markup"
Marked as found in versions ruby-gollum-lib/4.1.0-3.
Merged 821821 823046
> affects 823046 gitlab
Bug #823046 [src:ruby-gollum-lib] ruby-gollum-lib: FTBFS:  Could not find 
'github-markup' (~> 1.3.3) - did find: [github-markup-1.4.0] (Gem::LoadError)
Bug #821821 [src:ruby-gollum-lib] gitlab: fails to install in sid: Bundler 
could not find compatible versions for gem "github-markup"
Added indication that 823046 affects gitlab
Added indication that 821821 affects gitlab
> thanks
Stopping processing here.

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

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#733209: marked as done (ruby-will-paginate: CVE-2013-6459: XSS vulnerabilities)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 22:18:27 +0200
with message-id <20160501201827.GB91435@sx>
and subject line Re: #733209: ruby-will-paginate: CVE-2013-6459
has caused the Debian Bug report #733209,
regarding ruby-will-paginate: CVE-2013-6459: XSS vulnerabilities
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.)


-- 
733209: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=733209
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ruby-will-paginate
Severity: important
Tags: security upstream fixed-upstream

Hi,

the following vulnerability was published for ruby-will-paginate.

CVE-2013-6459[0]:
XSS vulnerabilities

It is fixed in a new upstream version 3.0.5[1].

If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities & Exposures) id in your changelog entry.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6459
http://security-tracker.debian.org/tracker/CVE-2013-6459
[1] https://github.com/mislav/will_paginate/releases/tag/v3.0.5

Please adjust the affected versions in the BTS as needed.

Regards,
Salvatore
--- End Message ---
--- Begin Message ---
Closing this as the security issue is fixed (at the time of writing
this) in stable and newer.

Thanks,
-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  ` End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Processed (with 2 errors): reassign 821821 to ruby-gollum-lib, forcibly merging 823046 821821, affects 823046

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

> reassign 821821 ruby-gollum-lib
Bug #821821 [gitlab] gitlab: fails to install in sid: Bundler could not find 
compatible versions for gem "github-markup"
Bug reassigned from package 'gitlab' to 'ruby-gollum-lib'.
No longer marked as found in versions gitlab/8.5.8+dfsg-5.
Ignoring request to alter fixed versions of bug #821821 to the same values 
previously set
> forcemerge 823046 821821
Bug #823046 [src:ruby-gollum-lib] ruby-gollum-lib: FTBFS:  Could not find 
'github-markup' (~> 1.3.3) - did find: [github-markup-1.4.0] (Gem::LoadError)
Unable to merge bugs because:
package of #821821 is 'ruby-gollum-lib' not 'src:ruby-gollum-lib'
Failed to forcibly merge 823046: Did not alter merged bugs.

> affects 823046 gitlab
Failed to mark 823046 as affecting package(s): failed to get lock on 
/org/bugs.debian.org/spool/lock/823046 -- Unable to lock 
/org/bugs.debian.org/spool/lock/823046 Resource temporarily unavailable.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
 at /usr/local/lib/site_perl/Debbugs/Common.pm line 587.

> thanks
Stopping processing here.

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

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#330919: marked as done (libldap-ruby1.8: Use of LDAP::Entry#[](attr) leads to excessive memory use)

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 May 2016 22:16:53 +0200
with message-id <20160501201653.GA91435@sx>
and subject line Re: #330919: libldap-ruby1.8: Use of LDAP::Entry#[](attr) 
leads to excessive memory use
has caused the Debian Bug report #330919,
regarding libldap-ruby1.8: Use of LDAP::Entry#[](attr) leads to excessive 
memory use
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.)


-- 
330919: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=330919
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libldap-ruby1.8
Version: 0.9.0-1
Severity: important

Executing the following simple program leads to execssive memory use (>
500MB within seconds):

  ldap.simple_bind(Admin, Pass) do |conn|
conn.search("ou=DNS,#{Root}", LDAP_SCOPE_SUBTREE,
"(|(ildusOwner=bram)(ildusOwner=paul))") do |entry|
  puts "dn: #{entry.dn}"
  entry.attrs.each do |attr|
entry[attr].each do |val|
  puts "#{attr}: #{val}"
end
  end
  puts
end
  end

However, when "entry[attr].each" is replaced by its (according to the
documentation[1]) aliased version "entry.vals(attr).each" it works
fine.  Also "entry.to_ldif" seems to suffer from the same problem.

Paul

1: http://ruby-ldap.sourceforge.net/rdoc/classes/LDAP/Entry.html#M10


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.12-1-686-smp
Locale: LANG=C, LC_CTYPE=nl_NL.UTF8@euro (charmap=UTF-8)

Versions of packages libldap-ruby1.8 depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libldap2  2.1.30-11  OpenLDAP libraries
ii  libruby1.81.8.2-9Libraries necessary to run Ruby 1.
ii  libssl0.9.7   0.9.7g-2   SSL shared libraries

libldap-ruby1.8 recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Thank you for your report, unfortunately other persons have tried
reproducing it, but were unsuccessful. As this bug is from 2005,
it's likely it's been fixed in the meantime in some upstream
version.

If this bug still persists, please reopen this report.

-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  ` End Message ---
___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Processing of nanoc_4.1.4-2_source.changes

2016-05-01 Thread Debian FTP Masters
nanoc_4.1.4-2_source.changes uploaded successfully to localhost
along with the files:
  nanoc_4.1.4-2.dsc
  nanoc_4.1.4-2.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Processed (with 2 errors): forcibly merging 823046 821821, affects 823046

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

> forcemerge 823046 821821
Bug #823046 [src:ruby-gollum-lib] ruby-gollum-lib: FTBFS:  Could not find 
'github-markup' (~> 1.3.3) - did find: [github-markup-1.4.0] (Gem::LoadError)
Unable to merge bugs because:
package of #821821 is 'gitlab' not 'src:ruby-gollum-lib'
Failed to forcibly merge 823046: Did not alter merged bugs.

> affects 823046 gitlab
Failed to mark 823046 as affecting package(s): failed to get lock on 
/org/bugs.debian.org/spool/lock/823046 -- Unable to lock 
/org/bugs.debian.org/spool/lock/823046 Resource temporarily unavailable.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
Unable to lock /org/bugs.debian.org/spool/lock/823046 Resource temporarily 
unavailable at /usr/local/lib/site_perl/Debbugs/Common.pm line 629.
 at /usr/local/lib/site_perl/Debbugs/Common.pm line 587.

> thanks
Stopping processing here.

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

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#819080: #819080: ruby-augeas ships without a gemspec file

2016-05-01 Thread Christian Hofstaedtler
Control: severity -1 normal

> ruby-augeas ships without a gemspec file,

While this is true, no r-dep in Debian currently loads augeas using
rubygems. Downgrading this bug for now.

-- 
 ,''`.  Christian Hofstaedtler 
: :' :  Debian Developer
`. `'   7D1A CFFA D9E0 806C 9C4C  D392 5C13 D6DB 9305 2E03
  `-

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Processed: Re: #819080: ruby-augeas ships without a gemspec file

2016-05-01 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 normal
Bug #819080 [ruby-augeas] ruby-augeas ships without a gemspec file
Severity set to 'normal' from 'serious'

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

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Bug#818719: marked as done (ruby-rails-deprecated-sanitizer: FTBFS: action_view/helpers/sanitize_helper (LoadError))

2016-05-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 May 2016 19:34:21 +
with message-id 
and subject line Bug#818719: fixed in ruby-rails-deprecated-sanitizer 1.0.3-2
has caused the Debian Bug report #818719,
regarding ruby-rails-deprecated-sanitizer: FTBFS: 
action_view/helpers/sanitize_helper (LoadError)
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.)


-- 
818719: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=818719
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: ruby-rails-deprecated-sanitizer
Version: 1.0.3-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

ruby-rails-deprecated-sanitizer fails to build from source in unstable/amd64:

  [..]
  
  
RUBYLIB=/home/lamby/temp/cdt.20160320085914.YMSdAoy2ta/ruby-rails-deprecated-sanitizer-1.0.3/debian/ruby-rails-deprecated-sanitizer/usr/lib/ruby/vendor_ruby:.
 
GEM_PATH=debian/ruby-rails-deprecated-sanitizer/usr/share/rubygems-integration/all:/home/lamby/.gem/ruby/2.3.0:/var/lib/gems/2.3.0:/usr/lib/x86_64-linux-gnu/rubygems-integration/2.3.0:/usr/share/rubygems-integration/2.3.0:/usr/share/rubygems-integration/all
 ruby2.3 -S rake -f debian/ruby-tests.rake
  /usr/bin/ruby2.3 -I"test"  
"/usr/lib/ruby/vendor_ruby/rake/rake_test_loader.rb" "test/cdata_node_test.rb" 
"test/deprecated_sanitizer_test.rb" "test/document_test.rb" "test/node_test.rb" 
"test/tag_node_test.rb" "test/text_node_test.rb" "test/tokenizer_test.rb" -v
  /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in `require': 
cannot load such file -- action_view/helpers/sanitize_helper (LoadError)
from /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in 
`require'
from 
/home/lamby/temp/cdt.20160320085914.YMSdAoy2ta/ruby-rails-deprecated-sanitizer-1.0.3/test/test_helper.rb:6:in
 `'
from /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in 
`require'
from /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in 
`require'
from 
/home/lamby/temp/cdt.20160320085914.YMSdAoy2ta/ruby-rails-deprecated-sanitizer-1.0.3/test/cdata_node_test.rb:1:in
 `'
from /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in 
`require'
from /usr/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in 
`require'
from /usr/lib/ruby/vendor_ruby/rake/rake_test_loader.rb:15:in `block in 
'
from /usr/lib/ruby/vendor_ruby/rake/rake_test_loader.rb:4:in `select'
from /usr/lib/ruby/vendor_ruby/rake/rake_test_loader.rb:4:in `'
  rake aborted!
  Command failed with status (1): [ruby -I"test"  
"/usr/lib/ruby/vendor_ruby/rake/rake_test_loader.rb" "test/cdata_node_test.rb" 
"test/deprecated_sanitizer_test.rb" "test/document_test.rb" "test/node_test.rb" 
"test/tag_node_test.rb" "test/text_node_test.rb" "test/tokenizer_test.rb" -v]
  
  Tasks: TOP => default
  (See full trace by running task with --trace)
  ERROR: Test "ruby2.3" failed. Exiting.
  dh_auto_install: dh_ruby --install 
/home/lamby/temp/cdt.20160320085914.YMSdAoy2ta/ruby-rails-deprecated-sanitizer-1.0.3/debian/ruby-rails-deprecated-sanitizer
 returned exit code 1
  debian/rules:6: recipe for target 'binary' failed
  make: *** [binary] Error 1

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


ruby-rails-deprecated-sanitizer.1.0.3-1.unstable.amd64.log.txt.gz
Description: Binary data
--- End Message ---
--- Begin Message ---
Source: ruby-rails-deprecated-sanitizer
Source-Version: 1.0.3-2

We believe that the bug you reported is fixed in the latest version of
ruby-rails-deprecated-sanitizer, 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 818...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Lucas Albuquerque Medeiros de Moura  (supplier of 
updated ruby-rails-deprecated-sanitizer 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, 31 Mar 2016 13:21:25 -0300
Source: ruby-rails-deprecated-sanitizer

[DRE-maint] ruby-sshkit_1.9.0-1_source.changes ACCEPTED into unstable

2016-05-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 06 Apr 2016 14:52:57 +0200
Source: ruby-sshkit
Binary: ruby-sshkit
Architecture: source
Version: 1.9.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Sebastien Badia 
Description:
 ruby-sshkit - toolkit for running commands in a structured way on one or more s
Changes:
 ruby-sshkit (1.9.0-1) unstable; urgency=medium
 .
   [ Cédric Boutillier ]
   * Run wrap-and-sort on packaging files
 .
   [ Sebastien Badia ]
   * Imported Upstream version 1.9.0
Checksums-Sha1:
 dd4d36ae84f8bacac51b74c03f1d5b61b3b5d2f8 2148 ruby-sshkit_1.9.0-1.dsc
 b80ab6d4046dd19bd6584d2484d094f1dc8476f2 139936 ruby-sshkit_1.9.0.orig.tar.gz
 fb3fd5a4934b6424f127f1dbd53597c745f5ffac 4196 ruby-sshkit_1.9.0-1.debian.tar.xz
Checksums-Sha256:
 61d8a970b52a05a2a51ef774a5c9b0c3cd79f032f7f7598d072233ff0b80465d 2148 
ruby-sshkit_1.9.0-1.dsc
 927b3b80e36f64d89f76924d34fb1c044cac6c461ae8dd12cef30113702da50b 139936 
ruby-sshkit_1.9.0.orig.tar.gz
 f95b6e48e85cc3e611c2274908f810019fde90a2144c85eab196d9c31de3bb6f 4196 
ruby-sshkit_1.9.0-1.debian.tar.xz
Files:
 e9a2496cb35f9a60c1056d54fbdbe527 2148 ruby optional ruby-sshkit_1.9.0-1.dsc
 bea559214d89ef94a18bdf4d5493006a 139936 ruby optional 
ruby-sshkit_1.9.0.orig.tar.gz
 6c6f60d4d46baded0ce70117c3a69e89 4196 ruby optional 
ruby-sshkit_1.9.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJliHAAoJEFwT1tuTBS4DsjsP/2LUhn4QX1jkI9XrH0Uj9gFm
plMfkS2LX1vIWVZkRmy0F3N0dPTExN22ZlfwClmuwSwjSMzaHVQ7sBt2Yc5NdZaC
FvOu1F9FRGd4JgUcCuBbaXnv+uycbMZLNaHdytkpJkHvvEZpPycioRZDy4Vr4ImE
mbo0AJYPhcrci1GWwsxyHFZxgO3BDSspberjADtQ2Ff6Q/vt28fohKmblo07fSTW
H1Ieg34moKUiQN9booTQLWkpzP/0Z7tF3S5N19ortYZncjD/i5eEFnieWaIVX+gD
X6Cw/2qYEjrRL7Z1e2EIWO2qkwQdsgb4G133HQmYBpOvkbKvPmxFakS4yI8ZawzG
v/fyak1k6EyRsFEq4UAoBtuwR0b789Zv45COTX3931cDZK+/+z3BxL58yeSqZo1g
AMNareiDMeRMNSmEgHpEjCyDz7yuYfLiafbANFsdQnt/GXhP2+OAZhtwUAdQk3K6
Hkk+ox+iRDY9wZ5izaSpw1HctAnPZFFiIlUiiNSdAXseXXrGnTx3ID+zqQ8ZFRr2
ZHaw1kQkmwzIARrR45MoMO9Nf0seDbhQTLoOi7OyOBh22dG4wsnwLkxfuC0ty8JG
660F/r5fhgKLequW6T5QgkuMrDPInR48MM2zFoCYhuphwohfDocg2wa9u94b9/+t
6P0Iy1ZVk03V0FfMIRi2
=nGuA
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Processing of ruby-sshkit_1.9.0-1_source.changes

2016-05-01 Thread Debian FTP Masters
ruby-sshkit_1.9.0-1_source.changes uploaded successfully to localhost
along with the files:
  ruby-sshkit_1.9.0-1.dsc
  ruby-sshkit_1.9.0.orig.tar.gz
  ruby-sshkit_1.9.0-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] Processing of ruby-rails-deprecated-sanitizer_1.0.3-2_source.changes

2016-05-01 Thread Debian FTP Masters
ruby-rails-deprecated-sanitizer_1.0.3-2_source.changes uploaded successfully to 
localhost
along with the files:
  ruby-rails-deprecated-sanitizer_1.0.3-2.dsc
  ruby-rails-deprecated-sanitizer_1.0.3-2.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers


[DRE-maint] ruby-molinillo_0.4.5-1_source.changes ACCEPTED into unstable

2016-05-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 01 May 2016 18:45:15 +
Source: ruby-molinillo
Binary: ruby-molinillo
Architecture: source
Version: 0.4.5-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 ruby-molinillo - generic dependency resolution algorithm
Changes:
 ruby-molinillo (0.4.5-1) unstable; urgency=medium
 .
   [ Cédric Boutillier ]
   * Bump debhelper compatibility level to 9
   * Use https:// in Vcs-* fields
   * Bump Standards-Version to 3.9.7 (no changes needed)
 .
   [ Christian Hofstaedtler ]
   * New upstream release
Checksums-Sha1:
 4adbbff5e2fe8261a5fa8f5251770507f1cff961 2040 ruby-molinillo_0.4.5-1.dsc
 c8e824ba217b0f5ddc70230f555904ae88384900 16370 ruby-molinillo_0.4.5.orig.tar.gz
 d4d1e40dd1281eb489776d0f29a84de7570406b4 2464 
ruby-molinillo_0.4.5-1.debian.tar.xz
Checksums-Sha256:
 76f40410d36e65fec0c1c1ccd235351ced43158a801b87b7db39491aa85cceb7 2040 
ruby-molinillo_0.4.5-1.dsc
 94b82501e2675debdd197e49ca922e10f26acf25cae39cc1904f1f6aa255abc3 16370 
ruby-molinillo_0.4.5.orig.tar.gz
 19fa87c3bcdb67786e402dc61b737a24ff721b1870db4da2b05d86502fb0f3bf 2464 
ruby-molinillo_0.4.5-1.debian.tar.xz
Files:
 1906b50af17b9e667daa63a1fb67cb1b 2040 ruby optional ruby-molinillo_0.4.5-1.dsc
 a3fd8cc77d7d10d70640f9e4502e6df0 16370 ruby optional 
ruby-molinillo_0.4.5.orig.tar.gz
 d40831a1f0cfe4b2d2c4fec7dc71a72b 2464 ruby optional 
ruby-molinillo_0.4.5-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXJk8sAAoJEFwT1tuTBS4DWjAP/3UgOjPtswn8BHsYYmxbTYBZ
MZI9pTR3a6UOnH2RJ6VLGFEhMdGQ0g7ilLhZq4h4eVSuiQNiEqZ2F971exFE6AcK
cdc9wKGn9Nn0e+FUNwwfH27T8a3TwhTw3Wi++8+UVGpKIGku7YyombRe2a6S1OaX
oNzCWjXT9SK5FQHbo07OEGP77V0pCllqaGWIgDk/mdcEvMAA+BmBkoCDNT8+P1pV
RrNTfxDpiCLy4YDh60Xav0kg8zt05KldqSB46R98oV4ze7Shk5F/5F1doOasMhE/
FVe+0HQjG9OUHRS1tpUdScx655nYOY77yrqyb1FA3PGdnx3fkUVHm9RIzFWSEB1x
LC0xDdrjecao5TD2FMjWHU6rgUJrvdHTuoFn2fdC5Sfg9OHWEtfQ4Sr+Wz8IKc42
eHNHPA1cGaWfOOv+Vng77rrGtEX4WI/qjZNmmDTXBN1k59bj1iw6aK6KOl/9Uenx
S1F+e8hUFrAofZZ/oaGcrCWxudSLkeFeqgXWtzSUHCEGikLCDsbcyaeKhYwXUdZ4
v7z98mB46lnzEk8ot73v7MK5L9cNiZPaXnGjZG/71HJpBJFw8ZUB0r1NC35kFLVL
mQi5YBDKM+jBDELN2elke3JaloaxSWxuIuwtQNcnoVZoi/VJvquzioTcMCrUGMlR
+BIHNmWYa+uP8bKJy4f2
=rvHS
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

[DRE-maint] Processing of ruby-molinillo_0.4.5-1_source.changes

2016-05-01 Thread Debian FTP Masters
ruby-molinillo_0.4.5-1_source.changes uploaded successfully to localhost
along with the files:
  ruby-molinillo_0.4.5-1.dsc
  ruby-molinillo_0.4.5.orig.tar.gz
  ruby-molinillo_0.4.5-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-ruby-extras-maintainers mailing list
Pkg-ruby-extras-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers