[DRE-maint] Processed: retitle 846961 to generate app directory using rake task

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

> retitle 846961 generate app directory using rake task
Bug #846961 [ruby-jquery-ui-rails] update ruby-jquery-ui-rails to 6.0.1 
(libjs-jquery-ui was
Changed Bug title to 'generate app directory using rake task' from 'update 
ruby-jquery-ui-rails to 6.0.1 (libjs-jquery-ui was'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
846961: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=846961
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] Processed: severity of 846961 is grave

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

> severity 846961 grave
Bug #846961 [ruby-jquery-ui-rails] generate app directory using rake task
Severity set to 'grave' from 'wishlist'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
846961: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=846961
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] Processed: unarchive

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

> unarchive 836536
Bug #836536 {Done: Balasankar C } 
[src:ruby-concurrent] ruby-concurrent: FTBFS too much often (failed examples)
Unarchived Bug 836536
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
836536: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836536
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#823743: gitlab: [patch] Please amend the README with instructions of how to upgrade from non-Debian installations

2016-12-08 Thread Johannes Schauer
Hi,

On Sun, 08 May 2016 12:50:41 +0200 Johannes Schauer  wrote:
> please consider the attached patch to update README.Debian with more detailed
> explanations of how to upgrade gitlab from non-Debian installations.

I updated the patch to use runuser instead of su.

Please find it attached.

Thanks!

cheers, josch
From ff6ce75c34e62e7be22fd6bf514107adbd4f5634 Mon Sep 17 00:00:00 2001
From: Johannes Schauer 
Date: Thu, 8 Dec 2016 11:44:43 +0100
Subject: [PATCH] instructions of how to upgrade from non-Debian installations

---
 debian/README.Debian | 58 
 1 file changed, 36 insertions(+), 22 deletions(-)

diff --git a/debian/README.Debian b/debian/README.Debian
index 8ac6063..bbfa3fa 100644
--- a/debian/README.Debian
+++ b/debian/README.Debian
@@ -64,10 +64,7 @@ In Debian, the rake command has to be called by the gitlab user from app home
 directory /usr/share/gitlab and with the environment variables from
 /etc/gitlab/gitlab-debian.conf set. So above command could be run like:
 
-# su gitlab
-$ cd /usr/share/gitlab
-$ export $(cat /etc/gitlab/gitlab-debian.conf)
-$ rake XXX RAILS_ENV=production
+$ runuser -u gitlab -- sh -c 'cd /usr/share/gitlab && export $(cat /etc/gitlab/gitlab-debian.conf) && rake XXX RAILS_ENV=production'
 
 One useful command to run in this environment is:
 
@@ -96,29 +93,46 @@ Migrating from non-Debian gitlab
   - the repositories/ directory
   - the public/uploads/ directory
   - your .ssh/authorized_keys
- 1. Rename your old database to gitlab_production and set the user gitlab as
+ 1. Remove the init script for your old gitlab installation, like:
+  $ rm /etc/init.d/gitlab
+ 2. Install Debian gitlab:
+  $ apt-get install gitlab
+ 3. Stop gitlab services:
+  $ systemctl stop gitlab.target
+ 4. Rename your old database to gitlab_production and set the user gitlab as
 its owner and the owner of all its tables, sequences and views
