Your message dated Sat, 06 Aug 2005 11:32:10 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#320905: fixed in ion2 20040729-2
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; 2 Aug 2005 03:13:13 +0000
>From [EMAIL PROTECTED] Mon Aug 01 20:13:13 2005
Return-path: <[EMAIL PROTECTED]>
Received: from zoot.lafn.org [206.117.18.6] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1DznDN-00010e-00; Mon, 01 Aug 2005 20:13:13 -0700
Received: from localhost.localdomain 
(pool-71-104-165-253.lsanca.dsl-w.verizon.net [71.104.165.253])
        (authenticated bits=0)
        by zoot.lafn.org (8.13.1/8.13.1) with ESMTP id j723DBlY095020
        (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO)
        for <[EMAIL PROTECTED]>; Mon, 1 Aug 2005 20:13:12 -0700 (PDT)
        (envelope-from [EMAIL PROTECTED])
Received: from kraai by localhost.localdomain with local (Exim 4.52)
        id 1DzhsZ-0001Cj-GD
        for [EMAIL PROTECTED]; Mon, 01 Aug 2005 14:31:23 -0700
Date: Mon, 1 Aug 2005 14:31:23 -0700
From: Matt Kraai <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: FTBFS: Cannot include Xinerama.h
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
        protocol="application/pgp-signature"; boundary="3uo+9/B/ebqu+fSQ"
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: ClamAV 0.86.2/1000/Sun Jul 31 12:28:06 2005 on zoot.lafn.org
X-Virus-Status: Clean
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=-2.6 required=4.0 tests=BAYES_00,DATE_IN_PAST_03_06 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02


--3uo+9/B/ebqu+fSQ
Content-Type: multipart/mixed; boundary="BOKacYhQ+x31HxR3"
Content-Disposition: inline


--BOKacYhQ+x31HxR3
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: ion2
Version: 20040729-1
Severity: serious
Tags: patch

ion2 fails to build because it cannot find Xinerama.h:

> gcc -g -Os -W -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wf=
ormat -Wchar-subscripts -Wparentheses -pedantic -Wuninitialized -DCF_XFREE8=
6_TEXTPROP_BUG_WORKAROUND  -I/usr/X11R6/include  -I../libtu/include -I.. -D=
_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -std=3Dc99 -DCF_HAS_VA_COPY -c rootw=
in.c -o rootwin.o
> rootwin.c:25:37: error: X11/extensions/Xinerama.h: No such file or direct=
ory
> rootwin.c:322: error: syntax error before '*' token
> rootwin.c: In function 'xinerama_sanity_check':
> rootwin.c:326: error: 'nxi' undeclared (first use in this function)
> rootwin.c:326: error: (Each undeclared identifier is reported only once
> rootwin.c:326: error: for each function it appears in.)
> rootwin.c:329: error: 'xi' undeclared (first use in this function)
> rootwin.c: In function 'manage_rootwin':
> rootwin.c:347: error: 'XineramaScreenInfo' undeclared (first use in this =
function)
> rootwin.c:347: error: 'xi' undeclared (first use in this function)
> rootwin.c:352: warning: implicit declaration of function 'XineramaQueryEx=
tension'
> rootwin.c:353: warning: implicit declaration of function 'XineramaQuerySc=
reens'

Adding libxinerama-dev to the build-dependencies, as the attached
patch does, fixes this problem.

The second hunk of the patch makes it ignore make's exit status for
the realclean target, which allows "debian/rules clean" to succeed in
a clean source package.

--=20
Matt

--BOKacYhQ+x31HxR3
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=patch
Content-Transfer-Encoding: quoted-printable

diff -u ion2-20040729/debian/control ion2-20040729/debian/control
--- ion2-20040729/debian/control
+++ ion2-20040729/debian/control
@@ -4,7 +4,7 @@
 Maintainer: Per Olofsson <[EMAIL PROTECTED]>
 Uploaders: Norbert Tretkowski <[EMAIL PROTECTED]>
 Standards-Version: 3.6.1.0
-Build-Depends: debhelper (>> 4), libx11-dev, gcc (>> 3), liblua50-dev (>> =
5.0.2), liblualib50-dev (>> 5.0.2), lua50 (>> 5.0.2), libtool (>> 1.4.1), l=
ibltdl3-dev (>> 1.4.1), tetex-extra, hevea
+Build-Depends: debhelper (>> 4), libx11-dev, gcc (>> 3), liblua50-dev (>> =
5.0.2), liblualib50-dev (>> 5.0.2), lua50 (>> 5.0.2), libtool (>> 1.4.1), l=
ibltdl3-dev (>> 1.4.1), tetex-extra, hevea, libxinerama-dev
=20
 Package: ion2
 Section: x11
