Re: E16 maintainer

2011-07-13 Thread Alexander Reichle-Schmehl
Hi Will,

Am 12.07.2011 22:49, schrieb Will Hill:
> I'm a user of e16 on debian and would like to get in touch with the 
> maintainer.  

I'm sorry to inform you, that there currently is no active maintainer of
the e16 package (see http://packages.qa.debian.org/e/e16.html).  The
package version in the current stable Debian release is maintained on a
low level by Debian's QA team.

In the testing and unstable repositories it has been removed, due to the
lack of a maintainer (in Debian as well upstream wise) and as e17 is
considered to be the replacement for it.


Best regards,
  Alexander


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4e1d48eb.2040...@debian.org



[ Twitter Just got Stupid ] frm Mia

2011-07-13 Thread Mia Collins


If you wish to cancel your subscription, simply click once on the link below.
http://www.nocompetitionmarketing.net/ea/un.php?c=77487585&p=3225&v=714&w=832



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/lo9yyp.3v84qf@localhost



Bug#633818: libvigraimpex: FTBFS:sh4: Failure in ClassifierTest::RF_NanCheck()

2011-07-13 Thread Nobuhiro Iwamatsu
Source: libvigraimpex
Version: 1.7.1+dfsg1-1
Severity: wishlist
Tags: patch
User: debian-...@superh.org
Usertags: sh4
X-Debbugs-CC: debian-sup...@lists.debian.org

Hi,

I am now trying to run Debian on Renesas SH(sh4) CPU.
  http://buildd.debian-ports.org/status/architecture.php?suite=unstable&a=sh4

libvigraimpex FTBFS on sh4.
  
http://buildd.debian-ports.org/status/fetch.php?pkg=libvigraimpex&arch=sh4&ver=1.7.1%2Bdfsg1-1&stamp=1310539375

-
Entering test suite ClassifierTestSuite

Failure in ClassifierTest::RF_NanCheck()
Assertion failed: detail::contains_nan(dfeatures) == true [0 != 1]
(/build/buildd-libvigraimpex_1.7.1+dfsg1-1-sh4-eDvddH/libvigraimpex-1.7.1+dfsg1/test/classifier/test.cxx:284)

1 of 13 tests failed in test suite ClassifierTestSuite
Leaving test suite ClassifierTestSuite

make[5]: *** [test/classifier/test_classifier] Error 1
-
Because ftbfs by NaN check, -mieee option of gcc is necessary to build
libvigraimpex om sh4

I created a patch which revised this problem.
Could you apply this patch?

Note:  libvigraimpex is FTBFS by other problems even if you apply this patch.
Make which, and this patch is necessary.

Best regards,
 Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6
diff -ruN a/debian/rules b/debian/rules
--- a/debian/rules	2011-07-10 02:02:18.0 +0900
+++ b/debian/rules	2011-07-14 10:31:13.0 +0900
@@ -10,6 +10,12 @@
 unexport CXXFLAGS
 unexport LDFLAGS
 
+# sh4 needs -mieee option of gcc and g++
+ifeq ($(DEB_HOST_ARCH),sh4)
+CFLAGS += -mieee
+CXXFLAGS += -mieee
+endif
+
 space = $() $()
 here = $(dir $(firstword $(MAKEFILE_LIST)))/..
 current_version = $(shell cd $(here) && dpkg-parsechangelog | sed -n -r -e "/Version: (.*)/ { s//\1/p; q; }")