Your message dated Wed, 14 Sep 2005 02:47:08 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#325208: fixed in celestia 1.3.2-3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 5 Sep 2005 09:22:46 +0000
>From [EMAIL PROTECTED] Mon Sep 05 02:22:46 2005
Return-path: <[EMAIL PROTECTED]>
Received: from c203105.adsl.hansenet.de (localhost.localdomain) 
[213.39.203.105] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1ECDBe-00046w-00; Mon, 05 Sep 2005 02:22:46 -0700
Received: from aj by localhost.localdomain with local (Exim 4.52)
        id 1ECDBc-0007gW-Ni; Mon, 05 Sep 2005 11:22:44 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: celestia: FTBFS: Build-Depends cannot be satisfied because the package 
libgnomeuimm2.0-dev cannot be found
Message-Id: <[EMAIL PROTECTED]>
Date: Mon, 05 Sep 2005 11:22:44 +0200
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: celestia
Version: 1.3.2-2
Severity: serious
Tags: patch

When building 'celestia' in a clean 'unstable' chroot,
I get the following error:

Building celestia unstable main amd64...
Reading package lists...
Building dependency tree...
E: Build-Depends dependency for celestia cannot be satisfied because the 
package libgnomeuimm2.0-dev cannot be found

Please change the Build-Depends to 'libgnomeuimm-2.6-dev'
in debian/control.

Additionally, the attached patch fixes some pointer casting issues
for 64-bit builds.

Regards
Andreas Jochens

diff -urN ../tmp-orig/celestia-1.3.2/debian/control ./debian/control
--- ../tmp-orig/celestia-1.3.2/debian/control   2005-09-05 08:53:12.000000000 
+0000
+++ ./debian/control    2005-09-05 08:06:56.000000000 +0000
@@ -2,7 +2,7 @@
 Section: science
 Priority: optional
 Maintainer: Mathias Weyland <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 4.0.0), freeglut3-dev, gtkglarea5-dev, 
libgnome-dev, libqt3-mt-dev, kdelibs4-dev, liblua50-dev, liblualib50-dev, 
libgnomeuimm2.0-dev, libgtkglext1-dev
+Build-Depends: debhelper (>> 4.0.0), freeglut3-dev, gtkglarea5-dev, 
libgnome-dev, libqt3-mt-dev, kdelibs4-dev, liblua50-dev, liblualib50-dev, 
libgnomeuimm-2.6-dev, libgtkglext1-dev
 Standards-Version: 3.6.1
 
 Package: celestia-common
diff -urN ../tmp-orig/celestia-1.3.2/src/celestia/gtkmain.cpp 
./src/celestia/gtkmain.cpp
--- ../tmp-orig/celestia-1.3.2/src/celestia/gtkmain.cpp 2004-08-04 
07:10:11.000000000 +0000
+++ ./src/celestia/gtkmain.cpp  2005-09-05 08:36:32.000000000 +0000
@@ -324,14 +324,14 @@
 {
        bool state = getActiveState(w);
 
-    appRenderer->setRenderFlags((appRenderer->getRenderFlags() & ~(int)flag) |
-                             (state ? (int)flag : 0));
+    appRenderer->setRenderFlags((appRenderer->getRenderFlags() & ~(long)flag) |
+                             (state ? (long)flag : 0));
 
        prefs->renderFlags = appRenderer->getRenderFlags();
 
        #ifdef GNOME
        // Update GConf
-       switch ((int)flag) {
+       switch ((long)flag) {
                case Renderer::ShowStars: setFlag(0, "stars", state); break;
                case Renderer::ShowPlanets: setFlag(0, "planets", state); break;
                case Renderer::ShowGalaxies: setFlag(0, "galaxies", state); 
break;
@@ -361,12 +361,12 @@
 {
        bool state = getActiveState(w);
 
-    appRenderer->setLabelMode((appRenderer->getLabelMode() & ~(int)flag) |
-                           (state ? (int)flag : 0));
+    appRenderer->setLabelMode((appRenderer->getLabelMode() & ~(long)flag) |
+                           (state ? (long)flag : 0));
 
        #ifdef GNOME
        // Update GConf
-       switch ((int)flag) {
+       switch ((long)flag) {
                case Renderer::StarLabels: setFlag(2, "star", state); break;
                case Renderer::PlanetLabels: setFlag(2, "planet", state); break;
                case Renderer::MoonLabels: setFlag(2, "moon", state); break;
@@ -388,12 +388,12 @@
 {
        bool state = getActiveState(w);
 
-    appRenderer->setOrbitMask((appRenderer->getOrbitMask() & ~(int)flag) |
-                           (state ? (int)flag : 0));
+    appRenderer->setOrbitMask((appRenderer->getOrbitMask() & ~(long)flag) |
+                           (state ? (long)flag : 0));
 
        #ifdef GNOME
        // Update GConf
-       switch ((int)flag) {
+       switch ((long)flag) {
                case Body::Planet: setFlag(1, "planet", state); break;
                case Body::Moon: setFlag(1, "moon", state); break;
                case Body::Asteroid: setFlag(1, "asteroid", state); break;
@@ -409,7 +409,7 @@
 static gint menuStarStyle(GtkWidget*, gpointer flag)
 {
        // Set up the desired style
-       switch ((int)flag)
+       switch ((long)flag)
        {
                case Renderer::FuzzyPointStars:
                        prefs->starStyle = Renderer::FuzzyPointStars;
@@ -901,7 +901,7 @@
        appCore->getRenderer()->setDistanceLimit(limit);
 
        char labeltext[10] = "100000 ly";
-       sprintf(labeltext, "%d ly", (int)limit);
+       sprintf(labeltext, "%ld ly", (long)limit);
        gtk_label_set_text(GTK_LABEL(maglabel), labeltext);
 
        return TRUE;

---------------------------------------
Received: (at 325208-close) by bugs.debian.org; 14 Sep 2005 09:48:56 +0000
>From [EMAIL PROTECTED] Wed Sep 14 02:48:56 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EFTrA-0005Wt-00; Wed, 14 Sep 2005 02:47:08 -0700
From: Mathias Weyland <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#325208: fixed in celestia 1.3.2-3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Wed, 14 Sep 2005 02:47:08 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: celestia
Source-Version: 1.3.2-3

We believe that the bug you reported is fixed in the latest version of
celestia, which is due to be installed in the Debian FTP archive:

celestia-common_1.3.2-3_all.deb
  to pool/main/c/celestia/celestia-common_1.3.2-3_all.deb
celestia-glut_1.3.2-3_i386.deb
  to pool/main/c/celestia/celestia-glut_1.3.2-3_i386.deb
celestia-gnome_1.3.2-3_i386.deb
  to pool/main/c/celestia/celestia-gnome_1.3.2-3_i386.deb
celestia_1.3.2-3.diff.gz
  to pool/main/c/celestia/celestia_1.3.2-3.diff.gz
celestia_1.3.2-3.dsc
  to pool/main/c/celestia/celestia_1.3.2-3.dsc
celestia_1.3.2-3_i386.deb
  to pool/main/c/celestia/celestia_1.3.2-3_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mathias Weyland <[EMAIL PROTECTED]> (supplier of updated celestia package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Mon, 12 Sep 2005 12:56:16 +0200
Source: celestia
Binary: celestia-gnome celestia-common celestia celestia-glut
Architecture: source i386 all
Version: 1.3.2-3
Distribution: unstable
Urgency: low
Maintainer: Mathias Weyland <[EMAIL PROTECTED]>
Changed-By: Mathias Weyland <[EMAIL PROTECTED]>
Description: 
 celestia   - A real-time visual space simulation (KDE frontend)
 celestia-common - Datafiles for Celestia, a real-time visual space simulation
 celestia-glut - A real-time visual space simulation (GLUT frontend)
 celestia-gnome - A real-time visual space simulation (Gnome frontend)
Closes: 325208 326567 326716
Changes: 
 celestia (1.3.2-3) unstable; urgency=low
 .
   * New upload to fix libqt3-mt and kdelib4 deps (closes: #326567)
   * Dependency fix: libgnomeuimm2.0-dev -> libgnomeuimm2.6-dev
     (closes: #326716, #325208)
   * fixes some pointer casting issues for 64-bit builds
     (patch from BTS, see bug#326716)
Files: 
 6644ba1ee766b67dfee89201b38621b1 764 science optional celestia_1.3.2-3.dsc
 5947518e99bcfc194853a37b198662d0 11501 science optional 
celestia_1.3.2-3.diff.gz
 c1d12cf423b54fd56eb68e0b7e3662b1 1605576 kde optional celestia_1.3.2-3_i386.deb
 f6e5d08a1073c7f5d63815c9dfc1f041 764782 gnome optional 
celestia-gnome_1.3.2-3_i386.deb
 93de71f930cb6cbd5321a8839f373952 650268 science optional 
celestia-glut_1.3.2-3_i386.deb
 61baa002e826e6fd989160244d66cbb8 15781838 science optional 
celestia-common_1.3.2-3_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDJ+tagY5NIXPNpFURAsyoAJ943Cu8VDb07/C6/9PvvXj4oz1m2QCg1QaI
oA90WnNeH8YZanUuI0v/rBA=
=MPnw
-----END PGP SIGNATURE-----


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

Reply via email to