- 2. Copy your old repository directory to /var/lib/gitlab/repositories/
- 3. Copy your old public/uploads/ directory to /var/lib/gitlab/public/uploads/
- 4. Copy your old .ssh/authorized_keys to /var/lib/gitlab/.ssh/authorized_keys
- 5. Start gitlab using `systemctl start gitlab.target`
- 6. Check the status of your installation using gitlab:check (see section
-above). The output of that command will tell you the necessary remaining
-fixes. You might be told to run:
-
-   $ sudo chmod -R ug+rwX,o-rwx /var/lib/gitlab/repositories/
-   $ sudo -u gitlab -H /usr/share/gitlab-shell/bin/create-hooks
-   $ sudo -u gitlab -H bundle exec rake db:migrate RAILS_ENV=production
-
-See the last section of how to execute the db:migrate command.
+  $ su - postgres
+  $ psql
+  # drop database gitlab_production;
+  # alter database gitlabhq_production rename to gitlab_production;
+  # alter database gitlab_production owner to gitlab;
+  # \q
+  $ for tbl in `psql -qAt -c "select tablename from pg_tables where schemaname = 'public';" gitlab_production` ; do  psql -c "alter table \"$tbl\" owner to gitlab" gitlab_production ; done
+  $ for tbl in `psql -qAt -c "select sequence_name from information_schema.sequences where sequence_schema = 'public';" gitlab_production` ; do  psql -c "alter table \"$tbl\" owner to gitlab" gitlab_production ; done
+ 5. Copy your old repository directory to /var/lib/gitlab/repositories/
+ 6. Copy your old public/uploads/ directory to /var/lib/gitlab/public/uploads/
+ 7. Copy your old .ssh/authorized_keys to /var/lib/gitlab/.ssh/authorized_keys
+ 8. Fix your /var/lib/gitlab/.ssh/authorized_keys to contain the right path to gitlab-shell like:
+  $ sed -i 's/^command="[^ ]\+gitlab-shell /command="\/usr\/share\/gitlab-shell\/bin\/gitlab-shell /' /usr/share/gitlab/.ssh/authorized_keys
+ 9. Fix permission:
+  $ chown -R gitlab:gitlab /var/lib/gitlab/repositories/ /var/lib/gitlab/public/uploads/ /var/lib/gitlab/.ssh/authorized_keys
+  $ chmod -R ug+rwX,o-rwx /var/lib/gitlab/repositories/
+  $ find /var/lib/gitlab/public/uploads -type f -exec chmod 0644 {} \;
+  $ find /var/lib/gitlab/public/uploads -type d -not -path /var/lib/gitlab/public/uploads -exec chmod 0700 {} \;
+ 10. Migrate the database:
+  $ runuser -u gitlab -- sh -c 'cd /usr/share/gitlab && export $(cat /etc/gitlab/gitlab-debian.conf) && rake db:migrate RAILS_ENV=production'
+ 11. Fix hooks:
+  # su gitlab
+  $ /usr/share/gitlab-shell/bin/create-hooks
+ 12. Start gitlab:
+   $ systemctl start gitlab.target
+ 13. Check the installation:
+  $ runuser -u gitlab -- sh -c 'cd /usr/share/gitlab && export $(cat /etc/gitlab/gitlab-debian.conf) && rake gitlab:check RAILS_ENV=production'
 
 Resetting admin password without web interface
 ==
 
-# su gitlab
-$ cd /usr/share/gitlab
-$ export $(cat /etc/gitlab/gitlab-debian.conf)
-$ rails console product

[DRE-maint] Bug#836536: ruby-concurrent: FTBFS too much often (failed examples)

2016-12-08 Thread Santiago Vila
On Mon, 12 Sep 2016, Antonio Terceiro wrote:

> On Mon, Sep 12, 2016 at 11:12:26AM +0530, Balasankar C wrote:
> > On Sat, 3 Sep 2016 21:49:13 +0200 (CEST) Santiago Vila  
> > wrote:
> > >   BTW: I think the "Randomized with seed xxx" above is a bad idea.
> > > Maintainers often ask bug reporters for "a way to reproduce the error".
> > > But if the build is based on random variables, this becomes an
> > > impossible task. Please consider modifying the build system so that
> > > those random things are always the same.
> > 
> > I believe I have fixed this in the latest upload, in which I specified the
> > order to run the tests. I tried building it 5 times in a cowbuilder 
> > environment
> > and didn't hit any failures. Please reopen the bug if this problem persists.
> 
> I think that in general 5 times is probably not enough. the last package
> I fixed that failed randomly would fail 6% of the time (i.e. ~3 times
> out of 50 attempts in my tests).

Indeed, for such a low probability it's better to try a lot of times
to be sure. For this package, I have just built it 200 times and it
failed none, so I believe that yes, it's fixed.

[ Note: I have unarchived this bug to change the Subject, I never
  liked the "too much often" wording. Either it fails always,
  or it fails randomly. How often it fails should not really matter ]

Thanks.

___
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: ruby-concurrent: FTBFS randomly (failed examples)

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

> retitle 836536 ruby-concurrent: FTBFS randomly (failed examples)
Bug #836536 {Done: Balasankar C } 
[src:ruby-concurrent] ruby-concurrent: FTBFS too much often (failed examples)
Changed Bug title to 'ruby-concurrent: FTBFS randomly (failed examples)' from 
'ruby-concurrent: FTBFS too much often (failed examples)'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
836536: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836536
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] itamae_1.9.10-1_amd64.changes ACCEPTED into unstable, unstable

2016-12-08 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 01 Dec 2016 21:23:31 +1100
Source: itamae
Binary: itamae
Architecture: source all
Version: 1.9.10-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Scott Leggett 
Description:
 itamae - Simple Configuration Management Tool
