Your message dated Fri, 19 Aug 2005 14:32:10 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#320898: fixed in lasso 0.6.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; 2 Aug 2005 03:12:19 +0000 >From [EMAIL PROTECTED] Mon Aug 01 20:12:18 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 1DznCU-0000qx-00; Mon, 01 Aug 2005 20:12:18 -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 j723CH8X094977 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for <[EMAIL PROTECTED]>; Mon, 1 Aug 2005 20:12:18 -0700 (PDT) (envelope-from [EMAIL PROTECTED]) Received: from kraai by localhost.localdomain with local (Exim 4.52) id 1Dzjl9-0001I1-1x for [EMAIL PROTECTED]; Mon, 01 Aug 2005 16:31:51 -0700 Date: Mon, 1 Aug 2005 16:31:51 -0700 From: Matt Kraai <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: FTBFS: getCPtr members inaccessible due to their protection level Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="V0207lvV8h4k8FAm" 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 --V0207lvV8h4k8FAm Content-Type: multipart/mixed; boundary="fUYQa+Pmc3FrFX/N" Content-Disposition: inline --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Package: lasso Version: 0.6.2-2 Severity: serious lasso fails to build because the getCPtr members of various classes are inaccessible due to their protection level: > mcs -out:lasso.dll -target:library ./*.cs =2E.. > ./Defederation.cs(84) error CS0122: 'lasso.SamlNameIdentifier.getCPtr' is= inaccessible due to its protection level > ./SamlNameIdentifier.cs(19): 'lasso.SamlNameIdentifier.getCPtr(lasso.Saml= NameIdentifier)' (name of symbol related to previous error > ./Defederation.cs(84) error CS0122: 'lasso.Node.getCPtr' is inaccessible = due to its protection level > ./Node.cs(19): 'lasso.Node.getCPtr(lasso.Node)' (name of symbol related t= o previous error > ./Defederation.cs(84) error CS0122: 'lasso.DowncastableNode.getCPtr' is i= naccessible due to its protection level > ./DowncastableNode.cs(22): 'lasso.DowncastableNode.getCPtr(lasso.Downcast= ableNode)' (name of symbol related to previous error > ./Defederation.cs(103) error CS0122: 'lasso.SamlpRequestAbstract.getCPtr'= is inaccessible due to its protection level > ./SamlpRequestAbstract.cs(19): 'lasso.SamlpRequestAbstract.getCPtr(lasso.= SamlpRequestAbstract)' (name of symbol related to previous error > ./Defederation.cs(103) error CS0122: 'lasso.Node.getCPtr' is inaccessible= due to its protection level > ./Node.cs(19): 'lasso.Node.getCPtr(lasso.Node)' (name of symbol related t= o previous error > ./Defederation.cs(103) error CS0122: 'lasso.DowncastableNode.getCPtr' is = inaccessible due to its protection level > ./DowncastableNode.cs(22): 'lasso.DowncastableNode.getCPtr(lasso.Downcast= ableNode)' (name of symbol related to previous error > ./Defederation.cs(113) error CS0122: 'lasso.SamlpResponseAbstract.getCPtr= ' is inaccessible due to its protection level > ./SamlpResponseAbstract.cs(19): 'lasso.SamlpResponseAbstract.getCPtr(lass= o.SamlpResponseAbstract)' (name of symbol related to previous error > ./Defederation.cs(113) error CS0122: 'lasso.Node.getCPtr' is inaccessible= due to its protection level > ./Node.cs(19): 'lasso.Node.getCPtr(lasso.Node)' (name of symbol related t= o previous error > ./Defederation.cs(113) error CS0122: 'lasso.DowncastableNode.getCPtr' is = inaccessible due to its protection level > ./DowncastableNode.cs(22): 'lasso.DowncastableNode.getCPtr(lasso.Downcast= ableNode)' (name of symbol related to previous error > Compilation failed: 9 error(s), 151 warnings The attached patch changes the protection level for these symbols from protected to public, but I'm not sure that this is the correct solution. --=20 Matt --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch Content-Transfer-Encoding: quoted-printable only in patch2: unchanged: --- lasso-0.6.2.orig/csharp/DowncastableNode.cs +++ lasso-0.6.2/csharp/DowncastableNode.cs @@ -19,7 +19,7 @@ swigCPtr =3D cPtr; } =20 - protected static IntPtr getCPtr(DowncastableNode obj) { + public static IntPtr getCPtr(DowncastableNode obj) { return (obj =3D=3D null) ? IntPtr.Zero : obj.swigCPtr; } =20 only in patch2: unchanged: --- lasso-0.6.2.orig/csharp/Node.cs +++ lasso-0.6.2/csharp/Node.cs @@ -16,7 +16,7 @@ swigCPtr =3D cPtr; } =20 - protected static IntPtr getCPtr(Node obj) { + public static IntPtr getCPtr(Node obj) { return (obj =3D=3D null) ? IntPtr.Zero : obj.swigCPtr; } =20 only in patch2: unchanged: --- lasso-0.6.2.orig/csharp/SamlNameIdentifier.cs +++ lasso-0.6.2/csharp/SamlNameIdentifier.cs @@ -16,7 +16,7 @@ swigCPtr =3D cPtr; } =20 - protected static IntPtr getCPtr(SamlNameIdentifier obj) { + public static IntPtr getCPtr(SamlNameIdentifier obj) { return (obj =3D=3D null) ? IntPtr.Zero : obj.swigCPtr; } =20 only in patch2: unchanged: --- lasso-0.6.2.orig/csharp/SamlpRequestAbstract.cs +++ lasso-0.6.2/csharp/SamlpRequestAbstract.cs @@ -16,7 +16,7 @@ swigCPtr =3D cPtr; } =20 - protected static IntPtr getCPtr(SamlpRequestAbstract obj) { + public static IntPtr getCPtr(SamlpRequestAbstract obj) { return (obj =3D=3D null) ? IntPtr.Zero : obj.swigCPtr; } =20 only in patch2: unchanged: --- lasso-0.6.2.orig/csharp/SamlpResponseAbstract.cs +++ lasso-0.6.2/csharp/SamlpResponseAbstract.cs @@ -16,7 +16,7 @@ swigCPtr =3D cPtr; } =20 - protected static IntPtr getCPtr(SamlpResponseAbstract obj) { + public static IntPtr getCPtr(SamlpResponseAbstract obj) { return (obj =3D=3D null) ? IntPtr.Zero : obj.swigCPtr; } =20 --fUYQa+Pmc3FrFX/N-- --V0207lvV8h4k8FAm 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) iD8DBQFC7rDmfNdgYxVXvBARAhXHAKCSAuhcsJYWFsp5JL27fTch3vc/CgCffaJk liw7t/DWi+eoEv5YSDUmvhk= =lXpT -----END PGP SIGNATURE----- --V0207lvV8h4k8FAm-- --------------------------------------- Received: (at 320898-close) by bugs.debian.org; 19 Aug 2005 21:40:25 +0000 >From [EMAIL PROTECTED] Fri Aug 19 14:40:25 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1E6ETC-00086b-00; Fri, 19 Aug 2005 14:32:10 -0700 From: Frederic Peters <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#320898: fixed in lasso 0.6.2-3 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Fri, 19 Aug 2005 14: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 Source: lasso Source-Version: 0.6.2-3 We believe that the bug you reported is fixed in the latest version of lasso, which is due to be installed in the Debian FTP archive: lasso_0.6.2-3.diff.gz to pool/main/l/lasso/lasso_0.6.2-3.diff.gz lasso_0.6.2-3.dsc to pool/main/l/lasso/lasso_0.6.2-3.dsc liblasso3-dev_0.6.2-3_i386.deb to pool/main/l/lasso/liblasso3-dev_0.6.2-3_i386.deb liblasso3_0.6.2-3_i386.deb to pool/main/l/lasso/liblasso3_0.6.2-3_i386.deb php4-lasso_0.6.2-3_i386.deb to pool/main/l/lasso/php4-lasso_0.6.2-3_i386.deb python2.3-lasso_0.6.2-3_i386.deb to pool/main/l/lasso/python2.3-lasso_0.6.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. Frederic Peters <[EMAIL PROTECTED]> (supplier of updated lasso 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: Fri, 19 Aug 2005 23:08:43 +0200 Source: lasso Binary: liblasso3 python2.3-lasso php4-lasso liblasso3-dev Architecture: source i386 Version: 0.6.2-3 Distribution: unstable Urgency: low Maintainer: Frederic Peters <[EMAIL PROTECTED]> Changed-By: Frederic Peters <[EMAIL PROTECTED]> Description: liblasso3 - Liberty ID-FF library - runtime library liblasso3-dev - Liberty ID-FF library - development kit php4-lasso - Liberty ID-FF library - PHP 4 bindings python2.3-lasso - Liberty ID-FF library - Python 2.3 bindings Closes: 320898 Changes: lasso (0.6.2-3) unstable; urgency=low . * debian/control: removed liblasso-cil package since the .net assembly doesn't work (and don't even compile anymore) (closes: #320898) Files: e570bff749f0b05bc6575bf47f5075c5 833 libs optional lasso_0.6.2-3.dsc 54578b8a5ecaa5886e500004e2c7e828 14941 libs optional lasso_0.6.2-3.diff.gz c5d6d0161176ba47af178b36c278a35d 110360 libdevel optional liblasso3-dev_0.6.2-3_i386.deb 43624f552d9975ef0bd29688cdcb1d27 62090 libs optional liblasso3_0.6.2-3_i386.deb 118e83bf44b31428bd15e9e319dfef4f 86758 python optional python2.3-lasso_0.6.2-3_i386.deb 5bd964407c8b969bc70e911af1faf553 110212 web optional php4-lasso_0.6.2-3_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFDBkw8oR3LsWeD7V4RAg4CAJ9+e/z5TRaoQCnO9HWV9tqtMvoDxgCgmBIN n+8JgqGZYFR/FY1BxupdXH4= =f7l+ -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]