Bug#671973: cvc3: FTBFS: dpkg-buildpackage: error: dpkg-source -b cvc3-2.4.1 gave error exit status 2

2012-05-08 Thread Christopher L Conway
Lucas, A new version of this package has been languishing unsponsored on mentors for two months: http://mentors.debian.net/package/cvc3. Can you check that the problem persists in that version? -Chris On Tue, May 8, 2012 at 8:11 AM, Lucas Nussbaum wrote: > Source: cvc3 > Version: 2.4.1-2 > Seve

Bug#662200: libcvc3-5-jni and libcvc3-2-jni: error when trying to install together

2012-03-05 Thread Christopher L Conway
I've uploaded a new package to mentors that addresses this and #662198. I decided to add a Replaces/Breaks on libcvc3-2-jni, since the file /usr/lib/jni/libcvc3jni.so appears to be necessary for the binary package to function. -Chris On Mon, Mar 5, 2012 at 11:08 AM, Christopher L C

Bug#662200: libcvc3-5-jni and libcvc3-2-jni: error when trying to install together

2012-03-05 Thread Christopher L Conway
On Mon, Mar 5, 2012 at 3:08 AM, Ralf Treinen wrote: > Hello, > > On Sun, Mar 04, 2012 at 01:22:19PM -0500, Christopher L Conway wrote: > >Not sure how to handle this. On the C++ side, the policy dictates a > >libcvc3-X package with libcvc3.so.X and a libcv

Bug#662200: libcvc3-5-jni and libcvc3-2-jni: error when trying to install together

2012-03-04 Thread Christopher L Conway
Not sure how to handle this. On the C++ side, the policy dictates a libcvc3-X package with libcvc3.so.X and a libcvc3-X-dev package with libcvc3.so -> libfoo.so.X. On the Java side, we don't have any headers to install, so a libcvc3-X-jni-dev package seems like overkill just for a libcvc3jni.so sym

Bug#662198: libcvc3-5-dev and libcvc3-2-dev: error when trying to install together

2012-03-04 Thread Christopher L Conway
I'm preparing a new version of the source package, changing the dev package to libcvc3-dev with Conflicts/Replaces for libcvc3-5-dev and libcvc3-2-dev. I suppose we should also delete libcvc3-5-dev from the repository. (In that case should I remove the Conflicts/Replaces for that package?) -Chris

Bug#575002:

2010-04-07 Thread Christopher L Conway
This appears to be caused by the following assignment in src/sat/minisat_solver.cpp, line 1582: d_assigns[var] = toInt(lbool(p.sign())); d_assigns has type vector. On the affected architectures, char is unsigned. When p.sign() is -1, the result is that d_assigns[var] is assigned 255, an unsig

Bug#576334:

2010-04-03 Thread Christopher L Conway
Michael Tautschnig reports: The problem, at least for most of the build failures, is a very simple one: An endianness issue, which actually lies in the original MiniSat code. The declaration of d_assigns in line 251 of src/sat/minisat_solver.h declares the assignments as a vector of chars; assign

Bug#575002: cvc3: FTBFS on various archs/in various ways

2010-04-03 Thread Christopher L Conway
I've requested removal of the failing binaries here: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576333 The regression failures appear to fall into two classes. I've cloned a bug for the std::bad_alloc error here: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576334 The JVM crash

Bug#576334: Cloning for std::bad_alloc on armel powerpc s390

2010-04-03 Thread Christopher L Conway
This version of the bug is for tracking the failures on armel, powerpc, and s390. (armel doesn't print the std::bad_alloc message, but it fails in the same place. Let's assume this is the same bug for now.) -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "u

Bug#576335: Cloning for JVM core dumps on kfreebsd-amd64

2010-04-03 Thread Christopher L Conway
This version of the bug is for the JVM core dump on kfreebsd-amd64. -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#575002: cvc3: FTBFS on various archs/in various ways

2010-03-22 Thread Christopher L Conway
Kibi, Thanks for reporting this. I've already file a bug upstream for these errors. As the problem architectures are not directly supported by upstream and I don't have access to testing machines for these architectures, I'm not sure what the correct resolution is. Should I remove these architectu

Bug#477010:

2008-05-07 Thread Christopher L Conway
Disregard the previous patch in preference to the attached. diff -ruN -x cvs -x CVS -x '*~' -x config.log /home/chris/downloads/pycaml/Makefile.in pycaml/Makefile.in --- /home/chris/downloads/pycaml/Makefile.in 2003-09-17 01:30:14.0 -0400 +++ pycaml/Makefile.in 2008-05-06 21:49:38.0

Bug#477010: taking the address of a macro

2008-05-07 Thread Christopher L Conway
The attached patch against the original source tree should solve the problem. Regards, Chris On Tue, May 6, 2008 at 10:43 PM, Christopher L Conway <[EMAIL PROTECTED]> wrote: > The problem is that the relevant lines are trying to create function > pointers, but the identifiers name

Bug#477010: taking the address of a macro

2008-05-06 Thread Christopher L Conway
The problem is that the relevant lines are trying to create function pointers, but the identifiers named are really macros. The following example gives a similar error: macroptr.c: int f(int x, int y, int z) { return 0; } #define FOO(x) f(x,0,0) int (*p)() = &f; int (*q)() = &FOO; $ gcc macropt