Closes: 842932
Changes:
 itamae (1.9.10-1) unstable; urgency=low
 .
   * Initial release (Closes: #842932)
   * Patch ruby-tests.rake to get specs running, add missing build-dep.
   * Bump Standards-Version to 3.9.8 (no changes required).
   * Update debian/copyright.
   * Write package description.
   * Add manpage for itamae command.
   * Add patch to avoid git command in .gemspec.
Checksums-Sha1:
 51fe978880cc2a1bbba9ecabef0ed963a39a781b 2149 itamae_1.9.10-1.dsc
 47066254fb867f24a480b989da47a1c2ce030157 35946 itamae_1.9.10.orig.tar.gz
 27c063d1ee9ba36de99f07cbb0957b1193df3e4e 5480 itamae_1.9.10-1.debian.tar.xz
 fcd7f877576128c55efef20f46440e9b431ab576 29520 itamae_1.9.10-1_all.deb
 98019a1943fcd0dad111790012d0897dd00a82bd 5835 itamae_1.9.10-1_amd64.buildinfo
Checksums-Sha256:
 b132300c5548e08ec9d6cd840814e7f804206d349ef77bf82aa74f25429eaa1b 2149 
itamae_1.9.10-1.dsc
 d31205702021ad29c2a131e84b81250c67a9094a04ec2f6540ca3a046ae26905 35946 
itamae_1.9.10.orig.tar.gz
 3609b56227a02c9f76a6cbb3515a2177294ce4f07d544b72a728fe1b425c9f7f 5480 
itamae_1.9.10-1.debian.tar.xz
 34969c294572baf7defa4dc7790374192b10313a1a7395b8ba96dda958b17735 29520 
itamae_1.9.10-1_all.deb
 7627f50c576fe9e460357102f2506651f2798b902531c886d5d9329d6627378e 5835 
itamae_1.9.10-1_amd64.buildinfo
Files:
 e2eded79adadd8be9b44c027f5f696f3 2149 ruby optional itamae_1.9.10-1.dsc
 3f7ccd5eb10d7785575f0910b17ba72f 35946 ruby optional itamae_1.9.10.orig.tar.gz
 ee693907d3a17fe0e197ac8b9f76d15c 5480 ruby optional 
itamae_1.9.10-1.debian.tar.xz
 110dc67a51b0ed49c3706961d58005c1 29520 ruby optional itamae_1.9.10-1_all.deb
 8ff6456e7ff735a1412f7ae9fa4b233a 5835 ruby optional 
itamae_1.9.10-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEjtbD+LrJ23/BMKhw+COicpiDyXwFAlhAKmsACgkQ+COicpiD
yXwiSQ/8DUJ3drSeEHZ0lss67B3k8tbLEXNdndxYL3igbEw4I+jbYNtnSXBAOa5Q
aVE0nrMZXKHVTV2eL9GVwDf/WLpfL2wwdG5JGY5zcGduqWTtmidjE3FEgLxYjVzT
0QZsKeY1YMeyqL1sOMBfiiHcZw/UEEYepAn3swADHJs+oanJ4OTqgW2G94sfMICH
cx5rRhPkTLz+YifGGwk3il2xwU7tF34xUgwsS1wzIXioLMSoAAS5DewkkJsjWezo
e8k+J2sULVHyj5jMfP3ZrsJOjapyY/V43qIAT2tLX+KKkkapWgjbiYKxEDQgfeay
NBbaB4osspsWzvrnL43JlIRNIevUy21z8pHnohEWic0qwdt2ImQCNh7coFhYquP2
WYTd8eoxvLCcDPjLfoocv2ZfHjEdIDQNP/m0pORRz70oIX+Bl+A63O98Z///qg5l
V7E16EC92XOVuUxjOmqvAF/oq/2clAa5nZnVGkSOIBct+CRKCMQ6mLwXTNARaQE+
BscpJKZw4jbeHlY6m25ujX+/5vxR6zz9trtcu1HX5aqFZQaTjeTESNVJVm706vcJ
KTQDeTcYeUi5rFM/jcLzB77fvm/P1gqfZPvw8GMnpRLYmSXo74VMvtJY+ZxaYRX5
zoKEWrOsXkJCPv7jbqj8ogusNxymoWX+A02t0YScffmFl0gq5H0=
=IEEE
-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] Bug#847420: gitlab fails to start (shows only 502) after upgrade of ruby-grape-entity