diff -u ion2-20040729/debian/rules ion2-20040729/debian/rules
--- ion2-20040729/debian/rules
+++ ion2-20040729/debian/rules
@@ -39,7 +39,7 @@
        dh_testroot
        rm -f build-indep-stamp build-arch-stamp
=20
-       $(MAKE) realclean
+       -$(MAKE) realclean
        cd ion-doc && $(MAKE) realclean
=20
        dh_clean

--BOKacYhQ+x31HxR3--

--3uo+9/B/ebqu+fSQ
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline

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

iD8DBQFC7pSqfNdgYxVXvBARAqGQAJ92KlrisazprTCLeabIuAD48Hqd0wCghNbK
DOp9hG6gT5/aD/XDkZH5//w=
=des0
-----END PGP SIGNATURE-----

--3uo+9/B/ebqu+fSQ--

---------------------------------------
Received: (at 320905-close) by bugs.debian.org; 6 Aug 2005 18:39:04 +0000
>From [EMAIL PROTECTED] Sat Aug 06 11:39:04 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1E1TSs-0002kx-00; Sat, 06 Aug 2005 11:32:10 -0700
From: Norbert Tretkowski <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#320905: fixed in ion2 20040729-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 06 Aug 2005 11:32:10 -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
X-CrossAssassin-Score: 2

Source: ion2
Source-Version: 20040729-2

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

ion2-dev_20040729-2_i386.deb
  to pool/main/i/ion2/ion2-dev_20040729-2_i386.deb
ion2-doc_20040729-2_all.deb
  to pool/main/i/ion2/ion2-doc_20040729-2_all.deb
ion2_20040729-2.diff.gz
  to pool/main/i/ion2/ion2_20040729-2.diff.gz
ion2_20040729-2.dsc
  to pool/main/i/ion2/ion2_20040729-2.dsc
ion2_20040729-2_i386.deb
  to pool/main/i/ion2/ion2_20040729-2_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.
Norbert Tretkowski <[EMAIL PROTECTED]> (supplier of updated ion2 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: Sat,  6 Aug 2005 19:41:25 +0200
Source: ion2
Binary: ion2 ion2-doc ion2-dev
Architecture: source all i386
Version: 20040729-2
Distribution: unstable
Urgency: low
Maintainer: Per Olofsson <[EMAIL PROTECTED]>
Changed-By: Norbert Tretkowski <[EMAIL PROTECTED]>
Description: 
 ion2       - Keyboard-friendly window manager with tiled windows (v2)
 ion2-dev   - Ion development files (v2)
 ion2-doc   - Ion configuration documentation (v2)
Closes: 310432 320905
Changes: 
 ion2 (20040729-2) unstable; urgency=low
 .
   * Used libxinerama-dev instead of libx11-dev in build-dependencies and
     ion2-dev dependencies. (closes: #320905)
   * Moved .desktop files to /usr/share/xsessions (closes: #310432).
   * Applied patch from Matt Kraai to ignore make's exit status for the
     realclean target.
   * Updated FAQ.
   * Updated Standards-Version to 3.6.2.
Files: 
 306f3cefce5a7c71a50ecf95ab78dc55 786 x11 optional ion2_20040729-2.dsc
 c43b38ec41d9089f2829cda6c468efb4 72825 x11 optional ion2_20040729-2.diff.gz
 5f5bcfb0b9279792a0c9e3cbdfc805b5 478402 doc optional 
ion2-doc_20040729-2_all.deb
 af2f2dbc2e296e38b70d976b86a6d0aa 320460 x11 optional ion2_20040729-2_i386.deb
 08b0defc33f6c4f1ecc890aa318b6ecd 36056 devel extra ion2-dev_20040729-2_i386.deb

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

iD8DBQFC9P3Kr/RnCw96jQERAilEAJ4zpOWsxLY7sLXPw+2fBAK7AMe20QCeJLUA
Cr8fYWEEolcwQYjmqm7Eo90=
=nTbC
-----END PGP SIGNATURE-----


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

Reply via email to