[Reproducible-builds] Bug#815962: kdevplatform -> kdevelop: please make the build reproducible (umask)

2016-02-25 Thread Scarlett Clark
Source: kdevplatform
Version: 1.7.2
Severity: wishlist
Tags: patch

User: reproducible-builds@lists.alioth.debian.org
Usertags: umask

Hi!

While working on the “reproducible builds” effort [1], we have noticed
that kdevelop could not be built reproducibly.

The attached patch removes umask issues from the tarballs. Once applied,
kdevelop can use the kdevplatform macro to create tarballs for the template
tars, then kevelop can be built reproducibly in our current experimental
framework.

 [1]: https://wiki.debian.org/ReproducibleBuilds



-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.3.0-1-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Description: Add --mode=go=rX,u+rw,a-s to tar command line. 
 To fix buid reproducibility. 
Forwarded: TBD
Author: Scarlett Clark 

diff --git a/cmake/modules/KDevPlatformMacros.cmake b/cmake/modules/KDevPlatformMacros.cmake
index f27066a..4a24e35 100644
--- a/cmake/modules/KDevPlatformMacros.cmake
+++ b/cmake/modules/KDevPlatformMacros.cmake
@@ -52,8 +52,8 @@ macro(kdevplatform_create_template_archive _templateName)
 else(WIN32)
 add_custom_command(OUTPUT ${_template}
 COMMAND tar ARGS -c -C ${CMAKE_CURRENT_SOURCE_DIR}/${_templateName}
---exclude .kdev_ignore --exclude .svn
--j -f ${_template} .
+--exclude .kdev_ignore --exclude .svn --mode=go=rX,u+rw,a-s --owner=root 
+--group=root --numeric-owner -j -f ${_template} .
 DEPENDS ${_deps}
 )
 endif(WIN32)
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

[Reproducible-builds] Bug#815844: Bug#815844: diffoscope won't build without python-magic from PyPi

2016-02-25 Thread Jérémy Bobbio
Leo Famulari:
> However, diffoscope's README [2] says that:
> 
> ``Magic-file-extension`` can be used instead of
> ``python-magic``. It is built from `file
> `_.
> Available on Debian and Fedora as ``python3-magic``.
> 
> I removed the requirement of python-magic from setup.py and built
> against the Python bindings distributed with `file`, as packaged in Guix
> [3]. Diffoscope seems to work just fine this way.

Indeed. That's how it works in Debian.

> Will you consider making python-magic an optional dependency of
> diffoscope, so that downstream packagers don't have to package
> python-magic from PyPi or work around this issue by patching setup.py?

I have no idea how you can specify alternate dependencies in setup.py or
if that's possible. If you find a solution I guess someone could apply a
patch.

If that's not possible, I believe that carrying a one-liner in Guix is
not unreasonable.