2016-12-08 Thread Antonio Terceiro
On Thu, Dec 08, 2016 at 10:23:42AM +0530, Pirate Praveen wrote:
> Control: severity -1 normal
> 
> On 2016, ഡിസംബർ 8 8:42:57 AM IST, Johannes Schauer  wrote:
> >
> >When I now enter my gitlab instance I only get a 502 error with the
> >message "Whoops, GitLab is taking too much time to respond".
> >
> >Since the last time I changed the version of a ruby package you told me
> >to run assets:precompile, I ran the following command:
> >
> >runuser -u gitlab -- sh -c 'cd /usr/share/gitlab && export $(cat
> >/etc/gitlab/gitlab-debian.conf) && rake assets:precompile
> >RAILS_ENV=production'
> >Could not find grape-entity-0.5.1 in any of the sources
> >Run `bundle install` to install missing gems.
> >
> >Given the error above, I suspect that the new ruby-grape-entity version
> >is the culprit here.
> 
> I think its just the old Gemfile.lock expecting the older version. We should 
> truncate Gemfile.lock in postinst.

You need to both discard Gemfile.lock on upgrades of dependencies as
well, using dpkg triggers. redmine does this for a while, you might want
to check it out.

the same applies to precompiling assets ...


signature.asc
Description: PGP signature
___
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#847450: ruby-celluloid-io: FTBFS randomly (Failed examples: [...] mailbox_spec.rb)

2016-12-08 Thread Santiago Vila
Package: src:ruby-celluloid-io
Version: 0.16.2-3
Severity: serious

Dear maintainer:

To ensure that Bug #836595 was really fixed I tried to build this
package 200 times in unstable and it still failed from time to time
(using different autobuilders).


[...]
 debian/rules build-indep
dh build-indep --buildsystem=ruby --with ruby
   dh_testdir -i -O--buildsystem=ruby
   dh_update_autotools_config -i -O--buildsystem=ruby
   dh_auto_configure -i -O--buildsystem=ruby
dh_ruby --configure
   dh_auto_build -i -O--buildsystem=ruby
dh_ruby --build
   dh_ruby --build
   dh_auto_test -i -O--buildsystem=ruby
dh_ruby --test
 fakeroot debian/rules binary-indep
dh binary-indep --buildsystem=ruby --with ruby

[... snipped ...]

Deprecation Warnings:

Using `should_not` from rspec-expectations' old `:should` syntax without 
explicitly enabling the syntax is deprecated. Use the new `:expect` syntax or 
explicitly enable `:should` with `config.expect_with(:rspec) { |c| c.syntax = 
:should }` instead. Called from 
/<>/spec/celluloid/io/udp_socket_spec.rb:28:in `block (3 levels) 
in '.


If you need more of the backtrace for any of these deprecations to
identify where to make the necessary changes, you can configure
`config.raise_errors_for_deprecations!`, and it will turn the
deprecation warnings into errors, giving you the full backtrace.

1 deprecation warning total

Finished in 13.72 seconds (files took 0.49662 seconds to load)
189 examples, 1 failure

Failed examples:

rspec './spec/celluloid/io/mailbox_spec.rb[1:1:4]' # Celluloid::IO::Mailbox 
behaves like a Celluloid Mailbox waits for a given timeout interval

Randomized with seed 32799

/usr/bin/ruby2.3 /usr/bin/rspec ./spec/celluloid/io/actor_spec.rb 
./spec/celluloid/io/dns_resolver_spec.rb ./spec/celluloid/io/mailbox_spec.rb 
./spec/celluloid/io/ssl_server_spec.rb ./spec/celluloid/io/ssl_socket_spec.rb 
./spec/celluloid/io/tcp_server_spec.rb ./spec/celluloid/io/udp_socket_spec.rb 
./spec/celluloid/io/unix_server_spec.rb ./spec/celluloid/io_spec.rb --format 
documentation failed
ERROR: Test "ruby2.3" failed. Exiting.
dh_auto_install: dh_ruby --install /<>/debian/ruby-celluloid-io 
returned exit code 1
debian/rules:6: recipe for target 'binary-indep' failed
make: *** [binary-indep] Error 1
dpkg-buildpackage: error: fakeroot debian/rules binary-indep gave error exit 
status 2


If you try to reproduce this in your machine, please try a *lot* of
times, the failure rate is about 2.5%.

I attach the five failed build logs I got.

Thanks.

ruby-celluloid-io_0.16.2-3_amd64-20161207T191728Z.gz
Description: application/gzip


ruby-celluloid-io_0.16.2-3_amd64-20161207T192306Z.gz
Description: application/gzip


ruby-celluloid-io_0.16.2-3_amd64-20161207T192425Z.gz
Description: application/gzip


ruby-celluloid-io_0.16.2-3_amd64-20161207T200724Z.gz
Description: application/gzip


ruby-celluloid-io_0.16.2-3_amd64-20161207T230122Z.gz
Description: application/gzip
___
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 open-build-service_2.7.1-6_amd64.changes

2016-12-08 Thread Debian FTP Masters
open-build-service_2.7.1-6_amd64.changes uploaded successfully to localhost
along with the files:
  open-build-service_2.7.1-6.dsc
  open-build-service_2.7.1-6.debian.tar.xz
  obs-api_2.7.1-6_amd64.deb
  obs-productconverter_2.7.1-6_amd64.deb
  obs-server_2.7.1-6_amd64.deb
  obs-utils_2.7.1-6_amd64.deb
  obs-worker_2.7.1-6_amd64.deb

Greetings,

Your Debian queue daemon (running on host usper.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] open-build-service_2.7.1-6_amd64.changes ACCEPTED into experimental

2016-12-08 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 08 Dec 2016 19:13:53 +0800
Source: open-build-service
Binary: obs-server obs-worker obs-api obs-productconverter obs-utils
Architecture: source amd64
Version: 2.7.1-6
Distribution: experimental
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Andrew Lee (李健秋) 
Description:
 obs-api- Open Build Service (api)
 obs-productconverter - Open Build Service (product definition utility)
 obs-server - Open Build Service (server component)
 obs-utils  - Open Build Service (utilities)
 obs-worker - Open Build Service (build host component)
Changes:
 open-build-service (2.7.1-6) experimental; urgency=medium
 .
   * Move log, tmp and config files out of /usr and creates links instead.
Checksums-Sha1:
 bc07b0e69f9f078b4235340d632bfcfb18428622 3313 open-build-service_2.7.1-6.dsc
 0e93ff81feabd3418362f13359164cbc1a993043 201560 
open-build-service_2.7.1-6.debian.tar.xz
 18517fcb88bb706046766c99d4f200f8ba65ab8e 1339312 obs-api_2.7.1-6_amd64.deb
 a1ddd1f92877045d94263313a55b28fec4358a92 20068 
obs-productconverter_2.7.1-6_amd64.deb
 97155327736bebfee25f4b9dd22799c79174a22e 324298 obs-server_2.7.1-6_amd64.deb
 d20c7da786bcfaabacc6b0eccb64851eed967d7f 5982 obs-utils_2.7.1-6_amd64.deb
 dcce1f4e35ea13e48c4b667d340b078c4a601c7b 10132 obs-worker_2.7.1-6_amd64.deb
Checksums-Sha256:
 44758318b7e7f5325f49a1b351bff92f5b50ff14a086b589d0335a65137e0153 3313 
open-build-service_2.7.1-6.dsc
 863540470ca50f9190d86f43cc8e3c7e6107df2f89de791f927d3dcb4e36d897 201560 
open-build-service_2.7.1-6.debian.tar.xz
 30eb449cf2b986700e9e37971774b186cb018aaee473ace3404adb6c0189a4cd 1339312 
obs-api_2.7.1-6_amd64.deb
 2c1ce18a457ccea3c24dd002972f7c8e23eb1a67f238c60caeec9604cea84009 20068 
obs-productconverter_2.7.1-6_amd64.deb
 9881a8122d41f438899393429ebbadd6f06e1a2d0b7543dcdbb77afa5747d5f3 324298 
obs-server_2.7.1-6_amd64.deb
 48fe515d335f40985f893f4ed7dba9dbc039ec4a3d13910efcc578f362110517 5982 
obs-utils_2.7.1-6_amd64.deb
 39cd79509ec1bd219c2a217e59ceb5b31bf7b42e841c3f0680e9fd86e9e35bba 10132 
obs-worker_2.7.1-6_amd64.deb
Files:
 391c7168b598a7d4ab6d6cb41791928b 3313 devel optional 
open-build-service_2.7.1-6.dsc
 1983f2c3ad369e2762039bf96ceb2104 201560 devel optional 
open-build-service_2.7.1-6.debian.tar.xz
 e8bef9b5a47ec0cdbaf950360722e757 1339312 devel optional 
obs-api_2.7.1-6_amd64.deb
 b2f819113833469cab0e78a780c173fe 20068 devel optional 
obs-productconverter_2.7.1-6_amd64.deb
 cd9e221c46c44ac61882f14c78ca5e1a 324298 devel optional 
obs-server_2.7.1-6_amd64.deb
 5f482552ecd328100b1521d100a2d5e4 5982 devel optional 
obs-utils_2.7.1-6_amd64.deb
 8f20b1b3b8b2164f1137b6d9c1a7714a 10132 devel optional 
obs-worker_2.7.1-6_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYSUJ7AAoJEOfL4VKsF/lzVOgP/iYQO+IwOv17OWuGzr9IVC1I
FQ1+GoXD+7CePzt4irwvxEJa131IJSAI6jt1waqcONaCr8uoYXTum8FiX6cvi6nO
dlh3XPjY2ik6UDxMlJKb4efOJFg8vq1KAnU5Thvzlws/6dWKHwvaPMKQS8jo+SuL
sMjzDyT9fHwORdievYcVng/fQJNi/LYPdLI00915kuLmtz5Cxu1Gs7cEyxp2iX+A
4CTXmVP3AWiBzhTMvEIMru7TV1eXqkbd60Oyeqopg0++14KvoZemeSd4P9/et9Sh
bzbqa6pr4MFfpKNEtKjp5Rgq2ZZIdwF/kV8ZRy7h2GBt3I3LBYalpu2qGiWNJD/J
3olOcSLPClhp32k29ADXRvxB66M6LhSWqfX49oEggbHIUEAi9msN6eb/zlpyBTQ9
uUUGIcqAMCxWF8/qY0+txu1DSTyqaZiQ80kx+N/kpmEmi+707IjUFSDgceSq7hQu
Jqf9kxGQ0sSCmQFzLpkSLbVmXvp7C0sL77i2UP2vFbH1tBaSL1f33wkfzQ/ASysE
43fpCryBr+34D4ZT/bBhtupePI7IRbTSBXVwv7Tr6B466TLnEZk/P5HG9K3tHear
uFLsZ5UXJd1FXDF9VLQnJ7WqQpfkOQj2YR4gJWg/Ytz0c8PlfAQE+S8WfxnMsb83
fd+c/6O/lmtatX29b89o
=7faC
-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] Bug#846115: jekyll: FTBFS randomly (failing tests)

2016-12-08 Thread Youhei SASAKI
Hi,

On Mon, 28 Nov 2016 23:55:37 +0900,
Santiago Vila  wrote:
>
> Package: src:jekyll
> Version: 3.1.6+dfsg-3
> Severity: serious
>
> Dear maintainer:
>
> I tried to build this package in stretch with "dpkg-buildpackage -A"
> (which is what the "Arch: all" autobuilder would do to build it)
> but it failed:

Hm... *I can't reproduce this bug*.

> If (after trying a lot of times) you could not reproduce this using
> sbuild on a single CPU virtual machine (as I did), please do not
> downgrade or mark as unreproducible, I would then consider giving you
> access to a virtual machine on which I can reproduce it so that you
> can as well. (In such case, please contact me off-list for details).

As attached logs, I'll prepare some amd64 VM's with Single CPU, Mutli
CPU, using cowbluider, sbuild... But *I can't reproduce*,
All run success. (I try 2VM * 2 builder * 10 run randomly).

Need more info.
# I want to donwgrade this bug as unreproducable...

Best Wishes,
Youhei

---
Youhei SASAKI 
  
GPG fingerprint:
  4096/RSA: 66A4 EA70 4FE2 4055 8D6A C2E6 9394 F354 891D 7E07

___
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 bundler_1.13.6-2_source.changes

2016-12-08 Thread Debian FTP Masters
bundler_1.13.6-2_source.changes uploaded successfully to localhost
along with the files:
  bundler_1.13.6-2.dsc
  bundler_1.13.6-2.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.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] bundler_1.13.6-2_source.changes REJECTED

2016-12-08 Thread Debian FTP Masters


bundler_1.13.6-2.dsc: Refers to non-existing file 'bundler_1.13.6.orig.tar.gz'
Perhaps you need to include the file in your upload?



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


___
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 bundler_1.13.6-2_source.changes

2016-12-08 Thread Debian FTP Masters
bundler_1.13.6-2_source.changes uploaded successfully to localhost
along with the files:
  bundler_1.13.6-2.dsc
  bundler_1.13.6.orig.tar.gz
  bundler_1.13.6-2.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.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] bundler_1.13.6-2_source.changes ACCEPTED into unstable

2016-12-08 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 08 Dec 2016 11:52:23 +
Source: bundler
Binary: ruby-bundler bundler
Architecture: source
Version: 1.13.6-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Christian Hofstaedtler 
Description:
 bundler- Manage Ruby application dependencies
 ruby-bundler - Manage Ruby application dependencies (runtime)
Changes:
 bundler (1.13.6-2) unstable; urgency=medium
 .
   * Team upload.
   * Merge changelogs.
   * Remove myself from Uploaders, again.
Checksums-Sha1:
 e0eb3e51912f888744409fcfa906dc5f4ecd9e4b 2155 bundler_1.13.6-2.dsc
 70415dd26b00041527b65ede6a28c37d2881928c 431149 bundler_1.13.6.orig.tar.gz
 cb8a99cafb7df6b8714f8080906d6e6104ebb7d5 8000 bundler_1.13.6-2.debian.tar.xz
Checksums-Sha256:
 b075aa78a629b19ef781e9437e097dacc86df295f04a1b091001a67f02aedab7 2155 
bundler_1.13.6-2.dsc
 c0019ea1ba1de04a5ed57730d3b95553810153bf474944a7d3fcc8b89878cd03 431149 
bundler_1.13.6.orig.tar.gz
 0e8114e2ba4975e7e9430ca94ff1f3cb320a5ce4079e134dbd798fb7b31ce88b 8000 
bundler_1.13.6-2.debian.tar.xz
Files:
 20422db73dab3b26111ef71e0b8e4ca0 2155 ruby optional bundler_1.13.6-2.dsc
 af992f90f8a121c34cd4b669bd8e3006 431149 ruby optional 
bundler_1.13.6.orig.tar.gz
 2900629187aaf4670e9196d466a14d9e 8000 ruby optional 
bundler_1.13.6-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEfRrP+tnggGycTNOSXBPW25MFLgMFAlhJUR8ACgkQXBPW25MF
LgO+LxAAlxovXfH2EmnxwUwNtyLJRDkqpY/5l373e4NtOB10z8Wqh7o8p8SkzZ5S
15R2BVsyBpy7lUGVBvzFOk+A31xIdXzsNw9r8WqTRM9uZyGQiSOC4RPps3hAqoXA
m/5SCgPQIh95bRbJRKgpPhybDRiiBxwmKMcqCkavS62JL2xmfsBp4hUsozejHEjI
K2wsVNM+FZClxboRqE9W8ilFalP6l366aR8xsJcmuN9dM/bfyocFPfwVIq22rDBe
4ADsoXR2YtVyjaNLoMa/BJ0dSy6xU9utYxjqGWKABdU0oHQLEn8mrECCRfBsbMpu
xc0GPzd/9AaBEGc7L7/awetKCDgM3qPOL+kfG0AkTovA+OhXzkt9zs/vLobw6g1j
rCzl0sa1sqeNAS6SSIOlSPFO5hrfBaCKYrDuzCKzEcqIy3SD7NiPU6fZZgx3TZJJ
opUxFOioED53HwPjweL3u53Fk7A38ZbUR9xYYiB+3NxJiYm1mRGZhn0fjrN3x3FK
dmjr5Jnoc7CkKGEye7It51VpCCgMOf2wEyLJlsqaBkqazivqZdtsGaJKI+qvYF1f
8NkNAJQri6rO0538sOL5g4WJOw9DJOxHAUUiYlLS2q7je4OS6UtgjU+gT737Vu2o
UR8lh9uX+rX4H3hMNq6htNeJ5rhKbPv6cq4ZuYS5mNahcEVq33U=
=R7nw
-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] Bug#846115: Bug#846115: jekyll: FTBFS randomly (failing tests)

2016-12-08 Thread Christian Hofstaedtler
* Youhei SASAKI  [161208 12:57]:
> On Mon, 28 Nov 2016 23:55:37 +0900,
> Santiago Vila  wrote:
> > Package: src:jekyll
> > Version: 3.1.6+dfsg-3
> >
> > I tried to build this package in stretch with "dpkg-buildpackage -A"
> > (which is what the "Arch: all" autobuilder would do to build it)
> > but it failed:
> 
> Hm... *I can't reproduce this bug*.

I just hit this on the first try, when doing:

  $ apt-get source jekyll -d
  $ sbuild jekyll_3.1.6+dfsg-3.dsc -A -d unstable

Log attached.

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



jekyll_3.1.6+dfsg-3_amd64-2016-12-08T13:00:49Z.build.gz
Description: application/gunzip
___
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#846115: Bug#846115: Bug#846115: jekyll: FTBFS randomly (failing tests)

2016-12-08 Thread Christian Hofstaedtler
* Christian Hofstaedtler  [161208 14:09]:
> * Youhei SASAKI  [161208 12:57]:
> > On Mon, 28 Nov 2016 23:55:37 +0900,
> > Santiago Vila  wrote:
> > > Package: src:jekyll
> > > Version: 3.1.6+dfsg-3
> > >
> > > I tried to build this package in stretch with "dpkg-buildpackage -A"
> > > (which is what the "Arch: all" autobuilder would do to build it)
> > > but it failed:
> > 
> > Hm... *I can't reproduce this bug*.
> 
> I just hit this on the first try, when doing:
> 
>   $ apt-get source jekyll -d
>   $ sbuild jekyll_3.1.6+dfsg-3.dsc -A -d unstable

So, this fails reliably for me in an unpacked source tree, by just
running:


$ SEED=23557 rake -f debian/ruby-tests.rake
/usr/bin/ruby2.3 -I"lib:lib:test"
"/usr/lib/ruby/vendor_ruby/rake/rake_test_loader.rb"
"test/test_ansi.rb" "test/test_cleaner.rb"
"test/test_coffeescript.rb" "test/test_collections.rb"
"test/test_command.rb" "test/test_commands_serve.rb"
"test/test_configuration.rb" "test/test_doctor_command.rb"
"test/test_document.rb" "test/test_entry_filter.rb"
"test/test_excerpt.rb" "test/test_excerpt_drop.rb"
"test/test_filters.rb" "test/test_front_matter_defaults.rb"
"test/test_generated_site.rb" "test/test_kramdown.rb"
"test/test_layout_reader.rb" "test/test_liquid_extensions.rb"
"test/test_liquid_renderer.rb" "test/test_log_adapter.rb"
"test/test_new_command.rb" "test/test_page.rb"
"test/test_path_sanitization.rb" "test/test_rdiscount.rb"
"test/test_redcarpet.rb" "test/test_regenerator.rb"
"test/test_related_posts.rb" "test/test_sass.rb" "test/test_site.rb"
"test/test_static_file.rb" "test/test_url.rb" "test/test_utils.rb"

(One long line.)

>From what I can tell, depending on the test execution order, the
"default_configuration" hash gets changed: it either has source set
to test/source or it's missing (then PWD is assumed).

Good luck,
-- 
christian hofstaedtler 

___
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-gli 2.14.0-1 MIGRATED to testing

2016-12-08 Thread Debian testing watch
FYI: The status of the ruby-gli source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  2.14.0-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
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-clean-test 1.0.0-1 MIGRATED to testing

2016-12-08 Thread Debian testing watch
FYI: The status of the ruby-clean-test source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  1.0.0-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
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-mechanize 2.7.5-1 MIGRATED to testing

2016-12-08 Thread Debian testing watch
FYI: The status of the ruby-mechanize source package
in Debian's testing distribution has changed.

  Previous version: 2.7.4-3
  Current version:  2.7.5-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
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: ruby-httpclient: FTBFS randomly (failing tests)

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

> retitle 834686 ruby-httpclient: FTBFS randomly (failing tests)
Bug #834686 [src:ruby-httpclient] ruby-httpclient: FTBFS too much often 
(failing tests)
Changed Bug title to 'ruby-httpclient: FTBFS randomly (failing tests)' from 
'ruby-httpclient: FTBFS too much often (failing tests)'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
834686: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834686
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#834686: ruby-httpclient: FTBFS randomly (failing tests)

2016-12-08 Thread Santiago Vila
retitle 834686 ruby-httpclient: FTBFS randomly (failing tests)
thanks

[ I'm changing the subject because I never liked the old wording ].

If you try to reproduce this, please try a lot of times. After
building this package 100 times today, the failure rate is about 20%.
(Using sbuild on a single CPU QEMU/KVM virtual machine).

Thanks.

___
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: Bug#847420: gitlab fails to start (shows only 502) after upgrade of ruby-grape-entity

2016-12-08 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 pending
Bug #847420 [gitlab] gitlab fails to start (shows only 502) after upgrade of 
ruby-grape-entity
Added tag(s) pending.

-- 
847420: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=847420
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#847420: gitlab fails to start (shows only 502) after upgrade of ruby-grape-entity

2016-12-08 Thread Pirate Praveen
Control: tags -1 pending

On Thu, 8 Dec 2016 09:01:34 -0200 Antonio Terceiro 
wrote:
> You need to both discard Gemfile.lock on upgrades of dependencies as
> well, using dpkg triggers. redmine does this for a while, you might want
> to check it out.

Thanks! I was thinking about asking it on debian-ruby for a long time.



signature.asc
Description: OpenPGP digital signature
___
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-thinking-sphinx is marked for autoremoval from testing

2016-12-08 Thread Debian testing autoremoval watch
ruby-thinking-sphinx 3.2.0-1 is marked for autoremoval from testing on 
2017-01-05

It (build-)depends on packages with these RC bugs:
841601: ruby-riddle: FTBFS: ERROR: Test "ruby2.3" failed.


___
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-riddle is marked for autoremoval from testing

2016-12-08 Thread Debian testing autoremoval watch
ruby-riddle 1.5.12-3 is marked for autoremoval from testing on 2017-01-05

It is affected by these RC bugs:
841601: ruby-riddle: FTBFS: ERROR: Test "ruby2.3" failed.


___
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