Bug#790062: FTBFS with OCaml 4.02.2

2015-07-02 Thread Thomas Moschny
Stéphane Glondu glo...@debian.org:

 The command line you quote looks suspicious. The cd glib; ... line
 should not be there. Are you using -j (parallel build)? 

Bingo. A serial build worked.
Thanks for the hint!

 Is the full build log available somewhere?

Copied here: http://ur1.ca/mzcvz

Regards,
Thomas


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#790062: FTBFS with OCaml 4.02.2

2015-06-27 Thread Thomas Moschny
Hi,

I tried to fix monotone-viz's FTBFS for Fedora Rawhide (where we also
have OCaml 4.02.2) with this patch, however compiling fails with this
error:

[...]
ocamlc.opt -I /usr/lib/ocaml/lablgtk2 -I glib app_types.mli
cd glib ; /usr/lib/ocaml/lablgtk2/varcc -static gspawn_tags.var
File app_types.mli, line 13, characters 23-33:
Error: Unbound module Monotone
Makefile:102: recipe for target 'app_types.cmi' failed
[...]

Any hint what goes on here?

Thanks,
Thomas


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#665448: [Monotone-debian] Bug#665448: monotone: FTBFS: testsuite failure

2012-03-25 Thread Thomas Moschny
Hi,

this is a mini-patch I recently added to the Fedora package, to build
against newer PCRE. It deletes '(?=\C)' from the list of regular
expressions in .mtn-ignore expected to throw an error.

The man page of PCRE states that \C is not allowed in lookbehind
assertions, iff in UTF8 mode. I did not yet verify whether we are
actually processing the ignore file patterns in UTF8 mode or not.
Anyway, removing that pattern fixed the build for now.

Regards,
Thomas
diff -up monotone-1.0/test/func/syntax_errors_in_.mtn-ignore/mtn-ignore.orig monotone-1.0/test/func/syntax_errors_in_.mtn-ignore/mtn-ignore
--- monotone-1.0/test/func/syntax_errors_in_.mtn-ignore/mtn-ignore.orig	2011-03-26 07:41:05.0 +0100
+++ monotone-1.0/test/func/syntax_errors_in_.mtn-ignore/mtn-ignore	2012-02-15 19:40:06.282866594 +0100
@@ -21,7 +21,6 @@ abc\3
 [[:fnord:]]
 \\x{123456}
 (?(0))
-(?=\C)
 \l
 (?C256)
 (?C1


Bug#659158: incorrect fsf address

2012-02-08 Thread Thomas Moschny
Package: ikiwiki
Version: 3.20120202

The address of the Free Software Foundation in
IkiWiki/Plugin/calendar.pm is outdated. Please use the new one:

Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
  MA 02110-1301, USA.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#659160: etckeeper init should really run git config --add receive.denyCurrentBranch ignore

2012-02-08 Thread Thomas Moschny
Package: etckeeper
Version: 0.61

Forwarding from https://bugzilla.redhat.com/show_bug.cgi?id=785614
(created by pwouters at redhat.com):

Description of problem:

you cannot git push a commit to a cloned etckeeper repository because git
refuses to push to a checked out branch per default. Obviously, the master tree
of /etc on the remote is checked out :)

This can be fixed by running:

 git config --add receive.denyCurrentBranch ignore 

in the etckeeper init command.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#565083: (no subject)

2010-04-13 Thread Thomas Moschny
Fixed in revision 743110f6dc3d8b3dd2b975eb4dec13f1e2e47c09, which came
after monotone 0.45, so the fix should be part of monotone 0.46 or
later.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#527731: monotone-viz: FTBFS: ocaml-giochannel.c:(.text+0x2f4): multiple definition of `ml_g_io_channel_read_chars'

2009-07-13 Thread Thomas Moschny