-- 
Lunar.''`. 
lu...@debian.org: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

[Reproducible-builds] Bug#815901: compton-conf: please make the build reproducible

2016-02-25 Thread Dhole
Source: compton-conf 
Version: 0.1.0+20151226-1 
Severity: wishlist
Tags: patch
User: reproducible-builds@lists.alioth.debian.org
Usertags: locale
X-Debbugs-Cc: reproducible-builds@lists.alioth.debian.org

Hi,

While working on the "reproducible builds" effort [1], we have noticed that
compton-conf could not be built reproducibly.

When processing translation files and using a non-UTF8 locale, grep
misdetects them as binary files and embeds the line: "Binary file
(standard input) matches"

The attached patch fixes this by telling grep to treat the input as
text.Once applied, compton-conf can be built reproducibly in our current
experimental framework.

 [1]: https://wiki.debian.org/ReproducibleBuilds

Regards,
-- 
Dhole
diff -Nru compton-conf-0.1.0+20151226/debian/changelog 
compton-conf-0.1.0+20151226/debian/changelog
--- compton-conf-0.1.0+20151226/debian/changelog2015-12-26 
13:25:40.0 +0100
+++ compton-conf-0.1.0+20151226/debian/changelog2016-02-25 
11:11:54.0 +0100
@@ -1,3 +1,10 @@
+compton-conf (0.1.0+20151226-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix misdetection as binary input in grep when LC_ALL=C 
+
+ -- Eduard Sanou   Thu, 25 Feb 2016 11:11:48 +0100
+
 compton-conf (0.1.0+20151226-1) unstable; urgency=medium
 
   * Cherry-picking upstream version 0.1.0+20151226.  
diff -Nru compton-conf-0.1.0+20151226/debian/patches/series 
compton-conf-0.1.0+20151226/debian/patches/series
--- compton-conf-0.1.0+20151226/debian/patches/series   1970-01-01 
01:00:00.0 +0100
+++ compton-conf-0.1.0+20151226/debian/patches/series   2016-02-25 
11:12:05.0 +0100
@@ -0,0 +1 @@
+unicode-grep.patch
diff -Nru compton-conf-0.1.0+20151226/debian/patches/unicode-grep.patch 
compton-conf-0.1.0+20151226/debian/patches/unicode-grep.patch
--- compton-conf-0.1.0+20151226/debian/patches/unicode-grep.patch   
1970-01-01 01:00:00.0 +0100
+++ compton-conf-0.1.0+20151226/debian/patches/unicode-grep.patch   
2016-02-25 11:12:16.0 +0100
@@ -0,0 +1,22 @@
+Author: Eduard Sanou 
+Description: Fix misdetection as binary input when LC_ALL=C
+
+--- compton-conf-0.1.0+20151226.orig/cmake/LXQtTranslateDesktop.cmake
 compton-conf-0.1.0+20151226/cmake/LXQtTranslateDesktop.cmake
+@@ -71,13 +71,13 @@ function(lxqt_translate_desktop _RESULT)
+ set(_pattern "'\\[.*]\\s*='")
+ if (_translations)
+ add_custom_command(OUTPUT ${_outFile}
+-COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
+-COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile}
++COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
++COMMAND grep -a -h ${_pattern} ${_translations} >> ${_outFile}
+ COMMENT "Generating ${_fileName}${_fileExt}"
+ )
+ else()
+ add_custom_command(OUTPUT ${_outFile}
+-COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
++COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
+ COMMENT "Generating ${_fileName}${_fileExt}"
+ )
+ endif()


signature.asc
Description: PGP signature
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

[Reproducible-builds] Bug#815899: screengrab: please make the build reproducible

2016-02-25 Thread Dhole
Source: screengrab 
Version: 1.95+20160128-1 
Severity: wishlist
Tags: patch
User: reproducible-builds@lists.alioth.debian.org
Usertags: locale
X-Debbugs-Cc: reproducible-builds@lists.alioth.debian.org

Hi,

While working on the "reproducible builds" effort [1], we have noticed
that screengrab could not be built reproducibly.

When processing translation files and using a non-UTF8 locale, grep
misdetects them as binary files and embeds the line: "Binary file
(standard input) matches"

The attached patch fixes this by telling grep to treat the input as
text. Once applied, screengrab can be built reproducibly in our current
experimental framework.

 [1]: https://wiki.debian.org/ReproducibleBuilds

Regards,
-- 
Dhole
diff -Nru screengrab-1.95+20160128/debian/changelog 
screengrab-1.95+20160128/debian/changelog
--- screengrab-1.95+20160128/debian/changelog   2016-01-30 03:48:56.0 
+0100
+++ screengrab-1.95+20160128/debian/changelog   2016-02-25 00:02:39.0 
+0100
@@ -1,3 +1,10 @@
+screengrab (1.95+20160128-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix misdetection as binary input in grep when LC_ALL=C 
+
+ -- Eduard Sanou   Thu, 25 Feb 2016 00:02:00 +0100
+
 screengrab (1.95+20160128-1) unstable; urgency=medium
 
   * Cherry-picking upstream version 1.95+20160128.
diff -Nru screengrab-1.95+20160128/debian/patches/series 
screengrab-1.95+20160128/debian/patches/series
--- screengrab-1.95+20160128/debian/patches/series  1970-01-01 
01:00:00.0 +0100
+++ screengrab-1.95+20160128/debian/patches/series  2016-02-25 
00:02:57.0 +0100
@@ -0,0 +1 @@
+unicode-grep.patch
diff -Nru screengrab-1.95+20160128/debian/patches/unicode-grep.patch 
screengrab-1.95+20160128/debian/patches/unicode-grep.patch
--- screengrab-1.95+20160128/debian/patches/unicode-grep.patch  1970-01-01 
01:00:00.0 +0100
+++ screengrab-1.95+20160128/debian/patches/unicode-grep.patch  2016-02-25 
00:04:19.0 +0100
@@ -0,0 +1,22 @@
+Author: Eduard Sanou 
+Description: Fix misdetection as binary input when LC_ALL=C
+
+--- screengrab-1.95+20160128.orig/cmake/LXQtTranslateDesktop.cmake
 screengrab-1.95+20160128/cmake/LXQtTranslateDesktop.cmake
+@@ -71,13 +71,13 @@ function(lxqt_translate_desktop _RESULT)
+ set(_pattern "'\\[.*]\\s*='")
+ if (_translations)
+ add_custom_command(OUTPUT ${_outFile}
+-COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
+-COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile}
++COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
++COMMAND grep -a -h ${_pattern} ${_translations} >> ${_outFile}
+ COMMENT "Generating ${_fileName}${_fileExt}"
+ )
+ else()
+ add_custom_command(OUTPUT ${_outFile}
+-COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
++COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
+ COMMENT "Generating ${_fileName}${_fileExt}"
+ )
+ endif()


signature.asc
Description: PGP signature
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

[Reproducible-builds] Bug#815898: lximage-qt: please make the build reproducible

2016-02-25 Thread Dhole
Source: lximage-qt 
Version: 0.4.0+20160108-1 
Severity: wishlist
Tags: patch
User: reproducible-builds@lists.alioth.debian.org
Usertags: locale
X-Debbugs-Cc: reproducible-builds@lists.alioth.debian.org

Hi,

While working on the "reproducible builds" effort [1], we have noticed
that lximage-qt could not be built reproducibly.

When processing translation files and using a non-UTF8 locale, grep
misdetects them as binary files and embeds the line: "Binary file
(standard input) matches"

The attached patch fixes this by telling grep to treat the input as
text.Once applied, lximage-qt can be built reproducibly in our current
experimental framework.


 [1]: https://wiki.debian.org/ReproducibleBuilds

 Regards,

-- 
Dhole
diff -Nru lximage-qt-0.4.0+20160108/debian/changelog 
lximage-qt-0.4.0+20160108/debian/changelog
--- lximage-qt-0.4.0+20160108/debian/changelog  2016-02-07 22:55:45.0 
+0100
+++ lximage-qt-0.4.0+20160108/debian/changelog  2016-02-24 23:43:03.0 
+0100
@@ -1,3 +1,10 @@
+lximage-qt (0.4.0+20160108-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix misdetection as binary input in grep when LC_ALL=C 
+
+ -- Eduard Sanou   Wed, 24 Feb 2016 23:42:25 +0100
+
 lximage-qt (0.4.0+20160108-1) unstable; urgency=medium
 
   * Cherry-picked new upstream version 0.4.0+20160108. 
diff -Nru lximage-qt-0.4.0+20160108/debian/patches/series 
lximage-qt-0.4.0+20160108/debian/patches/series
--- lximage-qt-0.4.0+20160108/debian/patches/series 1970-01-01 
01:00:00.0 +0100
+++ lximage-qt-0.4.0+20160108/debian/patches/series 2016-02-24 
23:43:31.0 +0100
@@ -0,0 +1 @@
+unicode-grep.patch
diff -Nru lximage-qt-0.4.0+20160108/debian/patches/unicode-grep.patch 
lximage-qt-0.4.0+20160108/debian/patches/unicode-grep.patch
--- lximage-qt-0.4.0+20160108/debian/patches/unicode-grep.patch 1970-01-01 
01:00:00.0 +0100
+++ lximage-qt-0.4.0+20160108/debian/patches/unicode-grep.patch 2016-02-24 
23:44:58.0 +0100
@@ -0,0 +1,22 @@
+Author: Eduard Sanou 
+Description: Fix misdetection as binary input when LC_ALL=C
+
+--- lximage-qt-0.4.0+20160108.orig/cmake/LXQtTranslateDesktop.cmake
 lximage-qt-0.4.0+20160108/cmake/LXQtTranslateDesktop.cmake
+@@ -71,13 +71,13 @@ function(lxqt_translate_desktop _RESULT)
+ set(_pattern "'\\[.*]\\s*='")
+ if (_translations)
+ add_custom_command(OUTPUT ${_outFile}
+-COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
+-COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile}
++COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
++COMMAND grep -a -h ${_pattern} ${_translations} >> ${_outFile}
+ COMMENT "Generating ${_fileName}${_fileExt}"
+ )
+ else()
+ add_custom_command(OUTPUT ${_outFile}
+-COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
++COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
+ COMMENT "Generating ${_fileName}${_fileExt}"
+ )
+ endif()


signature.asc
Description: PGP signature
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

[Reproducible-builds] Bug#815900: obconf-qt: please make the build reproducible

2016-02-25 Thread Dhole
Source: obconf-qt 
Version: 0.9.0+20151227-1 
Severity: wishlist
Tags: patch
User: reproducible-builds@lists.alioth.debian.org
Usertags: locale
X-Debbugs-Cc: reproducible-builds@lists.alioth.debian.org

Hi,

While working on the "reproducible builds" effort [1], we have noticed
that
obconf-qt could not be built reproducibly.

When processing translation files and using a non-UTF8 locale, grep
misdetects them as binary files and embeds the line: "Binary file
(standard input) matches"

The attached patch fixes this by telling grep to treat the input as
text.Once applied, obconf-qt can be built reproducibly in our current
experimental framework.

 [1]: https://wiki.debian.org/ReproducibleBuilds

Regards,
-- 
Dhole
diff -Nru obconf-qt-0.9.0+20151227/debian/changelog 
obconf-qt-0.9.0+20151227/debian/changelog
--- obconf-qt-0.9.0+20151227/debian/changelog   2015-12-27 01:16:30.0 
+0100
+++ obconf-qt-0.9.0+20151227/debian/changelog   2016-02-25 00:19:06.0 
+0100
@@ -1,3 +1,10 @@
+obconf-qt (0.9.0+20151227-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix misdetection as binary input in grep when LC_ALL=C 
+
+ -- Eduard Sanou   Thu, 25 Feb 2016 00:19:00 +0100
+
 obconf-qt (0.9.0+20151227-1) unstable; urgency=medium
 
   * Cherry-picked upstream version 0.9.0+20151227.
diff -Nru obconf-qt-0.9.0+20151227/debian/patches/series 
obconf-qt-0.9.0+20151227/debian/patches/series
--- obconf-qt-0.9.0+20151227/debian/patches/series  1970-01-01 
01:00:00.0 +0100
+++ obconf-qt-0.9.0+20151227/debian/patches/series  2016-02-25 
00:19:24.0 +0100
@@ -0,0 +1 @@
+unicode-grep.patch
diff -Nru obconf-qt-0.9.0+20151227/debian/patches/unicode-grep.patch 
obconf-qt-0.9.0+20151227/debian/patches/unicode-grep.patch
--- obconf-qt-0.9.0+20151227/debian/patches/unicode-grep.patch  1970-01-01 
01:00:00.0 +0100
+++ obconf-qt-0.9.0+20151227/debian/patches/unicode-grep.patch  2016-02-25 
00:19:34.0 +0100
@@ -0,0 +1,22 @@
+Author: Eduard Sanou 
+Description: Fix misdetection as binary input when LC_ALL=C
+
+--- obconf-qt-0.9.0+20151227.orig/cmake/LXQtTranslateDesktop.cmake
 obconf-qt-0.9.0+20151227/cmake/LXQtTranslateDesktop.cmake
+@@ -71,13 +71,13 @@ function(lxqt_translate_desktop _RESULT)
+ set(_pattern "'\\[.*]\\s*='")
+ if (_translations)
+ add_custom_command(OUTPUT ${_outFile}
+-COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
+-COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile}
++COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
++COMMAND grep -a -h ${_pattern} ${_translations} >> ${_outFile}
+ COMMENT "Generating ${_fileName}${_fileExt}"
+ )
+ else()
+ add_custom_command(OUTPUT ${_outFile}
+-COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
++COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > 
${_outFile}
+ COMMENT "Generating ${_fileName}${_fileExt}"
+ )
+ endif()


signature.asc
Description: PGP signature
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

[Reproducible-builds] openSUSE Conference

2016-02-25 Thread Christian Boltz
Hello,

(I'm not subscribed here - please CC me in your replies.)

Is someone interested to give a talk about Reproducible Builds at the 
openSUSE Conference (June 22-26 in Nürnberg, Germany)?

We had some interest in this topic on the opensuse-packaging mailinglist 
recently [1], so having a talk about Reproducible Builds would hopefully 
help to get openSUSE towards being reproducible.

If you want to give this (or another) talk or workshop at the openSUSE 
conference, please submit it at https://events.opensuse.org/

Also feel free to come as visitor - maybe the hallway track can be 
used for cross-distro collaboration ;-)

I can also tell you that "Have a lot of fun..." is not only in our  
/etc/motd, but also what we do every day and especially at the 
conference ;-)


BTW: If you submit your talk until Leap Day (Feb 29), you'll get a free 
"Leap 42" T-Shirt ;-)
https://news.opensuse.org/2016/02/24/opensuse-t-shirts-for-leap-day/
(our marketing team is celebrating Leap Day after we named our latest 
release "openSUSE Leap 42.1" ;-)

The CfP is open until April 15 - but the T-Shirt offer ends on Feb 29.


BTW: are there any news about the interesting[tm] texlive issue we 
debugged at DebConf where the generated PDF differed when using the 
original ownCload PNGs, and was reproducible (well, except the random 
PDF ID) after running optipng on them?


Regards,

Christian Boltz

PS: If money is an issue for you, the openSUSE Travel Support program
is probably able to help. Feel free to ask me about details ;-)

[1] http://lists.opensuse.org/opensuse-packaging/2016-02/msg00092.html
-- 
> How deep can subprojects be nested?
I think we have no limit of deepness, at least no one reached it until
now ;)   [> Paul Elliott and Adrian Schröter in opensuse-buildservice]


___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds


[Reproducible-builds] Bug#815908: ruby-github-linguist: FTBFS: install: cannot stat '[..]/ruby-github-linguist-4.7.2/bin/linguist': No such file or directory

2016-02-25 Thread Chris Lamb
Source: ruby-github-linguist
Version: 4.7.2-1
Severity: serious
Justification: fails to build from source
User: reproducible-builds@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-builds@lists.alioth.debian.org

Dear Maintainer,

ruby-github-linguist fails to build from source in unstable/amd64:

  [..]


 dh_auto_install -O--buildsystem=ruby
dh_ruby --install 
/home/lamby/temp/cdt.20160225150719.LlpPnpiK8v/ruby-github-linguist-4.7.2/debian/ruby-github-linguist
 dh_ruby --install
  
  
┌──────────────────────────────────────────────────────────────────────────────â”
  │ Install files 
   │
  
└──────────────────────────────────────────────────────────────────────────────┘
  
  install -d 
/home/lamby/temp/cdt.20160225150719.LlpPnpiK8v/ruby-github-linguist-4.7.2/debian/ruby-github-linguist/usr/bin
  install -D -m755 
/home/lamby/temp/cdt.20160225150719.LlpPnpiK8v/ruby-github-linguist-4.7.2/bin/linguist
 
/home/lamby/temp/cdt.20160225150719.LlpPnpiK8v/ruby-github-linguist-4.7.2/debian/ruby-github-linguist/usr/bin/linguist
  install: cannot stat 
'/home/lamby/temp/cdt.20160225150719.LlpPnpiK8v/ruby-github-linguist-4.7.2/bin/linguist':
 No such file or directory
  /usr/lib/ruby/vendor_ruby/gem2deb.rb:56:in `run': install -D -m755 