FYI: on Fedora we use the attached patch.
diff -up monotone-viz-1.0.1/glib/giochannel.mli.orig monotone-viz-1.0.1/glib/giochannel.mli
--- monotone-viz-1.0.1/glib/giochannel.mli.orig	2007-03-07 22:53:54.0 +0100
+++ monotone-viz-1.0.1/glib/giochannel.mli	2009-02-26 14:15:28.0 +0100
@@ -20,7 +20,7 @@ external new_file : string - string - 
 
 external read_chars : t - ?off:int - ?len:int - string - 
   [ `NORMAL of int | `AGAIN | `EOF]
-  = ml_g_io_channel_read_chars
+  = ml_mtnviz_g_io_channel_read_chars
 (** @raise Error .
 @raise Glib.Convert.Error .*)
 external write_chars : t - ?bytes_written:int ref - ?off:int - ?len:int - string - 
diff -up monotone-viz-1.0.1/glib/giochannel.ml.orig monotone-viz-1.0.1/glib/giochannel.ml
--- monotone-viz-1.0.1/glib/giochannel.ml.orig	2007-03-07 22:53:54.0 +0100
+++ monotone-viz-1.0.1/glib/giochannel.ml	2009-02-26 14:15:28.0 +0100
@@ -24,7 +24,7 @@ external new_file : string - string - 
 
 external read_chars : t - ?off:int - ?len:int - string - 
   [ `NORMAL of int | `AGAIN | `EOF]
-  = ml_g_io_channel_read_chars
+  = ml_mtnviz_g_io_channel_read_chars
 external write_chars : t - ?bytes_written:int ref - ?off:int - ?len:int - string - 
   [ `NORMAL of int | `AGAIN]
   = ml_g_io_channel_write_chars
diff -up monotone-viz-1.0.1/glib/ocaml-giochannel.c.orig monotone-viz-1.0.1/glib/ocaml-giochannel.c
--- monotone-viz-1.0.1/glib/ocaml-giochannel.c.orig	2007-03-07 22:53:54.0 +0100
+++ monotone-viz-1.0.1/glib/ocaml-giochannel.c	2009-02-26 14:15:28.0 +0100
@@ -134,7 +134,7 @@ check_substring (value s, gsize off, gsi
 #endif
 
 CAMLprim value
-ml_g_io_channel_read_chars (value c, value o_off, value o_len, value s)
+ml_mtnviz_g_io_channel_read_chars (value c, value o_off, value o_len, value s)
 {
   CAMLparam1(s);
   GError *err = NULL;


Bug#451173: nginx: New upstream version available (0.5.33)

2007-11-13 Thread Thomas Moschny
Package: nginx
Version: 0.5.30-1
Severity: wishlist

Please consider packaging the latest stable upstream version (0.5.33).

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.9-023stab043.1-enterprise (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages nginx depends on:
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libpcre36.7+7.4-2+lenny1 Perl 5 Compatible Regular Expressi
ii  libssl0.9.8 0.9.8g-1 SSL shared libraries
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

nginx recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#430468: nginx: Please provide virtual package 'httpd'.

2007-06-25 Thread Thomas Moschny
Package: nginx
Version: 0.5.18-1
Severity: wishlist

Please consider making this package provide 'httpd', so it can be used as a 
valid
dependency for other packages requiring a webserver.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.9-023stab043.1-enterprise
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages nginx depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libpcre36.7-1Perl 5 Compatible Regular Expressi
ii  libssl0.9.8 0.9.8c-4 SSL shared libraries
ii  zlib1g  1:1.2.3-13   compression library - runtime

nginx recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#384565: [Monotone-devel] Re: Bug#384565: monotone - FTBFS: Build killed with signal 15

2006-09-26 Thread Thomas Moschny
On Tuesday 26 September 2006 20:10, Shaun Jackman wrote:
 Both commands exist in fact. get_revision is used to generate
 package_full_revision.txt, and get_base_revision_id is used to
 generate package_revision.txt. Both of these commands require a
 monotone workspace though, and the tarball does not ship with one.
 monotone should give an error:

But the tarfile comes with package_full_revision_dist.txt and 
package_revision.txt, and the build proces overwrites them only after  
successfully running the two commands mentioned above. Otherwise, it simply 
uses them as they are.

- Thomas

-- 
Thomas Moschny  [EMAIL PROTECTED]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]