/home/lamby/temp/cdt.20160225150719.LlpPnpiK8v/ruby-github-linguist-4.7.2/bin/linguist
 
/home/lamby/temp/cdt.20160225150719.LlpPnpiK8v/ruby-github-linguist-4.7.2/debian/ruby-github-linguist/usr/bin/linguist
 (Gem2Deb::CommandFailed)
from /usr/lib/ruby/vendor_ruby/gem2deb/installer.rb:172:in `block in 
install_files'
from /usr/lib/ruby/vendor_ruby/gem2deb/installer.rb:169:in `each'
from /usr/lib/ruby/vendor_ruby/gem2deb/installer.rb:169:in 
`install_files'
from /usr/lib/ruby/vendor_ruby/gem2deb/installer.rb:30:in 
`install_files_and_build_extensions'
from /usr/lib/ruby/vendor_ruby/gem2deb/dh_ruby.rb:84:in `block in 
install'
from /usr/lib/ruby/vendor_ruby/gem2deb/dh_ruby.rb:82:in `each'
from /usr/lib/ruby/vendor_ruby/gem2deb/dh_ruby.rb:82:in `install'
from /usr/bin/dh_ruby:94:in `'
  dh_auto_install: dh_ruby --install 
/home/lamby/temp/cdt.20160225150719.LlpPnpiK8v/ruby-github-linguist-4.7.2/debian/ruby-github-linguist
 returned exit code 1
  debian/rules:16: 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-github-linguist.4.7.2-1.unstable.amd64.log.txt.gz
Description: Binary data
___
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds