From bugzilla at redhat.com Fri Jul 3 10:37:05 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 06:37:05 -0400 Subject: [Bug 509531] New: CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) Alias: CVE-2009-2295 https://bugzilla.redhat.com/show_bug.cgi?id=509531 Summary: CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) Product: Security Response Version: unspecified Platform: All OS/Version: Linux Status: NEW Keywords: Security Severity: medium Priority: medium Component: vulnerability AssignedTo: security-response-team at redhat.com ReportedBy: thoger at redhat.com CC: rjones at redhat.com, fedora-ocaml-list at redhat.com Classification: Other Target Release: --- oCERT advisory oCERT-2009-009 was published describing a flaw in ocaml-camlimages: http://www.ocert.org/advisories/ocert-2009-009.html CamlImages, an open source image processing library, suffers from several integer overflows which may lead to a potentially exploitable heap overflow and result in arbitrary code execution. The vulnerability is triggered by PNG image parsing, the read_png_file and read_png_file_as_rgb24 functions do not properly validate the width and height of the image. Specific PNG images with large width and height can be crafted to trigger the vulnerability. Issue was reported to affect both 2.2 and 3.0.1, which no upstream patch available at the moment. References: http://thread.gmane.org/gmane.comp.security.oss.general/1882 http://bugs.gentoo.org/show_bug.cgi?id=276235 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 11:33:52 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 07:33:52 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031133.n63BXqhR032025@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 Richard W.M. Jones changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED AssignedTo|security-response-team at redh |rjones at redhat.com |at.com | --- Comment #2 from Richard W.M. Jones 2009-07-03 07:33:52 EDT --- I'll have a look at this one now. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 13:31:01 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 09:31:01 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031331.n63DV1e9024768@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 --- Comment #4 from Richard W.M. Jones 2009-07-03 09:31:00 EDT --- Created an attachment (id=350433) --> (https://bugzilla.redhat.com/attachment.cgi?id=350433) camlimages-oversized-png-check.patch This is a potential fix which checks whether the numbers we are about to multiply together could provoke an arithmetic overflow (or are negative, which would be equally bogus). It solves the test case that I was given privately. Note that in any case the bug only manifests on 32 bit architectures. On 64 bit, the multiply does not overflow, but unless you have loads of free memory you will shortly afterwards get a (safe) Out_of_memory exception. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 13:39:28 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 09:39:28 -0400 Subject: [Bug 508197] virt-top segfaults if run in Japanese In-Reply-To: References: Message-ID: <200907031339.n63DdS8A000850@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=508197 Mark McLoughlin changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|low |medium Status|NEW |ASSIGNED CC| |markmc at redhat.com Blocks| |480594(F11VirtTarget) Summary|segfaults if run in |virt-top segfaults if run |Japanese |in Japanese -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 13:59:50 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 09:59:50 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031359.n63DxojH031045@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 --- Comment #5 from Tomas Hoger 2009-07-03 09:59:49 EDT --- (In reply to comment #4) > Created an attachment (id=350433) --> (https://bugzilla.redhat.com/attachment.cgi?id=350433) [details] > camlimages-oversized-png-check.patch One note from a very quick look... in general, test like: (x) * (y) < (x) || (x) * (y) < (y) is not sufficient to catch all possible integer overflows in multiplication. Think of x == y == 0x10001, x * y == 0x100020001, which is 0x20001 in 32bit world. This can still result in small buffer that may be overflown later. The test is usually written as: y != 0 && x > (TYPE)_MAX / y (first part is needed if y can be 0, not needed in cases where y is sizeof(sometype)). -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 14:03:42 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 10:03:42 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031403.n63E3gna032022@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 --- Comment #6 from Fedora Update System 2009-07-03 10:03:41 EDT --- ocaml-camlimages-3.0.1-7.fc11.1 has been submitted as an update for Fedora 11. http://admin.fedoraproject.org/updates/ocaml-camlimages-3.0.1-7.fc11.1 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 14:07:42 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 10:07:42 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031407.n63E7gLu007121@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 --- Comment #7 from Fedora Update System 2009-07-03 10:07:41 EDT --- ocaml-camlimages-3.0.1-3.fc10.1 has been submitted as an update for Fedora 10. http://admin.fedoraproject.org/updates/ocaml-camlimages-3.0.1-3.fc10.1 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 14:08:42 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 10:08:42 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031408.n63E8g4j000989@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 --- Comment #8 from Richard W.M. Jones 2009-07-03 10:08:41 EDT --- (In reply to comment #5) > (In reply to comment #4) > > Created an attachment (id=350433) --> (https://bugzilla.redhat.com/attachment.cgi?id=350433) [details] [details] > > camlimages-oversized-png-check.patch > > One note from a very quick look... in general, test like: > > (x) * (y) < (x) || (x) * (y) < (y) > > is not sufficient to catch all possible integer overflows in multiplication. > Think of x == y == 0x10001, x * y == 0x100020001, which is 0x20001 in 32bit > world. This can still result in small buffer that may be overflown later. > > The test is usually written as: > > y != 0 && x > (TYPE)_MAX / y > > (first part is needed if y can be 0, not needed in cases where y is > sizeof(sometype)). Yup, someone just found a counterexample on #ocaml. I'll change the patch and rebuild in a moment. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 14:20:53 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 10:20:53 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031420.n63EKr15009729@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 Richard W.M. Jones changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #350433|0 |1 is obsolete| | --- Comment #9 from Richard W.M. Jones 2009-07-03 10:20:52 EDT --- Created an attachment (id=350440) --> (https://bugzilla.redhat.com/attachment.cgi?id=350440) camlimages-oversized-png-check-CVE-2009-2295.patch Fix overflow detection in the patch. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 14:37:52 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 10:37:52 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031437.n63Ebqpl007226@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 --- Comment #10 from Tomas Hoger 2009-07-03 10:37:51 EDT --- I also see two occurrences of this in pngread.c: row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); While sizeof(png_bytep) is fixed, height comes from the file and it seems possible for it to be 2^32/4 or larger. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 14:52:39 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 10:52:39 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031452.n63EqdqY010143@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 Richard W.M. Jones changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #350440|0 |1 is obsolete| | --- Comment #11 from Richard W.M. Jones 2009-07-03 10:52:38 EDT --- Created an attachment (id=350441) --> (https://bugzilla.redhat.com/attachment.cgi?id=350441) camlimages-oversized-png-check-CVE-2009-2295.patch Updated the patch with feedback from comment 10. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 14:55:23 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 10:55:23 -0400 Subject: [Bug 508197] virt-top segfaults if run in Japanese In-Reply-To: References: Message-ID: <200907031455.n63EtN9Y010927@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=508197 --- Comment #2 from Richard W.M. Jones 2009-07-03 10:55:22 EDT --- Apologies - I didn't get a chance to study this this week. I'll try again next week. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 18:38:19 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 14:38:19 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031838.n63IcJjP000566@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 Richard W.M. Jones changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |MODIFIED --- Comment #12 from Richard W.M. Jones 2009-07-03 14:38:18 EDT --- I've pushed new packages for Fedora 10, 11 and Rawhide with the patch in comment 11. Note that although we have CVS branches for EL-4 and EL-5, we don't currently distribute this package (missing build dep). However I've added the patch to those branches too, so that if in future we build for EL-4/5 we will have the patch. I've also discussed this issue and the patch with Debian and OpenBSD maintainers. Updates coming shortly. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 18:45:16 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 14:45:16 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031845.n63IjGc8024142@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 --- Comment #14 from Fedora Update System 2009-07-03 14:45:15 EDT --- ocaml-camlimages-3.0.1-7.fc11.2 has been submitted as an update for Fedora 11. http://admin.fedoraproject.org/updates/ocaml-camlimages-3.0.1-7.fc11.2 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 3 18:45:14 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 3 Jul 2009 14:45:14 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907031845.n63IjE9s006260@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 --- Comment #13 from Fedora Update System 2009-07-03 14:45:14 EDT --- ocaml-camlimages-3.0.1-3.fc10.2 has been submitted as an update for Fedora 10. http://admin.fedoraproject.org/updates/ocaml-camlimages-3.0.1-3.fc10.2 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Sun Jul 5 22:25:03 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Sun, 5 Jul 2009 18:25:03 -0400 Subject: [Bug 493797] [virt-df] Translations for Fedora 11! In-Reply-To: References: Message-ID: <200907052225.n65MP3Xx007809@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=493797 Piotr Dr?g changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |FutureFeature Version|11 |rawhide -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Sun Jul 5 22:23:40 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Sun, 5 Jul 2009 18:23:40 -0400 Subject: [Bug 493796] [virt-ctrl] Translations for Fedora 11! In-Reply-To: References: Message-ID: <200907052223.n65MNepO020349@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=493796 Piotr Dr?g changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |FutureFeature Version|11 |rawhide -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Sun Jul 5 22:25:13 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Sun, 5 Jul 2009 18:25:13 -0400 Subject: [Bug 493799] [virt-top] Translations for Fedora 11! In-Reply-To: References: Message-ID: <200907052225.n65MPDBl007997@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=493799 Piotr Dr?g changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |FutureFeature Version|11 |rawhide -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 15 03:32:22 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 14 Jul 2009 23:32:22 -0400 Subject: [Bug 511605] New: FTBFS ocaml-libvirt-0.6.1.0-3.fc12 Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: FTBFS ocaml-libvirt-0.6.1.0-3.fc12 https://bugzilla.redhat.com/show_bug.cgi?id=511605 Summary: FTBFS ocaml-libvirt-0.6.1.0-3.fc12 Product: Fedora Version: rawhide Platform: i386 URL: http://linux.dell.com/files/fedora/FixBuildRequires/mo ck-results/ OS/Version: Linux Status: NEW Severity: high Priority: high Component: ocaml-libvirt AssignedTo: rjones at redhat.com ReportedBy: ftbfs at fedoraproject.org QAContact: extras-qa at fedoraproject.org CC: rjones at redhat.com, fedora-virt-maint at redhat.com, fedora-ocaml-list at redhat.com Blocks: 511348 Classification: Fedora ocaml-libvirt-0.6.1.0-3.fc12.src.rpm Failed To Build From Source against the rawhide tree. See http://fedoraproject.org/wiki/FTBFS for more information. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 15 08:24:55 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 15 Jul 2009 04:24:55 -0400 Subject: [Bug 511605] FTBFS ocaml-libvirt-0.6.1.0-3.fc12 In-Reply-To: References: Message-ID: <200907150824.n6F8OtTj029604@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=511605 Richard W.M. Jones changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |CLOSED Resolution| |NOTABUG --- Comment #5 from Richard W.M. Jones 2009-07-15 04:24:54 EDT --- This package builds fine for me, both locally and in Koji: http://koji.fedoraproject.org/koji/taskinfo?taskID=1474938 I think you should try scratch-building packages in Koji before you file any bugs. There is some problem or difference with your build system and Koji. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From ifl2009 at shu.edu Thu Jul 16 14:23:09 2009 From: ifl2009 at shu.edu (IFL 2009) Date: Thu, 16 Jul 2009 10:23:09 -0400 Subject: IFL 2009: Third Call for Papers Message-ID: An HTML attachment was scrubbed... URL: From bugzilla at redhat.com Mon Jul 27 16:01:54 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 27 Jul 2009 12:01:54 -0400 Subject: [Bug 509531] CVE-2009-2295 ocaml-camlimages: PNG reader multiple integer overflows (oCERT-2009-009) In-Reply-To: References: Message-ID: <200907271601.n6RG1sc8002787@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=509531 Vincent Danen changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |vdanen at redhat.com --- Comment #15 from Vincent Danen 2009-07-27 12:01:52 EDT --- Robert @ Gentoo reported that upstream fixed similar integer overflows in gifread.c and jpegread.c for values that are used in memory allocations and memcpy(): A stripped down [by Alexis Ballier] version of the patch is in Gentoo's BZ: https://bugs.gentoo.org/show_bug.cgi?id=276235 https://bugs.gentoo.org/attachment.cgi?id=199108 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From rjones at redhat.com Mon Jul 27 16:09:50 2009 From: rjones at redhat.com (Richard W.M. Jones) Date: Mon, 27 Jul 2009 17:09:50 +0100 Subject: OCaml In-Reply-To: References: Message-ID: <20090727160916.GC3842@amd.home.annexia.org> On Mon, Jul 27, 2009 at 11:50:00AM -0400, Peter E. Koppstein wrote: > Your name and email address are given on the page > http://wiki.cocan.org/getting_started_with_ocaml_on_red_hat_and_fedora > so I hope you don't mind my asking a question about OCaml and RHEL5. > > > > I am upgrading some RHEL4 systems to RHEL5. According to the > above-mentioned page, installing ocaml should be as easy as "yum install > ocaml" but when I do that as root on one of our registered RHEL5 > systems, I get: You need to install EPEL: http://fedoraproject.org/wiki/EPEL/FAQ#howtouse Rich. -- Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones Read my programming blog: http://rwmj.wordpress.com Fedora now supports 75 OCaml packages (the OPEN alternative to F#) http://cocan.org/getting_started_with_ocaml_on_red_hat_and_fedora From bugzilla at redhat.com Tue Jul 28 12:31:47 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 28 Jul 2009 08:31:47 -0400 Subject: [Bug 493797] [virt-df] Translations for Fedora 11! In-Reply-To: References: Message-ID: <200907281231.n6SCVlGl014826@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=493797 Bug 493797 depends on bug 472746, which changed state. Bug 472746 Summary: German translation https://bugzilla.redhat.com/show_bug.cgi?id=472746 What |Old Value |New Value ---------------------------------------------------------------------------- Status|ASSIGNED |CLOSED Resolution| |WONTFIX -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 28 13:13:11 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 28 Jul 2009 09:13:11 -0400 Subject: [Bug 493797] [virt-df] Translations for Fedora 11! In-Reply-To: References: Message-ID: <200907281313.n6SDDB1J025618@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=493797 Piotr Dr?g changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |WONTFIX --- Comment #8 from Piotr Dr?g 2009-07-28 09:13:09 EDT --- The virt-df package got obsoleted by libguestfs. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 28 19:34:04 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 28 Jul 2009 15:34:04 -0400 Subject: [Bug 514309] New: virt-df2 blocks update of libguestfs Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: virt-df2 blocks update of libguestfs https://bugzilla.redhat.com/show_bug.cgi?id=514309 Summary: virt-df2 blocks update of libguestfs Product: Fedora Version: 11 Platform: All OS/Version: Linux Status: NEW Severity: medium Priority: low Component: virt-df AssignedTo: rjones at redhat.com ReportedBy: guthrie at counterexample.org QAContact: extras-qa at fedoraproject.org CC: rjones at redhat.com, fedora-virt-maint at redhat.com, fedora-ocaml-list at redhat.com Classification: Fedora Description of problem: The most recent update of libguestfs is not able to be installed if virt-df2 is installed. Version-Release number of selected component (if applicable): 1.0.58-2.fc11 How reproducible: Every time Steps to Reproduce: 1.Install libguestfs-1.0.58-2.fc11 and virt-df2-1.0.58-2.fc11 2.Run "yum update" 3. Actual results: I get the following output: # yum update Loaded plugins: aliases, changelog, downloadonly, fastestmirror, filter-data, : keys, list-data, presto, refresh-packagekit, rpm-warm-cache, : security Loading mirror speeds from cached hostfile * fedora: mirrors.med.harvard.edu * updates: mirror.steadfast.net Skipping filters plugin, no data Skipping security plugin, no data Setting up Update Process Resolving Dependencies Skipping filters plugin, no data Skipping security plugin, no data --> Running transaction check ---> Package guestfish.i586 1:1.0.64-2.fc11 set to be updated --> Processing Dependency: libguestfs = 1.0.58-2.fc11 for package: virt-df2-1.0.58-2.fc11.i586 ---> Package libguestfs.i586 1:1.0.64-2.fc11 set to be updated --> Processing Dependency: chntpw >= 0.99.6-8 for package: 1:libguestfs-1.0.64-2.fc11.i586 ---> Package perl-libguestfs.i586 1:1.0.64-2.fc11 set to be updated --> Processing Dependency: perl(Locale::TextDomain) for package: 1:perl-libguestfs-1.0.64-2.fc11.i586 ---> Package virt-inspector.i586 1:1.0.64-2.fc11 set to be updated --> Running transaction check ---> Package chntpw.i586 0:0.99.6-9.fc11 set to be updated --> Processing Dependency: libguestfs = 1.0.58-2.fc11 for package: virt-df2-1.0.58-2.fc11.i586 ---> Package perl-libintl.i586 0:1.16-9.fc11 set to be updated --> Finished Dependency Resolution virt-df2-1.0.58-2.fc11.i586 from installed has depsolving problems --> Missing Dependency: libguestfs = 1.0.58-2.fc11 is needed by package virt-df2-1.0.58-2.fc11.i586 (installed) Error: Missing Dependency: libguestfs = 1.0.58-2.fc11 is needed by package virt-df2-1.0.58-2.fc11.i586 (installed) You could try using --skip-broken to work around the problem You could try running: package-cleanup --problems package-cleanup --dupes rpm -Va --nofiles --nodigest Expected results: I would expect libguestfs and possibly virt-df2 as well to be updated. Additional info: -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 28 20:23:49 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 28 Jul 2009 16:23:49 -0400 Subject: [Bug 514309] virt-df2 blocks update of libguestfs In-Reply-To: References: Message-ID: <200907282023.n6SKNnba016692@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=514309 --- Comment #1 from Richard W.M. Jones 2009-07-28 16:23:47 EDT --- We can add an Obsoletes for this in the next release, but note that the earlier version shouldn't have ever left updates-testing. To work around this you just have to remove virt-df2 before trying to upgrade libguestfs. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 29 12:57:01 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 29 Jul 2009 08:57:01 -0400 Subject: [Bug 514309] virt-df2 blocks update of libguestfs In-Reply-To: References: Message-ID: <200907291257.n6TCv1Tq019300@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=514309 Richard W.M. Jones changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From rjones at redhat.com Wed Jul 29 15:48:08 2009 From: rjones at redhat.com (Richard W.M. Jones) Date: Wed, 29 Jul 2009 16:48:08 +0100 Subject: OCaml In-Reply-To: References: <20090727160916.GC3842@amd.home.annexia.org> Message-ID: <20090729154808.GL3842@amd.home.annexia.org> On Wed, Jul 29, 2009 at 10:26:24AM -0400, Peter E. Koppstein wrote: > Thanks very much for your rapid response. EHEL has some other packages > that we need and that aren't in RHEL5, so thanks for the inadvertent > help as well. > > Curiously, the EHEL release of ocaml is 3.09.3-1.el5 whereas the RHEL4 > is currently: > > ocaml 3.11.0 1.el4.rf > i386 > > Is there a anything of interest to be said about that? That you're looking at some other OCaml package. The one in EPEL-4 is 3.09.2-1, and OCaml is not in RHEL 4 at all. Rich. -- Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones virt-top is 'top' for virtual machines. Tiny program with many powerful monitoring features, net stats, disk stats, logging, etc. http://et.redhat.com/~rjones/virt-top From rjones at redhat.com Wed Jul 29 16:26:49 2009 From: rjones at redhat.com (Richard W.M. Jones) Date: Wed, 29 Jul 2009 17:26:49 +0100 Subject: OCaml In-Reply-To: References: <20090727160916.GC3842@amd.home.annexia.org> <20090729154808.GL3842@amd.home.annexia.org> Message-ID: <20090729162649.GN3842@amd.home.annexia.org> On Wed, Jul 29, 2009 at 12:20:39PM -0400, Peter E. Koppstein wrote: > You're right -- my RHEL4 repository list includes dag > (http://dag.wieers.com/rpm/packages.php), which I see is itself > out-of-date. > > Anyway I'm still wondering what to make of the fact, as I understand it, > that EHEL still has a version that's been out-of-date since May 2007. > E.g. is there a problem with recent releases of OCaml? By policy, we don't make incompatible updates to RHEL / EPEL branches. If you want the latest stuff, use Fedora, where we currently have 3.11.1. Rich. -- Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones New in Fedora 11: Fedora Windows cross-compiler. Compile Windows programs, test, and build Windows installers. Over 70 libraries supprt'd http://fedoraproject.org/wiki/MinGW http://www.annexia.org/fedora_mingw From bugzilla at redhat.com Wed Jul 29 17:00:45 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 29 Jul 2009 13:00:45 -0400 Subject: [Bug 514309] virt-df2 blocks update of libguestfs In-Reply-To: References: Message-ID: <200907291700.n6TH0j7c000738@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=514309 --- Comment #2 from Fedora Update System 2009-07-29 13:00:44 EDT --- libguestfs-1.0.65-2.el5 has been submitted as an update for Fedora EPEL 5. http://admin.fedoraproject.org/updates/libguestfs-1.0.65-2.el5 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From rjones at redhat.com Wed Jul 29 17:54:25 2009 From: rjones at redhat.com (Richard W.M. Jones) Date: Wed, 29 Jul 2009 18:54:25 +0100 Subject: OCaml In-Reply-To: References: <20090727160916.GC3842@amd.home.annexia.org> <20090729154808.GL3842@amd.home.annexia.org> <20090729162649.GN3842@amd.home.annexia.org> Message-ID: <20090729175425.GO3842@amd.home.annexia.org> On Wed, Jul 29, 2009 at 01:35:33PM -0400, Peter E. Koppstein wrote: > Are you implying that both Ocaml 3.10 and 3.11 are ACTUALLY incompatible > with RHEL5, or just that their compatibility hasn't been established? No - it's the policy in EPEL not to upgrade packages where that would lead to brokenness for existing users. Since existing users will be using 3.09-based programs and libraries, we don't upgrade them. Please direct future questions to the fedora-ocaml-list mailing list, and not to me personally. Rich. -- Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones Read my programming blog: http://rwmj.wordpress.com Fedora now supports 75 OCaml packages (the OPEN alternative to F#) http://cocan.org/getting_started_with_ocaml_on_red_hat_and_fedora From bugzilla at redhat.com Wed Jul 29 22:56:58 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 29 Jul 2009 18:56:58 -0400 Subject: [Bug 514309] virt-df2 blocks update of libguestfs In-Reply-To: References: Message-ID: <200907292256.n6TMuwK3020985@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=514309 Fedora Update System changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |ON_QA --- Comment #3 from Fedora Update System 2009-07-29 18:56:58 EDT --- libguestfs-1.0.65-2.el5 has been pushed to the Fedora EPEL 5 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update libguestfs'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/EL-5/FEDORA-EPEL-2009-0149 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 30 23:50:51 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 30 Jul 2009 19:50:51 -0400 Subject: [Bug 493799] [virt-top] Translations for Fedora 12 In-Reply-To: References: Message-ID: <200907302350.n6UNopHZ014743@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=493799 Piotr Dr?g changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[virt-top] Translations for |[virt-top] Translations for |Fedora 11! |Fedora 12 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 30 23:51:23 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 30 Jul 2009 19:51:23 -0400 Subject: [Bug 493796] [virt-ctrl] Translations for Fedora 12 In-Reply-To: References: Message-ID: <200907302351.n6UNpNVD008987@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=493796 Piotr Dr?g changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[virt-ctrl] Translations |[virt-ctrl] Translations |for Fedora 11! |for Fedora 12 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 31 13:29:46 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 31 Jul 2009 09:29:46 -0400 Subject: [Bug 493799] [virt-top] Translations for Fedora 12 In-Reply-To: References: Message-ID: <200907311329.n6VDTkQT013611@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=493799 Piotr Dr?g changed: What |Removed |Added ---------------------------------------------------------------------------- Component|virt-top |virt-top Version|rawhide |4.4 Product|Fedora |Virtualization Tools QAContact|extras-qa at fedoraproject.org | -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 31 14:27:43 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 31 Jul 2009 10:27:43 -0400 Subject: [Bug 483091] Updated Brazilian Portuguese translation of virt-ctrl In-Reply-To: References: Message-ID: <200907311427.n6VERhYk002451@bz-web1.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=483091 Piotr Dr?g changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |FutureFeature, Translation Version|11 |rawhide -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 31 14:28:39 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 31 Jul 2009 10:28:39 -0400 Subject: [Bug 493797] [virt-df] Translations for Fedora 11! In-Reply-To: References: Message-ID: <200907311428.n6VESd5e029570@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=493797 Bug 493797 depends on bug 483119, which changed state. Bug 483119 Summary: Updated Brazilian Portuguese translation of virt-df https://bugzilla.redhat.com/show_bug.cgi?id=483119 What |Old Value |New Value ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |WONTFIX -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 31 14:27:12 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 31 Jul 2009 10:27:12 -0400 Subject: [Bug 481522] Updated Brazilian Portuguese translation of virt-top In-Reply-To: References: Message-ID: <200907311427.n6VERCtN029154@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=481522 Piotr Dr?g changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |FutureFeature, Translation Component|virt-top |virt-top Version|11 |4.4 Product|Fedora |Virtualization Tools QAContact|extras-qa at fedoraproject.org | -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 31 14:28:36 2009 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 31 Jul 2009 10:28:36 -0400 Subject: [Bug 483119] Updated Brazilian Portuguese translation of virt-df In-Reply-To: References: Message-ID: <200907311428.n6VESanv029459@bz-web2.app.phx.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=483119 Piotr Dr?g changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Component|virt-df |virt-df Version|11 |4.4 Resolution| |WONTFIX Product|Fedora |Virtualization Tools QAContact|extras-qa at fedoraproject.org | -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From rjones at fedoraproject.org Fri Jul 3 13:50:47 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 13:50:47 -0000 Subject: rpms/ocaml-camlimages/devel ocaml-camlimages.spec,1.16,1.17 Message-ID: <20090703135042.8A0CF11C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv307 Modified Files: ocaml-camlimages.spec Log Message: - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/devel/ocaml-camlimages.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ocaml-camlimages.spec 23 May 2009 09:03:57 -0000 1.16 +++ ocaml-camlimages.spec 3 Jul 2009 13:50:42 -0000 1.17 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -17,6 +17,9 @@ ExcludeArch: sparc64 s390 s390x Patch0: camlimages-3.0.1-display-module.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509531#c4 +Patch1: camlimages-oversized-png-check-CVE-2009-2295.patch + BuildRequires: ocaml >= 3.10.1 BuildRequires: ocaml-lablgtk-devel BuildRequires: ocaml-x11 @@ -63,6 +66,7 @@ Includes documentation provided by ocaml # Gdk.Display submodule clashes with the Display module in # the examples/liv directory, so rename it: %patch0 -p1 +%patch1 -p1 aclocal -I . automake autoconf @@ -108,6 +112,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-9 +- ocaml-camlimages: PNG reader multiple integer overflows + (CVE 2009-2295 / RHBZ#509531). + * Sat May 23 2009 Richard W.M. Jones - 3.0.1-8 - Rebuild for OCaml 3.11.1 From rjones at fedoraproject.org Fri Jul 3 13:52:21 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 13:52:21 -0000 Subject: rpms/ocaml-camlimages/devel camlimages-oversized-png-check-CVE-2009-2295.patch, NONE, 1.1 Message-ID: <20090703135216.54FE011C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv604 Added Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Add patch. camlimages-oversized-png-check-CVE-2009-2295.patch: --- NEW FILE camlimages-oversized-png-check-CVE-2009-2295.patch --- --- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 +++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 @@ -26,6 +26,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 +/* Test if x or y are negative, or if multiplying x * y would cause an + * arithmetic overflow. + */ +#define oversized(x, y) \ + ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) + value read_png_file_as_rgb24( name ) value name; { @@ -81,6 +87,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -102,6 +111,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + { int i; png_bytep *row_pointers; @@ -235,6 +247,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -251,6 +266,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ From rjones at fedoraproject.org Fri Jul 3 13:53:35 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 13:53:35 -0000 Subject: rpms/ocaml-camlimages/F-11 camlimages-oversized-png-check-CVE-2009-2295.patch, NONE, 1.1 ocaml-camlimages.spec, 1.14, 1.15 Message-ID: <20090703135321.B810211C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv760 Modified Files: ocaml-camlimages.spec Added Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). camlimages-oversized-png-check-CVE-2009-2295.patch: --- NEW FILE camlimages-oversized-png-check-CVE-2009-2295.patch --- --- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 +++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 @@ -26,6 +26,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 +/* Test if x or y are negative, or if multiplying x * y would cause an + * arithmetic overflow. + */ +#define oversized(x, y) \ + ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) + value read_png_file_as_rgb24( name ) value name; { @@ -81,6 +87,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -102,6 +111,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + { int i; png_bytep *row_pointers; @@ -235,6 +247,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -251,6 +266,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-11/ocaml-camlimages.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ocaml-camlimages.spec 26 Feb 2009 06:51:27 -0000 1.14 +++ ocaml-camlimages.spec 3 Jul 2009 13:52:51 -0000 1.15 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 7%{?dist} +Release: 7%{?dist}.1 Summary: OCaml image processing library Group: Development/Libraries @@ -16,6 +16,9 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Patch0: camlimages-3.0.1-display-module.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509531#c4 +Patch1: camlimages-oversized-png-check-CVE-2009-2295.patch + BuildRequires: ocaml >= 3.10.1 BuildRequires: ocaml-lablgtk-devel BuildRequires: ocaml-x11 @@ -62,6 +65,7 @@ Includes documentation provided by ocaml # Gdk.Display submodule clashes with the Display module in # the examples/liv directory, so rename it: %patch0 -p1 +%patch1 -p1 aclocal -I . automake autoconf @@ -107,6 +111,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-7.fc11.1 +- ocaml-camlimages: PNG reader multiple integer overflows + (CVE 2009-2295 / RHBZ#509531). + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rjones at fedoraproject.org Fri Jul 3 13:54:59 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 13:54:59 -0000 Subject: rpms/ocaml-camlimages/F-10 camlimages-oversized-png-check-CVE-2009-2295.patch, NONE, 1.1 ocaml-camlimages.spec, 1.10, 1.11 Message-ID: <20090703135453.5C58311C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1237 Modified Files: ocaml-camlimages.spec Added Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). camlimages-oversized-png-check-CVE-2009-2295.patch: --- NEW FILE camlimages-oversized-png-check-CVE-2009-2295.patch --- --- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 +++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 @@ -26,6 +26,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 +/* Test if x or y are negative, or if multiplying x * y would cause an + * arithmetic overflow. + */ +#define oversized(x, y) \ + ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) + value read_png_file_as_rgb24( name ) value name; { @@ -81,6 +87,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -102,6 +111,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + { int i; png_bytep *row_pointers; @@ -235,6 +247,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -251,6 +266,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-10/ocaml-camlimages.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-camlimages.spec 3 Nov 2008 18:10:10 -0000 1.10 +++ ocaml-camlimages.spec 3 Jul 2009 13:54:53 -0000 1.11 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 3%{?dist} +Release: 3%{?dist}.1 Summary: OCaml image processing library Group: Development/Libraries @@ -16,6 +16,9 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Patch0: camlimages-3.0.1-display-module.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509531#c4 +Patch1: camlimages-oversized-png-check-CVE-2009-2295.patch + BuildRequires: ocaml >= 3.10.1 BuildRequires: ocaml-lablgtk-devel BuildRequires: ocaml-x11 @@ -62,6 +65,7 @@ Includes documentation provided by ocaml # Gdk.Display submodule clashes with the Display module in # the examples/liv directory, so rename it: %patch0 -p1 +%patch1 -p1 aclocal -I . automake autoconf @@ -107,6 +111,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-3.fc10.1 +- ocaml-camlimages: PNG reader multiple integer overflows + (CVE 2009-2295 / RHBZ#509531). + * Mon Nov 3 2008 Richard W.M. Jones - 3.0.1-3 - +BR gtk2-devel. - +BR ocaml-x11. From rjones at fedoraproject.org Fri Jul 3 13:59:28 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 13:59:28 -0000 Subject: rpms/ocaml-camlimages/EL-5 camlimages-oversized-png-check-CVE-2009-2295.patch, NONE, 1.1 ocaml-camlimages.spec, 1.1, 1.2 Message-ID: <20090703135911.3040011C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2932 Modified Files: ocaml-camlimages.spec Added Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). camlimages-oversized-png-check-CVE-2009-2295.patch: --- NEW FILE camlimages-oversized-png-check-CVE-2009-2295.patch --- --- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 +++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 @@ -26,6 +26,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 +/* Test if x or y are negative, or if multiplying x * y would cause an + * arithmetic overflow. + */ +#define oversized(x, y) \ + ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) + value read_png_file_as_rgb24( name ) value name; { @@ -81,6 +87,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -102,6 +111,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + { int i; png_bytep *row_pointers; @@ -235,6 +247,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -251,6 +266,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-5/ocaml-camlimages.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ocaml-camlimages.spec 5 May 2007 23:23:12 -0000 1.1 +++ ocaml-camlimages.spec 3 Jul 2009 13:59:11 -0000 1.2 @@ -1,6 +1,6 @@ Name: ocaml-camlimages Version: 2.2.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -9,6 +9,10 @@ URL: http://pauillac.inria.fr Source0: ftp://ftp.inria.fr/INRIA/Projects/cristal/caml-light/bazar-ocaml/camlimages-%{version}.tgz Source1: camlimages-2.2.0-htmlref.tar.gz Patch0: camlimages-2.2.0-stubdest.patch + +# https://bugzilla.redhat.com/show_bug.cgi?id=509531#c4 +Patch1: camlimages-oversized-png-check-CVE-2009-2295.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: lablgtk libpng-devel libjpeg-devel ocaml @@ -40,7 +44,12 @@ Includes documentation provided by ocaml %prep %setup -q -n camlimages-2.2 -a 1 -%patch -p1 +%patch0 -p1 + +pushd png +%patch1 -p2 +popd + sed -i -e 's|LIBRARYDIRS=ppm bmp xvthumb jpeg tiff gif png xpm ps graphics freetype|LIBRARYDIRS=%buildlibs|' Makefile.build.in %build @@ -70,6 +79,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-8 +- ocaml-camlimages: PNG reader multiple integer overflows + (CVE 2009-2295 / RHBZ#509531). + * Fri May 04 2007 Nigel Jones 2.2.0-7 - Change to Makefile patch to move .so files to stublibs - Rename to ocaml-camlimages From rjones at fedoraproject.org Fri Jul 3 13:59:58 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 13:59:58 -0000 Subject: rpms/ocaml-camlimages/EL-4 camlimages-oversized-png-check-CVE-2009-2295.patch, NONE, 1.1 ocaml-camlimages.spec, 1.2, 1.3 Message-ID: <20090703135936.723A511C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3049 Modified Files: ocaml-camlimages.spec Added Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). camlimages-oversized-png-check-CVE-2009-2295.patch: --- NEW FILE camlimages-oversized-png-check-CVE-2009-2295.patch --- --- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 +++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 @@ -26,6 +26,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 +/* Test if x or y are negative, or if multiplying x * y would cause an + * arithmetic overflow. + */ +#define oversized(x, y) \ + ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) + value read_png_file_as_rgb24( name ) value name; { @@ -81,6 +87,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -102,6 +111,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + { int i; png_bytep *row_pointers; @@ -235,6 +247,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -251,6 +266,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-4/ocaml-camlimages.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ocaml-camlimages.spec 9 May 2007 02:53:13 -0000 1.2 +++ ocaml-camlimages.spec 3 Jul 2009 13:59:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: ocaml-camlimages Version: 2.2.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -9,6 +9,10 @@ URL: http://pauillac.inria.fr Source0: ftp://ftp.inria.fr/INRIA/Projects/cristal/caml-light/bazar-ocaml/camlimages-%{version}.tgz Source1: camlimages-2.2.0-htmlref.tar.gz Patch0: camlimages-2.2.0-stubdest.patch + +# https://bugzilla.redhat.com/show_bug.cgi?id=509531#c4 +Patch1: camlimages-oversized-png-check-CVE-2009-2295.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Excluding on ppc64 due to missing dependencies (Bug #239518) @@ -43,7 +47,12 @@ Includes documentation provided by ocaml %prep %setup -q -n camlimages-2.2 -a 1 -%patch -p1 +%patch0 -p1 + +pushd png +%patch1 -p2 +popd + sed -i -e 's|LIBRARYDIRS=ppm bmp xvthumb jpeg tiff gif png xpm ps graphics freetype|LIBRARYDIRS=%buildlibs|' Makefile.build.in %build @@ -73,6 +82,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-8 +- ocaml-camlimages: PNG reader multiple integer overflows + (CVE 2009-2295 / RHBZ#509531). + * Wed May 09 2007 Nigel Jones 2.2.0-8 - Exclude ppc64 builds due to missing ocaml From rjones at fedoraproject.org Fri Jul 3 14:00:09 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 14:00:09 -0000 Subject: rpms/ocaml-camlimages/EL-5 ocaml-camlimages.spec,1.2,1.3 Message-ID: <20090703140001.4273111C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3140 Modified Files: ocaml-camlimages.spec Log Message: Bump spec to rebuild. Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-5/ocaml-camlimages.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ocaml-camlimages.spec 3 Jul 2009 13:59:11 -0000 1.2 +++ ocaml-camlimages.spec 3 Jul 2009 14:00:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: ocaml-camlimages Version: 2.2.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -79,7 +79,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-8 +* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-9 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). From Matt_Domsch at dell.com Tue Jul 14 18:23:57 2009 From: Matt_Domsch at dell.com (Matt Domsch) Date: Tue, 14 Jul 2009 18:23:57 -0000 Subject: Fedora rawhide rebuild in mock status 2009-07-10 i386 Message-ID: <20090714182334.GA2064@mock.linuxdev.us.dell.com> Fedora Rawhide-in-Mock Build Results for i386 using rawhide as of 10 July 2009. This is a full rebuild of all packages. Full logs at http://linux.dell.com/files/fedora/FixBuildRequires/ 1 Open Bugs which now build, and can be marked CLOSED RAWHIDE: ruby-rpm: [u'465103'] Total packages: 8005 Number failed to build: 352 Number expected to fail due to ExclusiveArch or ExcludeArch: 18 Leaving: 334 Of those expected to have worked... Without a bug filed: 330 ---------------------------------- Django-1.0.2-3.fc11 (build/make) salimma,smilner GtkAda-2.10.2-2.fc11 (build/make) gemi Io-language-20071010-10.fc11 (build/make) salimma,salimma PyQwt-5.1.0-3.fc11 (build/make) tadej PyX-0.10-6.fc11 (build/make) jamatos,jamatos,mpeters R-2.9.0-2.fc12 (build/make) spot R-BSgenome.Celegans.UCSC.ce2-1.2.0-5 (build/make) pingou R-BSgenome.Dmelanogaster.FlyBase.r51-1.3.1-3 (build/make) pingou R-RScaLAPACK-0.5.1-19.fc11 (build/make) spot R-hgu95av2probe-2.0.0-1.fc9 (build/make) pingou ScientificPython-2.8-4.fc11 (build/make) jspaleta SimGear-1.9.1-6.fc12 (build/make) spot,bellet UnihanDb-5.1.0-7.fc11.1 (build/make) dchen,i18n-team alexandria-0.6.4.1-6.fc11 (build/make) mtasaka almanah-0.5.0-1.fc11 (build/make) lokthare amanda-2.6.0p2-9.fc12 (build/make) dnovotny amora-1.1-4.fc11 (build/make) allisson anjuta-2.26.1.0-1.fc12 (build/make) rishi,rakesh anyremote-4.18.1-1.fc11 (build/make) anyremote apr-util-1.3.7-4.fc12 (build/make) jorton,bojan arm4-0.8.2-1.fc12 (build/make) grandcross,limb arts-1.5.10-5.fc11 (build/make) than,kkofler,rdieter,tuxbrewr asio-1.2.0-2.fc11 (build/make) uwog asterisk-sounds-core-1.4.15-1.fc11 (build/make) jcollie asymptote-1.73-1.fc12 (build/make) spot atlas-3.8.3-4.fc12 (build/make) deji,deji aubio-0.3.2-6.fc11 (build/make) green auriferous-1.0.1-7.fc11 (build/make) jwrdegoede avr-binutils-2.18-4.fc11 (build/make) tnorth,trondd avr-libc-1.6.4-4.fc12 (build/make) tnorth,trondd awn-extras-applets-0.3.2.1-8.fc11 (build/make) phuang,sindrepb axis-1.2.1-4.1.fc10 (build/make) pcheung babl-0.1.0-1.fc12 (build/make) deji,nphilipp baekmuk-bdf-fonts-2.2-7.fc11 (build/make) cchance,fonts-sig,i18n-team,petersen beagle-0.3.9-6.fc11 (build/make) orphan,drago01,psytux bigloo-3.1b-5.fc11 (build/make) gemi blacs-1.1-31.fc11 (build/make) spot bmpx-0.40.14-8.fc11 (build/make) akahl,cheese btrfs-progs-0.19-3.fc12 (build/make) josef,mmahut buffer-1.19-5.fc11 (build/make) bcornec,wolfy bug-buddy-2.27.1-2.fc12 (unpackaged_files/python-egg-info?) rstrode calf-0.0.18.5-1.fc12 (build/make) oget cdrkit-1.1.9-4.fc11 (build/make) rrakus cernlib-2006-32.fc11 (build/make) limb,pertusus chipmunk-4.1.0-6.fc11 (build/make) limb classpathx-jaf-1.0-12.fc10 (build/make) devrim,dwalluck clutter-cairo-0.8.2-3.fc11 (build/make) allisson clutter-cairomm-0.7.4-2.fc11 (build/make) denis clutter-gst-0.8.0-4.fc11 (build/make) allisson codeblocks-8.02-7.fc11 (build/make) sharkcz cogito-0.18.2-4.fc11 (build/make) chrisw compat-db-4.6.21-5.fc10 (build/make) jnovy,pmatilai compat-erlang-R10B-13.11.fc11 (build/make) gemi coredumper-1.2.1-8.fc12 (build/make) rakesh couchdb-0.9.0-2.fc12 (build/make) allisson cryptsetup-luks-1.0.7-0.1.fc12 (build/make) lvm-team,agk,dwysocha,mbroz,mornfall,pjones,till,whulbert cuetools-1.4.0-0.4.svn305.fc12 (build/make) stingray dap-hdf4_handler-3.7.9-2.fc11 (build/make) pertusus,pertusus dbus-c++-0.5.0-0.8.20090203git13281b3.fc11 (build/make) drago01 dev86-0.16.17-14.fc11 (build/make) jnovy devhelp-0.23-7.fc12 (build/make) mbarnes dietlibc-0.31-8.20090228.fc11 (build/make) ensc eclipse-cdt-5.0.2-2.fc11 (build/make) jjohnstn eclipse-checkstyle-4.0.1-12.fc11 (build/make) rmyers,akurtakov,overholt emacs-mew-6.2.51-2.fc11 (build/make) tagoh epiphany-extensions-2.26.1-2.fc12 (build/make) caillon,pgordon etherbat-1.0.1-5.fc11 (build/make) limb evolution-brutus-1.2.35-2.fc11 (build/make) bpepple evolution-data-server-2.27.3-3.fc12 (build/make) mbarnes,mbarnes,mcrha evolution-rss-0.1.2-9.fc12 (build/make) lucilanga evolution-zimbra-0.1.1-6.fc11 (build/make) mbarnes,mmahut fbreader-0.10.7-1.fc11 (build/make) salimma findbugs-1.3.8-1.fc11 (build/make) jjames fityk-0.8.1-14.fc10 (build/make) jpye fluidsynth-1.0.9-1.fc12 (build/make) green,oget fonts-ISO8859-2-1.0-20.fc11 (build/make) pnemade,fonts-sig,i18n-team,pnemade fonts-KOI8-R-1.0-11.fc11 (build/make) than,fonts-sig freefem++-3.0-5.5.fc11 (patch_fuzz) rathann,itamarjp fsarchiver-0.5.6-1.fc12 (build/make) drago01 fusecompress-2.5-1.fc12 (build/make) lkundrak,lmacken gauche-gl-0.4.4-4.fc11 (build/make) gemi gauche-gtk-0.4.1-18.fc11 (build/make) gemi gawk-3.1.6-5.fc11 (build/make) kasal gbdfed-1.4-2.fc11 (build/make) spot gc-7.1-7.fc11 (build/make) rdieter gcdmaster-1.2.2-5.fc11 (build/make) denis gcl-2.6.8-0.3.20090303cvs.fc12 (build/make) jjames,green gdal-1.6.0-8.fc11 (build/make) rezso,pertusus gearmand-0.7-1.fc12 (build/make) ruben gedit-vala-0.4.1-2.fc11 (build/make) salimma geronimo-specs-1.0-2.M2.fc10 (build/make) fnasser gflags-1.0-3.fc11 (build/make) rakesh gget-0.0.4-9.fc11 (build/make) ant glest-3.2.1-1.fc11 (build/make) abompard globus-common-10.2-5.fc12 (build/make) ellert globus-ftp-client-3.14-2.fc12 (build/make) ellert globus-gsi-openssl-error-0.14-3.fc12 (build/make) ellert globus-gssapi-error-2.5-3.fc12 (build/make) ellert globus-xio-2.7-4.fc12 (build/make) ellert globus-xio-gsi-driver-0.6-2.fc12 (build/make) ellert gloox-1.0-0.5.SVNr4003.fc12 (build/make) hubbitus gmfsk-0.7-0.6.pre1.fc11 (build/make) bjensen,bjensen,dp67,sconklin,sindrepb gmime-2.4.3-3.fc11 (build/make) alexl,thl gmime22-2.2.23-5.fc11 (build/make) bjohnson gmrun-0.9.2-16.fc11 (build/make) gilboa gnome-python2-extras-2.25.3-4.fc12 (build/make) mbarnes gnome-scan-0.6.2-1.fc11 (build/make) deji gnomint-0.9.1-5.fc12 (build/make) verdurin gnotime-2.3.0-3.fc11 (build/make) limb gnubversion-0.5-7.fc11 (build/make) laxathom gnuchess-5.07-12.fc11 (build/make) kaboom gnupg-1.4.9-5.fc11 (build/make) nalin,rdieter gnuradio-3.1.3-5.fc11 (build/make) mmahut,astronomy-sig gparted-0.4.5-1.fc12 (build/make) deji gromacs-4.0.4-2.fc11 (build/make) jussilehtola gspiceui-0.9.65-4.fc11 (build/make) laxathom,chitlesh gsynaptics-0.9.16-1.fc11 (build/make) ixs gt-0.4-8.fc11 (build/make) jwrdegoede gtkmm24-2.16.0-1.fc11 (build/make) denis gtranslator-1.9.5-1.fc12 (build/make) sindrepb,atorkhov guilt-0.32-3.fc11 (build/make) sandeen gutenprint-5.2.3-5.fc11 (unpackaged_files/python-egg-info?) twaugh gvfs-1.3.1-2.fc12 (build/make) tbzatek,alexl gwget-1.0.1-2.fc11 (build/make) cwickert hdf-4.2r4-2.fc11 (build/make) orion,pertusus hosts3d-0.98-1.fc11 (build/make) cassmodiah htmldoc-1.8.27-10.fc11 (build/make) agoode,pertusus hydrogen-0.9.4-0.3.rc1.1.fc11 (build/make) green,lkundrak,nando,oget hyphen-hsb-0.20080619-1.fc11 (build/make) caolanm iksemel-1.3-7.fc11 (build/make) jcollie insight-6.8-7.fc11 (build/make) monnerat,jkratoch ipsec-tools-0.7.2-1.fc12 (build/make) tmraz irda-utils-0.9.18-7.fc11 (build/make) karsten iverilog-0.9.20090423-4..fc11 (build/make) rezso,chitlesh jack-keyboard-2.5-2.fc12 (build/make) oget jack-rack-1.4.7-2.fc11 (build/make) kwizart,nando jasper-1.900.1-10.fc11 (build/make) rdieter java-1.6.0-openjdk-1.6.0.0-23.b16.fc12 (build/make) langel,dbhole,langel,lkundrak,mjw jeuclid-3.1.3-11.fc11 (buildroot) bashton jfsutils-1.1.13-5.fc11 (build/make) jwboyer jruby-1.1.6-3.fc11 (build/make) konradm k3d-0.7.11.0-1.fc12 (build/make) denis kaya-0.5.1-4.fc11 (build/make) s4504kr kdebase3-3.5.10-8.fc11 (build/make) than,jreznik,kkofler,ltinkl,rdieter,svahl,tuxbrewr kdelibs3-3.5.10-11.fc11 (build/make) than,kkofler,ltinkl,rdieter,tuxbrewr kdevelop-3.5.4-3.fc11 (build/make) than,kkofler,ltinkl,rdieter,tuxbrewr kdewebdev-3.5.10-2.fc11 (build/make) than,jreznik,kkofler,ltinkl,rdieter,tuxbrewr kdnssd-avahi-0.1.3-0.7.20080116svn.fc11 (build/make) rdieter,rdieter,tuxbrewr klear-0.7.0-2.svn113.fc10 (build/make) orphan knetstats-1.6.1-9.fc11 (build/make) chitlesh knm_new-fonts-1.1-5.fc11 (build/make) tagoh,fonts-sig,i18n-team kopete-cryptography-1.3.0-7.fc11 (build/make) jreznik,kkofler,ltinkl,rdieter,than kpolynome-0.1.2-13.fc11 (build/make) chitlesh ktechlab-0.3.70-1.20090304svn.fc11 (build/make) chitlesh labrea-2.5.1-2.fc10 (build/make) huzaifas lam-7.1.4-7.fc12 (build/make) dledford lash-0.5.4-5.fc12 (build/make) green,oget lasi-1.1.0-4.fc11 (build/make) orion ldapvi-1.7-8.fc11 (build/make) orphan libSM-1.1.0-4.fc11 (build/make) ssp libXtst-1.0.3-5.fc11 (build/make) ssp libbeagle-0.3.9-3.fc11 (build/make) mclasen libchamplain-0.2.9-1.fc11 (build/make) rishi libepc-0.3.10-1.fc12 (build/make) bpepple libfakekey-0.1-2.fc11 (build/make) mccann libgnomedb-3.99.7-3.fc11 (build/make) denis,denis,huzaifas libgnomeprint22-2.18.6-1.fc11 (build/make) behdad libibumad-1.3.1-1.fc12 (build/make) dledford libprojectM-1.2.0-9.fc11 (build/make) imntreal libprojectM-qt-1.2.0-5.fc11 (build/make) imntreal libsigsegv-2.6-2.fc11 (build/make) rdieter libsoup22-2.2.105-4.fc11 (build/make) mbarnes libsx-2.05-16.fc11 (build/make) kasal,pertusus libtar-1.2.11-11.fc10 (build/make) huzaifas,huzaifas libtheora-1.1alpha2-1.fc12 (build/make) ajax,jnovy,jwrdegoede libtopology-0.3-5.fc11 (build/make) tbreeds libunwind-0.99-0.10.20090430betagit4b8404d1.fc12 (build/make) jkratoch libvirt-cim-0.5.5-1.fc12 (build/make) danms,kaitlin linux-libertine-fonts-4.1.8-1.fc11 (build/make) farnold,fonts-sig,kevin linuxwacom-0.8.2.2-11.fc11 (build/make) arozansk lordsawar-0.1.5-2.fc11 (build/make) ianweller lout-3.38-2.fc11 (build/make) spot lxappearance-0.2.1-1.fc12 (build/make) cwickert lxlauncher-0.2.1-1.fc12 (build/make) cwickert lxsession-edit-0.1.1-1.fc12 (build/make) cwickert lxshortcut-0.1.1-1.fc12 (build/make) cwickert maildrop-2.0.4-9.fc11 (build/make) athimm matchbox-keyboard-0.1-0.2009.05.19.1.fc11 (build/make) mccann mathml-fonts-1.0-23.fc11 (build/make) rdieter,fonts-sig mcrypt-2.6.8-2.fc11 (build/make) spot mdbtools-0.6-0.6.cvs20051109.fc11.1 (build/make) jwrdegoede mingw32-wpcap-4.1.beta5-6.fc12 (build/make) sailer,rjones minicom-2.3-4.fc11 (build/make) mlichvar minirpc-0.3.2-3.fc11 (build/make) agoode mod_dnssd-0.6-2.fc11 (build/make) ivazquez,lennart monafont-2.90-8.fc11 (build/make) mtasaka mugshot-1.2.2-9.fc12 (build/make) otaylor multiget-1.2.0-5.fc11 (build/make) guidoledermann,mtasaka muse-1.0-0.6.rc3.fc12 (build/make) oget,nando museek+-0.2-1.fc11 (build/make) belegdol mysql-5.1.35-1.fc12 (build/make) tgl mysql-gui-tools-5.0r12-11.fc11 (build/make) ausil,hubbitus nautilus-actions-1.10.1-1.fc12 (build/make) deji netcdf-perl-1.2.3-9.fc11 (build/make) orion,perl-sig,pertusus newsx-1.6-11.fc11 (build/make) rathann,itamarjp ngspice-18-2.fc11 (build/make) chitlesh nickle-2.68-1.fc11 (build/make) salimma ntop-3.3.9-5.fc11 (build/make) rakesh,pvrabec nwsclient-1.6.3-3.fc11 (build/make) spot nx-3.3.0-35.fc12 (build/make) athimm,limb ocaml-libvirt-0.6.1.0-3.fc12 (build/make) rjones,ocamlmaint,virtmaint ocaml-pa-do-0.8.9-2.fc12 (build/make) rjones ocfs2-tools-1.3.9-10.20080221git.fc11 (build/make) mfasheh,fabbione,mfasheh oorexx-3.2.0-4.fc9 (build/make) gemi opencv-1.1.0-0.1.pre1.fc12.1 (build/make) rakesh,kwizart,nomis80 openhpi-2.14.0-2.fc12 (build/make) sharkcz,pknirsch orpie-1.5.1-4.fc10 (build/make) xris orsa-0.7.0-8.fc11 (build/make) mjakubicek,mmahut paraview-3.4.0-4.fc11 (build/make) orion,pertusus parted-1.8.8-17.fc11 (build/make) jgranado pcmanx-gtk2-0.3.8-5.fc11 (build/make) orphan pdf2djvu-0.5.0-3.fc12 (build/make) rakesh pdns-recursor-3.1.7-4.fc11 (build/make) ruben perl-AnyEvent-XMPP-0.4-1.fc11 (build/make) allisson,perl-sig perl-Bio-Graphics-1.94-1.fc12 (build/make) alexlan,perl-sig perl-DBIx-Class-Schema-Loader-0.04005-3.fc11 (build/make) cweyl,perl-sig perl-Email-MIME-Creator-1.455-1.fc11 (build/make) spot,perl-sig perl-Email-MIME-Modifier-1.443-2.fc11 (build/make) spot,perl-sig perl-HTML-FormFu-Model-DBIC-0.03007-1.fc11 (build/make) cweyl,perl-sig perl-Log-Log4perl-1.20-3.fc11 (build/make) kasal,mmaslano,perl-sig perl-Mail-Box-2.087-1.fc11 (build/make) spot,perl-sig perl-MooseX-AttributeHelpers-0.19-1.fc12 (build/make) cweyl,perl-sig perl-MooseX-Daemonize-0.08-3.fc11 (build/make) allisson perl-MooseX-Getopt-0.18-1.fc12 (build/make) cweyl,perl-sig perl-MooseX-POE-0.204-1.fc12 (build/make) allisson perl-MooseX-Role-Parameterized-0.09-2.fc12 (build/make) cweyl,perl-sig perl-MooseX-Traits-Attribute-CascadeClear-0.03-2.fc11 (build/make) cweyl,perl-sig perl-PDL-2.4.4-3.fc11 (build/make) kasal,mmaslano,orion perl-POE-Component-Server-SimpleHTTP-1.48-2.fc11 (build/make) cweyl,perl-sig perl-SQL-Statement-1.15-5.fc11 (build/make) kasal,mmaslano,perl-sig perl-SVN-Mirror-0.75-2.fc11 (build/make) iburrell,perl-sig perl-SVN-Simple-0.27-7.fc11 (build/make) iburrell,perl-sig perl-Sys-Virt-0.2.0-2.fc11 (build/make) steve,berrange,perl-sig perl-Template-Plugin-Class-0.13-6.fc11 (build/make) spot,perl-sig perl-Test-AutoBuild-1.2.2-7.fc11 (build/make) berrange perl-Tie-IxHash-1.21-9.fc11 (build/make) spot,perl-sig pg_top-3.6.2-4.fc11 (build/make) itamarjp phasex-0.11.1-6.fc11 (build/make) green pmount-0.9.17-4.fc11 (build/make) kasal,jpmahowa,pertusus projectM-jack-1.2.0-5.fc11 (build/make) imntreal projectM-libvisual-1.2.0-5.fc11 (build/make) imntreal projectM-pulseaudio-1.2.0-4.fc11 (build/make) imntreal protobuf-2.0.2-8.fc11 (build/make) abbot pyclutter-0.8.2-2.fc11 (build/make) allisson pygame-1.8.1-6.fc12 (build/make) xulchris pygoocanvas-0.14.0-1.fc12 (build/make) bjohnson pygsl-0.9.3-4.fc11 (build/make) jamatos pypar-2.1.0_66-3.fc10 (build/make) jussilehtola pysvn-1.6.3-2.fc11 (build/make) ravenoak python-basemap-0.99.2-3.fc11 (build/make) jspaleta python-docs-2.6-2.fc11 (build/make) james,ivazquez,rrakus python-openhpi-1.1-3.fc11 (build/make) sharkcz python-py-0.9.2-7.fc11 (build/make) thm python-pylons-0.9.7-0.2.rc4.fc11 (build/make) kylev python-tftpy-0.4.6-3.fc11 (build/make) ivaxer qtiplot-0.9-11.fc11 (build/make) frankb qtparted-0.4.5-19.fc11 (build/make) steve qzion-0.4.0-1.fc11 (build/make) john5342,rdieter ragel-6.3-2.fc11 (build/make) jjh ratpoison-1.4.4-3.fc12 (build/make) kevin,kevin rcssserver3d-0.6.1-4.fc12 (build/make) hedayat readahead-1.4.9-1.fc11 (build/make) harald,harald rsibreak-0.9.0-10.fc11 (build/make) liquidat,rdieter safekeep-1.0.5-2.fc11 (build/make) jspaleta samba-3.4.0-0pre1.37.fc12 (build/make) simo,gd sane-frontends-1.0.14-6.fc11 (build/make) nphilipp scalapack-1.7.5-5.fc11 (build/make) spot seahorse-plugins-2.27.1-1.fc12 (build/make) mclasen,tbzatek sectool-0.9.3-1.fc12 (build/make) pvrabec,jhrozek,mildew sems-1.1.0-7.fc12 (build/make) peter,ondrejj seq24-0.8.7-15.fc11 (build/make) green showimg-0.9.5-22.fc11 (build/make) abompard siril-0.8-7.fc11 (build/make) mmahut smart-1.2-64.fc12 (build/make) athimm spambayes-1.0.4-7.fc11 (build/make) xulchris squeak-vm-3.10.4-4.fc11 (build/make) gavin,tuxbrewr supertuxkart-0.6.1-2.fc11 (build/make) limb svgalib-1.9.25-6.fc11 (build/make) rakesh,orion svnkit-1.2.3-1.fc11 (build/make) robmv,akurtakov syck-0.61-8.2.fc11 (build/make) oliver synergy-1.3.1-12.fc11 (build/make) thias t1utils-1.33-2.fc11 (build/make) jamatos tachyon-0.98.1-1.fc11 (build/make) rathann,itamarjp tcl-8.5.6-6.fc11 (build/make) mmaslano testdisk-6.11-3.fc12 (build/make) grenier tig-0.14.1-1.fc11 (build/make) jbowes,jcollie,tmz tor-0.2.0.34-3.fc11 (build/make) ensc,cassmodiah towhee-6.2.3-5.fc10 (build/make) jussilehtola ucblogo-6.0-4.fc11 (build/make) gemi unifdef-1.171-8.fc11 (build/make) dwmw2,jaswinder util-vserver-0.30.215-7.fc11 (build/make) ensc uuid-1.6.1-6.fc12 (build/make) steve varnish-2.0.4-2.fc12 (build/make) ingvar w3c-libwww-5.4.1-0.15.20060206cvs.fc11 (build/make) awjb widelands-0-0.13.Build13.fc11 (build/make) karlik wise2-2.2.0-5.fc11 (build/make) alexlan xastir-1.9.4-8.fc12 (build/make) lucilanga,bjensen xdotool-20090330-3.fc12 (build/make) sindrepb xen-3.4.0-2.fc12 (build/make) xen-maint,berrange,kraxel,virtmaint xenner-0.47-1.fc12 (build/make) kraxel,berrange,itamarjp,virtmaint xine-ui-0.99.5-11.fc12 (build/make) jussilehtola xmbdfed-4.7-4.fc11 (build/make) spot xmlcopyeditor-1.1.0.6-4.fc9 (build/make) ivazquez xorg-x11-drv-acecad-1.3.0-1.fc11 (build/make) xgl-maint xorg-x11-drv-aiptek-1.2.0-1.fc11 (build/make) xgl-maint xorg-x11-drv-elographics-1.2.3-2.fc11 (build/make) xgl-maint xorg-x11-drv-fpit-1.3.0-2.fc11 (build/make) xgl-maint xorg-x11-drv-hyperpen-1.3.0-1.fc11 (build/make) xgl-maint xorg-x11-drv-keyboard-1.3.2-3.fc11 (build/make) xgl-maint xorg-x11-drv-mutouch-1.2.1-2.fc11 (build/make) xgl-maint xorg-x11-drv-penmount-1.4.0-2.fc11 (build/make) xgl-maint xorg-x11-drv-radeonhd-1.2.5-2.8.20090411git.fc11 (build/make) ndim,ajax xorg-x11-xdm-1.1.6-10.fc12 (build/make) xgl-maint,pertusus xorg-x11-xsm-1.0.2-9.fc11 (build/make) xgl-maint xpilot-ng-4.7.2-16.fc11 (build/make) wart xqilla-2.1.3-0.6.fc11 (build/make) mzazrive xqilla10-1.0.2-6.fc11 (build/make) mzazrive xsane-0.996-7.fc11 (build/make) nphilipp yap-5.1.1-13.fc11 (build/make) gemi zynaddsubfx-2.2.1-20.fc11 (build/make) green With bugs filed: 4 ---------------------------------- httping-1.2.9-4.fc11 [u'502430 NEW'] (build/make) fab libFoundation-1.1.3-11.fc9 [u'440564 ASSIGNED'] (build/make) athimm perl-RRD-Simple-1.43-3.fc9 [u'464964 ASSIGNED'] (build/make) cweyl,perl-sig smarteiffel-2.3-2.fc9 [u'464923 ASSIGNED'] (build/make) gemi ---------------------------------- Packages by owner: abbot: protobuf abompard: glest,showimg agk: cryptsetup-luks agoode: htmldoc,minirpc ajax: libtheora,xorg-x11-drv-radeonhd akahl: bmpx akurtakov: eclipse-checkstyle,svnkit alexl: gmime,gvfs alexlan: perl-Bio-Graphics,wise2 allisson: amora,clutter-cairo,clutter-gst,couchdb,perl-AnyEvent-XMPP,perl-MooseX-Daemonize,perl-MooseX-POE,pyclutter ant: gget anyremote: anyremote arozansk: linuxwacom astronomy-sig: gnuradio athimm: libFoundation,maildrop,nx,smart atorkhov: gtranslator ausil: mysql-gui-tools awjb: w3c-libwww bashton: jeuclid bcornec: buffer behdad: libgnomeprint22 belegdol: museek+ bellet: SimGear berrange: perl-Sys-Virt,perl-Test-AutoBuild,xen,xenner bjensen: gmfsk,gmfsk,xastir bjohnson: gmime22,pygoocanvas bojan: apr-util bpepple: evolution-brutus,libepc caillon: epiphany-extensions caolanm: hyphen-hsb cassmodiah: hosts3d,tor cchance: baekmuk-bdf-fonts cheese: bmpx chitlesh: gspiceui,iverilog,knetstats,kpolynome,ktechlab,ngspice chrisw: cogito cweyl: perl-DBIx-Class-Schema-Loader,perl-HTML-FormFu-Model-DBIC,perl-MooseX-AttributeHelpers,perl-MooseX-Getopt,perl-MooseX-Role-Parameterized,perl-MooseX-Traits-Attribute-CascadeClear,perl-POE-Component-Server-SimpleHTTP,perl-RRD-Simple cwickert: gwget,lxappearance,lxlauncher,lxsession-edit,lxshortcut danms: libvirt-cim dbhole: java-1.6.0-openjdk dchen: UnihanDb deji: atlas,atlas,babl,gnome-scan,gparted,nautilus-actions denis: clutter-cairomm,gcdmaster,gtkmm24,k3d,libgnomedb,libgnomedb devrim: classpathx-jaf dledford: lam,libibumad dnovotny: amanda dp67: gmfsk drago01: beagle,dbus-c++,fsarchiver dwalluck: classpathx-jaf dwmw2: unifdef dwysocha: cryptsetup-luks ellert: globus-common,globus-ftp-client,globus-gsi-openssl-error,globus-gssapi-error,globus-xio,globus-xio-gsi-driver ensc: dietlibc,tor,util-vserver fab: httping fabbione: ocfs2-tools farnold: linux-libertine-fonts fnasser: geronimo-specs fonts-sig: baekmuk-bdf-fonts,fonts-ISO8859-2,fonts-KOI8-R,knm_new-fonts,linux-libertine-fonts,mathml-fonts frankb: qtiplot gavin: squeak-vm gd: samba gemi: GtkAda,bigloo,compat-erlang,gauche-gl,gauche-gtk,oorexx,smarteiffel,ucblogo,yap gilboa: gmrun grandcross: arm4 green: aubio,fluidsynth,gcl,hydrogen,lash,phasex,seq24,zynaddsubfx grenier: testdisk guidoledermann: multiget harald: readahead,readahead hedayat: rcssserver3d hubbitus: gloox,mysql-gui-tools huzaifas: labrea,libgnomedb,libtar,libtar i18n-team: UnihanDb,baekmuk-bdf-fonts,fonts-ISO8859-2,knm_new-fonts ianweller: lordsawar iburrell: perl-SVN-Mirror,perl-SVN-Simple imntreal: libprojectM,libprojectM-qt,projectM-jack,projectM-libvisual,projectM-pulseaudio ingvar: varnish itamarjp: freefem++,newsx,pg_top,tachyon,xenner ivaxer: python-tftpy ivazquez: mod_dnssd,python-docs,xmlcopyeditor ixs: gsynaptics jamatos: PyX,PyX,pygsl,t1utils james: python-docs jaswinder: unifdef jbowes: tig jcollie: asterisk-sounds-core,iksemel,tig jgranado: parted jhrozek: sectool jjames: findbugs,gcl jjh: ragel jjohnstn: eclipse-cdt jkratoch: insight,libunwind jnovy: compat-db,dev86,libtheora john5342: qzion jorton: apr-util josef: btrfs-progs jpmahowa: pmount jpye: fityk jreznik: kdebase3,kdewebdev,kopete-cryptography jspaleta: ScientificPython,python-basemap,safekeep jussilehtola: gromacs,pypar,towhee,xine-ui jwboyer: jfsutils jwrdegoede: auriferous,gt,libtheora,mdbtools kaboom: gnuchess kaitlin: libvirt-cim karlik: widelands karsten: irda-utils kasal: gawk,libsx,perl-Log-Log4perl,perl-PDL,perl-SQL-Statement,pmount kevin: linux-libertine-fonts,ratpoison,ratpoison kkofler: arts,kdebase3,kdelibs3,kdevelop,kdewebdev,kopete-cryptography konradm: jruby kraxel: xen,xenner kwizart: jack-rack,opencv kylev: python-pylons langel: java-1.6.0-openjdk,java-1.6.0-openjdk laxathom: gnubversion,gspiceui lennart: mod_dnssd limb: arm4,cernlib,chipmunk,etherbat,gnotime,nx,supertuxkart liquidat: rsibreak lkundrak: fusecompress,hydrogen,java-1.6.0-openjdk lmacken: fusecompress lokthare: almanah ltinkl: kdebase3,kdelibs3,kdevelop,kdewebdev,kopete-cryptography lucilanga: evolution-rss,xastir lvm-team: cryptsetup-luks mbarnes: devhelp,evolution-data-server,evolution-data-server,evolution-zimbra,gnome-python2-extras,libsoup22 mbroz: cryptsetup-luks mccann: libfakekey,matchbox-keyboard mclasen: libbeagle,seahorse-plugins mcrha: evolution-data-server mfasheh: ocfs2-tools,ocfs2-tools mildew: sectool mjakubicek: orsa mjw: java-1.6.0-openjdk mlichvar: minicom mmahut: btrfs-progs,evolution-zimbra,gnuradio,orsa,siril mmaslano: perl-Log-Log4perl,perl-PDL,perl-SQL-Statement,tcl monnerat: insight mornfall: cryptsetup-luks mpeters: PyX mtasaka: alexandria,monafont,multiget mzazrive: xqilla,xqilla10 nalin: gnupg nando: hydrogen,jack-rack,muse ndim: xorg-x11-drv-radeonhd nomis80: opencv nphilipp: babl,sane-frontends,xsane ocamlmaint: ocaml-libvirt oget: calf,fluidsynth,hydrogen,jack-keyboard,lash,muse oliver: syck ondrejj: sems orion: hdf,lasi,netcdf-perl,paraview,perl-PDL,svgalib orphan: beagle,klear,ldapvi,pcmanx-gtk2 otaylor: mugshot overholt: eclipse-checkstyle pcheung: axis perl-sig: netcdf-perl,perl-AnyEvent-XMPP,perl-Bio-Graphics,perl-DBIx-Class-Schema-Loader,perl-Email-MIME-Creator,perl-Email-MIME-Modifier,perl-HTML-FormFu-Model-DBIC,perl-Log-Log4perl,perl-Mail-Box,perl-MooseX-AttributeHelpers,perl-MooseX-Getopt,perl-MooseX-Role-Parameterized,perl-MooseX-Traits-Attribute-CascadeClear,perl-POE-Component-Server-SimpleHTTP,perl-RRD-Simple,perl-SQL-Statement,perl-SVN-Mirror,perl-SVN-Simple,perl-Sys-Virt,perl-Template-Plugin-Class,perl-Tie-IxHash pertusus: cernlib,dap-hdf4_handler,dap-hdf4_handler,gdal,hdf,htmldoc,libsx,netcdf-perl,paraview,pmount,xorg-x11-xdm peter: sems petersen: baekmuk-bdf-fonts pgordon: epiphany-extensions phuang: awn-extras-applets pingou: R-BSgenome.Celegans.UCSC.ce2,R-BSgenome.Dmelanogaster.FlyBase.r51,R-hgu95av2probe pjones: cryptsetup-luks pknirsch: openhpi pmatilai: compat-db pnemade: fonts-ISO8859-2,fonts-ISO8859-2 psytux: beagle pvrabec: ntop,sectool rakesh: anjuta,coredumper,gflags,ntop,opencv,pdf2djvu,svgalib rathann: freefem++,newsx,tachyon ravenoak: pysvn rdieter: arts,gc,gnupg,jasper,kdebase3,kdelibs3,kdevelop,kdewebdev,kdnssd-avahi,kdnssd-avahi,kopete-cryptography,libsigsegv,mathml-fonts,qzion,rsibreak rezso: gdal,iverilog rishi: anjuta,libchamplain rjones: mingw32-wpcap,ocaml-libvirt,ocaml-pa-do rmyers: eclipse-checkstyle robmv: svnkit rrakus: cdrkit,python-docs rstrode: bug-buddy ruben: gearmand,pdns-recursor s4504kr: kaya sailer: mingw32-wpcap salimma: Django,Io-language,Io-language,fbreader,gedit-vala,nickle sandeen: guilt sconklin: gmfsk sharkcz: codeblocks,openhpi,python-openhpi simo: samba sindrepb: awn-extras-applets,gmfsk,gtranslator,xdotool smilner: Django spot: R,R-RScaLAPACK,SimGear,asymptote,blacs,gbdfed,lout,mcrypt,nwsclient,perl-Email-MIME-Creator,perl-Email-MIME-Modifier,perl-Mail-Box,perl-Template-Plugin-Class,perl-Tie-IxHash,scalapack,xmbdfed ssp: libSM,libXtst steve: perl-Sys-Virt,qtparted,uuid stingray: cuetools svahl: kdebase3 tadej: PyQwt tagoh: emacs-mew,knm_new-fonts tbreeds: libtopology tbzatek: gvfs,seahorse-plugins tgl: mysql than: arts,fonts-KOI8-R,kdebase3,kdelibs3,kdevelop,kdewebdev,kopete-cryptography thias: synergy thl: gmime thm: python-py till: cryptsetup-luks tmraz: ipsec-tools tmz: tig tnorth: avr-binutils,avr-libc trondd: avr-binutils,avr-libc tuxbrewr: arts,kdebase3,kdelibs3,kdevelop,kdewebdev,kdnssd-avahi,squeak-vm twaugh: gutenprint uwog: asio verdurin: gnomint virtmaint: ocaml-libvirt,xen,xenner wart: xpilot-ng whulbert: cryptsetup-luks wolfy: buffer xen-maint: xen xgl-maint: xorg-x11-drv-acecad,xorg-x11-drv-aiptek,xorg-x11-drv-elographics,xorg-x11-drv-fpit,xorg-x11-drv-hyperpen,xorg-x11-drv-keyboard,xorg-x11-drv-mutouch,xorg-x11-drv-penmount,xorg-x11-xdm,xorg-x11-xsm xris: orpie xulchris: pygame,spambayes -- Matt Domsch Linux Technology Strategist, Dell Office of the CTO linux.dell.com & www.dell.com/linux From jkeating at fedoraproject.org Fri Jul 24 18:46:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:46:14 -0000 Subject: rpms/cduce/devel cduce.spec,1.13,1.14 Message-ID: <20090724184606.C7D5211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cduce/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24793 Modified Files: cduce.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cduce.spec =================================================================== RCS file: /cvs/pkgs/rpms/cduce/devel/cduce.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- cduce.spec 26 May 2009 15:51:38 -0000 1.13 +++ cduce.spec 24 Jul 2009 18:46:06 -0000 1.14 @@ -15,7 +15,7 @@ Name: cduce Version: 0.5.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Modern XML-oriented functional language Group: Development/Libraries @@ -180,6 +180,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Richard W.M. Jones - 0.5.3-1 - New upstream release 0.5.3. - Patch for compatibility with OCaml 3.11 now upstream. From jkeating at fedoraproject.org Fri Jul 24 19:29:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:29:47 -0000 Subject: rpms/coq/devel coq.spec,1.11,1.12 Message-ID: <20090724192930.4E42A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25226 Modified Files: coq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coq.spec =================================================================== RCS file: /cvs/pkgs/rpms/coq/devel/coq.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- coq.spec 19 Jun 2009 11:14:52 -0000 1.11 +++ coq.spec 24 Jul 2009 19:29:30 -0000 1.12 @@ -29,7 +29,7 @@ Name: coq Version: 8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Coq proof management system Group: Applications/Engineering @@ -324,6 +324,9 @@ rm -rf %{buildroot} %doc README.coq-emacs %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Alan Dunn - 8.2-1 - New upstream release - Seems documentation license has changed or wasn't explicitly stated From rjones at fedoraproject.org Fri Jul 3 14:07:25 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 14:07:25 -0000 Subject: rpms/ocaml-camlimages/EL-5 ocaml-camlimages.spec,1.3,1.4 Message-ID: <20090703140720.165DA11C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4448 Modified Files: ocaml-camlimages.spec Log Message: lablgtk -> ocaml-lablgtk Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-5/ocaml-camlimages.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ocaml-camlimages.spec 3 Jul 2009 14:00:01 -0000 1.3 +++ ocaml-camlimages.spec 3 Jul 2009 14:06:49 -0000 1.4 @@ -1,6 +1,6 @@ Name: ocaml-camlimages Version: 2.2.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -15,7 +15,7 @@ Patch1: camlimages-oversized-png BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: lablgtk libpng-devel libjpeg-devel ocaml +BuildRequires: ocaml-lablgtk libpng-devel libjpeg-devel ocaml BuildRequires: libXpm-devel ghostscript-devel freetype-devel BuildRequires: giflib-devel Requires: ocaml @@ -79,9 +79,10 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-9 +* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-10 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). +- Changed dep from 'lablgtk' to 'ocaml-lablgtk'. * Fri May 04 2007 Nigel Jones 2.2.0-7 - Change to Makefile patch to move .so files to stublibs From rjones at fedoraproject.org Fri Jul 3 18:28:56 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 18:28:56 -0000 Subject: rpms/ocaml-camlimages/devel camlimages-oversized-png-check-CVE-2009-2295.patch, 1.1, 1.2 Message-ID: <20090703182848.9F3CE11C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20504/devel Modified Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Updated patch from https://bugzilla.redhat.com/show_bug.cgi?id=509531#c11 camlimages-oversized-png-check-CVE-2009-2295.patch: Index: camlimages-oversized-png-check-CVE-2009-2295.patch =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/devel/camlimages-oversized-png-check-CVE-2009-2295.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 13:52:16 -0000 1.1 +++ camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 18:28:48 -0000 1.2 @@ -1,6 +1,15 @@ ---- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 -+++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 -@@ -26,6 +26,12 @@ +--- camlimages-3.0.1.orig/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 ++++ camlimages-3.0.1.oversized/src/pngread.c 2009-07-03 15:51:00.000000000 +0100 +@@ -15,6 +15,8 @@ + #include "config.h" + #endif + ++#include ++ + #include + + #include +@@ -26,6 +28,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 @@ -8,12 +17,12 @@ + * arithmetic overflow. + */ +#define oversized(x, y) \ -+ ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) ++ ((x) < 0 || (y) < 0 || ((y) != 0 && (x) > INT_MAX / (y))) + value read_png_file_as_rgb24( name ) value name; { -@@ -81,6 +87,9 @@ +@@ -81,6 +89,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -23,7 +32,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -102,6 +111,9 @@ +@@ -102,10 +113,16 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -33,7 +42,14 @@ { int i; png_bytep *row_pointers; -@@ -235,6 +247,9 @@ + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); + + res = alloc_tuple(3); +@@ -235,6 +252,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -43,7 +59,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -251,6 +266,9 @@ +@@ -251,6 +271,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -53,3 +69,13 @@ /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ +@@ -259,6 +282,9 @@ + png_bytep *row_pointers; + char mesg[256]; + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*)stat_alloc(sizeof(png_bytep) * height); + res = alloc_tuple(3); + From rjones at fedoraproject.org Fri Jul 3 18:29:29 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 18:29:29 -0000 Subject: rpms/ocaml-camlimages/EL-4 camlimages-oversized-png-check-CVE-2009-2295.patch, 1.1, 1.2 Message-ID: <20090703182917.E385211C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20504/EL-4 Modified Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Updated patch from https://bugzilla.redhat.com/show_bug.cgi?id=509531#c11 camlimages-oversized-png-check-CVE-2009-2295.patch: Index: camlimages-oversized-png-check-CVE-2009-2295.patch =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-4/camlimages-oversized-png-check-CVE-2009-2295.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 13:59:36 -0000 1.1 +++ camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 18:28:47 -0000 1.2 @@ -1,6 +1,15 @@ ---- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 -+++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 -@@ -26,6 +26,12 @@ +--- camlimages-3.0.1.orig/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 ++++ camlimages-3.0.1.oversized/src/pngread.c 2009-07-03 15:51:00.000000000 +0100 +@@ -15,6 +15,8 @@ + #include "config.h" + #endif + ++#include ++ + #include + + #include +@@ -26,6 +28,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 @@ -8,12 +17,12 @@ + * arithmetic overflow. + */ +#define oversized(x, y) \ -+ ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) ++ ((x) < 0 || (y) < 0 || ((y) != 0 && (x) > INT_MAX / (y))) + value read_png_file_as_rgb24( name ) value name; { -@@ -81,6 +87,9 @@ +@@ -81,6 +89,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -23,7 +32,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -102,6 +111,9 @@ +@@ -102,10 +113,16 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -33,7 +42,14 @@ { int i; png_bytep *row_pointers; -@@ -235,6 +247,9 @@ + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); + + res = alloc_tuple(3); +@@ -235,6 +252,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -43,7 +59,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -251,6 +266,9 @@ +@@ -251,6 +271,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -53,3 +69,13 @@ /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ +@@ -259,6 +282,9 @@ + png_bytep *row_pointers; + char mesg[256]; + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*)stat_alloc(sizeof(png_bytep) * height); + res = alloc_tuple(3); + From rjones at fedoraproject.org Fri Jul 3 18:48:33 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 18:48:33 -0000 Subject: rpms/ocaml-camlimages/EL-5 camlimages-oversized-png-check-CVE-2009-2295.patch, 1.1, 1.2 Message-ID: <20090703182918.1AAE611C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20504/EL-5 Modified Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Updated patch from https://bugzilla.redhat.com/show_bug.cgi?id=509531#c11 camlimages-oversized-png-check-CVE-2009-2295.patch: Index: camlimages-oversized-png-check-CVE-2009-2295.patch =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-5/camlimages-oversized-png-check-CVE-2009-2295.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 13:59:10 -0000 1.1 +++ camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 18:28:47 -0000 1.2 @@ -1,6 +1,15 @@ ---- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 -+++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 -@@ -26,6 +26,12 @@ +--- camlimages-3.0.1.orig/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 ++++ camlimages-3.0.1.oversized/src/pngread.c 2009-07-03 15:51:00.000000000 +0100 +@@ -15,6 +15,8 @@ + #include "config.h" + #endif + ++#include ++ + #include + + #include +@@ -26,6 +28,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 @@ -8,12 +17,12 @@ + * arithmetic overflow. + */ +#define oversized(x, y) \ -+ ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) ++ ((x) < 0 || (y) < 0 || ((y) != 0 && (x) > INT_MAX / (y))) + value read_png_file_as_rgb24( name ) value name; { -@@ -81,6 +87,9 @@ +@@ -81,6 +89,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -23,7 +32,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -102,6 +111,9 @@ +@@ -102,10 +113,16 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -33,7 +42,14 @@ { int i; png_bytep *row_pointers; -@@ -235,6 +247,9 @@ + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); + + res = alloc_tuple(3); +@@ -235,6 +252,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -43,7 +59,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -251,6 +266,9 @@ +@@ -251,6 +271,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -53,3 +69,13 @@ /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ +@@ -259,6 +282,9 @@ + png_bytep *row_pointers; + char mesg[256]; + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*)stat_alloc(sizeof(png_bytep) * height); + res = alloc_tuple(3); + From rjones at fedoraproject.org Fri Jul 3 18:48:34 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 18:48:34 -0000 Subject: rpms/ocaml-camlimages/F-10 camlimages-oversized-png-check-CVE-2009-2295.patch, 1.1, 1.2 Message-ID: <20090703182918.44D1611C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20504/F-10 Modified Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Updated patch from https://bugzilla.redhat.com/show_bug.cgi?id=509531#c11 camlimages-oversized-png-check-CVE-2009-2295.patch: Index: camlimages-oversized-png-check-CVE-2009-2295.patch =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-10/camlimages-oversized-png-check-CVE-2009-2295.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 13:54:53 -0000 1.1 +++ camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 18:28:48 -0000 1.2 @@ -1,6 +1,15 @@ ---- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 -+++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 -@@ -26,6 +26,12 @@ +--- camlimages-3.0.1.orig/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 ++++ camlimages-3.0.1.oversized/src/pngread.c 2009-07-03 15:51:00.000000000 +0100 +@@ -15,6 +15,8 @@ + #include "config.h" + #endif + ++#include ++ + #include + + #include +@@ -26,6 +28,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 @@ -8,12 +17,12 @@ + * arithmetic overflow. + */ +#define oversized(x, y) \ -+ ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) ++ ((x) < 0 || (y) < 0 || ((y) != 0 && (x) > INT_MAX / (y))) + value read_png_file_as_rgb24( name ) value name; { -@@ -81,6 +87,9 @@ +@@ -81,6 +89,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -23,7 +32,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -102,6 +111,9 @@ +@@ -102,10 +113,16 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -33,7 +42,14 @@ { int i; png_bytep *row_pointers; -@@ -235,6 +247,9 @@ + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); + + res = alloc_tuple(3); +@@ -235,6 +252,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -43,7 +59,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -251,6 +266,9 @@ +@@ -251,6 +271,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -53,3 +69,13 @@ /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ +@@ -259,6 +282,9 @@ + png_bytep *row_pointers; + char mesg[256]; + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*)stat_alloc(sizeof(png_bytep) * height); + res = alloc_tuple(3); + From rjones at fedoraproject.org Fri Jul 3 18:48:36 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 18:48:36 -0000 Subject: rpms/ocaml-camlimages/F-11 camlimages-oversized-png-check-CVE-2009-2295.patch, 1.1, 1.2 Message-ID: <20090703182918.6BBAC11C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20504/F-11 Modified Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Updated patch from https://bugzilla.redhat.com/show_bug.cgi?id=509531#c11 camlimages-oversized-png-check-CVE-2009-2295.patch: Index: camlimages-oversized-png-check-CVE-2009-2295.patch =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-11/camlimages-oversized-png-check-CVE-2009-2295.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 13:52:51 -0000 1.1 +++ camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 18:28:48 -0000 1.2 @@ -1,6 +1,15 @@ ---- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 -+++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 -@@ -26,6 +26,12 @@ +--- camlimages-3.0.1.orig/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 ++++ camlimages-3.0.1.oversized/src/pngread.c 2009-07-03 15:51:00.000000000 +0100 +@@ -15,6 +15,8 @@ + #include "config.h" + #endif + ++#include ++ + #include + + #include +@@ -26,6 +28,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 @@ -8,12 +17,12 @@ + * arithmetic overflow. + */ +#define oversized(x, y) \ -+ ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) ++ ((x) < 0 || (y) < 0 || ((y) != 0 && (x) > INT_MAX / (y))) + value read_png_file_as_rgb24( name ) value name; { -@@ -81,6 +87,9 @@ +@@ -81,6 +89,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -23,7 +32,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -102,6 +111,9 @@ +@@ -102,10 +113,16 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -33,7 +42,14 @@ { int i; png_bytep *row_pointers; -@@ -235,6 +247,9 @@ + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); + + res = alloc_tuple(3); +@@ -235,6 +252,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -43,7 +59,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -251,6 +266,9 @@ +@@ -251,6 +271,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -53,3 +69,13 @@ /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ +@@ -259,6 +282,9 @@ + png_bytep *row_pointers; + char mesg[256]; + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*)stat_alloc(sizeof(png_bytep) * height); + res = alloc_tuple(3); + From rjones at fedoraproject.org Fri Jul 3 19:08:20 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 19:08:20 -0000 Subject: rpms/ocaml-camlimages/devel ocaml-camlimages.spec,1.17,1.18 Message-ID: <20090703183036.3042611C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20807/devel Modified Files: ocaml-camlimages.spec Log Message: Force rebuild with updated patch. Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/devel/ocaml-camlimages.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ocaml-camlimages.spec 3 Jul 2009 13:50:42 -0000 1.17 +++ ocaml-camlimages.spec 3 Jul 2009 18:30:06 -0000 1.18 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -112,7 +112,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-9 +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-10 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). From rjones at fedoraproject.org Fri Jul 3 19:08:20 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 19:08:20 -0000 Subject: rpms/ocaml-camlimages/F-10 ocaml-camlimages.spec,1.11,1.12 Message-ID: <20090703183035.D459711C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20807/F-10 Modified Files: ocaml-camlimages.spec Log Message: Force rebuild with updated patch. Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-10/ocaml-camlimages.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ocaml-camlimages.spec 3 Jul 2009 13:54:53 -0000 1.11 +++ ocaml-camlimages.spec 3 Jul 2009 18:30:05 -0000 1.12 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 3%{?dist}.1 +Release: 3%{?dist}.2 Summary: OCaml image processing library Group: Development/Libraries @@ -111,7 +111,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-3.fc10.1 +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-3.fc10.2 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). From rjones at fedoraproject.org Fri Jul 3 19:08:21 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 03 Jul 2009 19:08:21 -0000 Subject: rpms/ocaml-camlimages/F-11 ocaml-camlimages.spec,1.15,1.16 Message-ID: <20090703183036.0AAEE11C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20807/F-11 Modified Files: ocaml-camlimages.spec Log Message: Force rebuild with updated patch. Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-11/ocaml-camlimages.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ocaml-camlimages.spec 3 Jul 2009 13:52:51 -0000 1.15 +++ ocaml-camlimages.spec 3 Jul 2009 18:30:05 -0000 1.16 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 7%{?dist}.1 +Release: 7%{?dist}.2 Summary: OCaml image processing library Group: Development/Libraries @@ -111,7 +111,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-7.fc11.1 +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-7.fc11.2 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). From rjones at fedoraproject.org Fri Jul 10 13:58:49 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 13:58:49 -0000 Subject: rpms/virt-df/F-11 dead.package, NONE, 1.1 Makefile, 1.1, NONE branch, 1.1, NONE import.log, 1.1, NONE sources, 1.7, NONE virt-df-2.1.4-bogus-zh_CN-plurals.patch, 1.1, NONE virt-df-2.1.4-camlp4-parse.patch, 1.1, NONE virt-df.spec, 1.10, NONE Message-ID: <20090710135841.073D611C0048@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/virt-df/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19734/F-11 Added Files: dead.package Removed Files: Makefile branch import.log sources virt-df-2.1.4-bogus-zh_CN-plurals.patch virt-df-2.1.4-camlp4-parse.patch virt-df.spec Log Message: In Fedora 11 and above, virt-df package has been rewritten using libguestfs, and is now built as a subpackage of libguestfs. --- NEW FILE dead.package --- In Fedora 11 and above, this package has been rewritten using libguestfs, and is now built as a subpackage of libguestfs. --- Makefile DELETED --- --- branch DELETED --- --- import.log DELETED --- --- sources DELETED --- --- virt-df-2.1.4-bogus-zh_CN-plurals.patch DELETED --- --- virt-df-2.1.4-camlp4-parse.patch DELETED --- --- virt-df.spec DELETED --- From rjones at fedoraproject.org Fri Jul 10 13:58:50 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 13:58:50 -0000 Subject: rpms/virt-df/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE import.log, 1.1, NONE sources, 1.7, NONE virt-df-2.1.4-bogus-zh_CN-plurals.patch, 1.1, NONE virt-df-2.1.4-camlp4-parse.patch, 1.1, NONE virt-df.spec, 1.11, NONE Message-ID: <20090710135841.6867411C0048@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/virt-df/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19734/devel Added Files: dead.package Removed Files: Makefile import.log sources virt-df-2.1.4-bogus-zh_CN-plurals.patch virt-df-2.1.4-camlp4-parse.patch virt-df.spec Log Message: In Fedora 11 and above, virt-df package has been rewritten using libguestfs, and is now built as a subpackage of libguestfs. --- NEW FILE dead.package --- In Fedora 11 and above, this package has been rewritten using libguestfs, and is now built as a subpackage of libguestfs. --- Makefile DELETED --- --- import.log DELETED --- --- sources DELETED --- --- virt-df-2.1.4-bogus-zh_CN-plurals.patch DELETED --- --- virt-df-2.1.4-camlp4-parse.patch DELETED --- --- virt-df.spec DELETED --- From rjones at fedoraproject.org Wed Jul 15 08:19:38 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 08:19:38 -0000 Subject: rpms/ocaml-libvirt/devel ocaml-libvirt.spec,1.31,1.32 Message-ID: <20090715081933.5B41311C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22733 Modified Files: ocaml-libvirt.spec Log Message: Force rebuild. Index: ocaml-libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-libvirt/devel/ocaml-libvirt.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- ocaml-libvirt.spec 12 Jun 2009 10:22:38 -0000 1.31 +++ ocaml-libvirt.spec 15 Jul 2009 08:19:03 -0000 1.32 @@ -6,7 +6,7 @@ Name: ocaml-libvirt Version: 0.6.1.0 -Release: 3%{?dist} +Release: 5%{?dist} Summary: OCaml binding for libvirt Group: Development/Libraries @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Richard W.M. Jones - 0.6.1.0-5 +- Force rebuild to test FTBFS issue. + * Fri Jun 12 2009 Richard W.M. Jones - 0.6.1.0-3 - Force rebuild to test FTBFS issue. From jkeating at fedoraproject.org Fri Jul 24 22:04:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:04:20 -0000 Subject: rpms/emacs-common-tuareg/devel emacs-common-tuareg.spec,1.6,1.7 Message-ID: <20090724220407.9DB9A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-common-tuareg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17134 Modified Files: emacs-common-tuareg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-common-tuareg.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-tuareg/devel/emacs-common-tuareg.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- emacs-common-tuareg.spec 24 Feb 2009 14:42:02 -0000 1.6 +++ emacs-common-tuareg.spec 24 Jul 2009 22:04:07 -0000 1.7 @@ -30,7 +30,7 @@ Name: emacs-common-%{pkg} Version: 1.45.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Emacs and XEmacs mode for editing ocaml Group: Development/Libraries @@ -173,6 +173,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.45.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.45.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:37:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:37:39 -0000 Subject: rpms/mldonkey/devel mldonkey.spec,1.6,1.7 Message-ID: <20090725143723.C188911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mldonkey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13813 Modified Files: mldonkey.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mldonkey.spec =================================================================== RCS file: /cvs/pkgs/rpms/mldonkey/devel/mldonkey.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mldonkey.spec 14 Mar 2009 08:10:19 -0000 1.6 +++ mldonkey.spec 25 Jul 2009 14:37:22 -0000 1.7 @@ -1,6 +1,6 @@ Name: mldonkey Version: 3.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Client for several P2P networks License: GPLv2+ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 @@ -319,6 +319,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 14 2009 Peter Lemenkov 3.0.0-1 - Ver. 3.0.0 - Dropped patch1 From jkeating at fedoraproject.org Sat Jul 25 19:49:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:49:31 -0000 Subject: rpms/ocaml/devel ocaml.spec,1.56,1.57 Message-ID: <20090725194920.3269111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2562 Modified Files: ocaml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml/devel/ocaml.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- ocaml.spec 3 Jun 2009 18:20:32 -0000 1.56 +++ ocaml.spec 25 Jul 2009 19:49:19 -0000 1.57 @@ -2,7 +2,7 @@ Name: ocaml Version: 3.11.1 -Release: 0.rc1.2%{?dist} +Release: 0.rc1.2%{?dist}.1 Summary: Objective Caml compiler and programming environment @@ -434,6 +434,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.11.1-0.rc1.2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Richard W.M. Jones - 3.11.1-0.rc1.2 - Remember to upload the source this time. From jkeating at fedoraproject.org Sat Jul 25 19:50:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:50:00 -0000 Subject: rpms/ocaml-SDL/devel ocaml-SDL.spec,1.17,1.18 Message-ID: <20090725194945.DCA9711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-SDL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2822 Modified Files: ocaml-SDL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-SDL.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-SDL/devel/ocaml-SDL.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ocaml-SDL.spec 23 May 2009 07:37:44 -0000 1.17 +++ ocaml-SDL.spec 25 Jul 2009 19:49:45 -0000 1.18 @@ -3,7 +3,7 @@ Name: ocaml-SDL Version: 0.7.2 -Release: 19%{?dist} +Release: 20%{?dist} Summary: OCaml bindings for SDL Group: Development/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.2-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.7.2-19 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:50:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:50:51 -0000 Subject: rpms/ocaml-augeas/devel ocaml-augeas.spec,1.6,1.7 Message-ID: <20090725195026.7153E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-augeas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3296 Modified Files: ocaml-augeas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-augeas/devel/ocaml-augeas.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ocaml-augeas.spec 23 May 2009 08:57:01 -0000 1.6 +++ ocaml-augeas.spec 25 Jul 2009 19:50:26 -0000 1.7 @@ -3,7 +3,7 @@ Name: ocaml-augeas Version: 0.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml bindings for Augeas configuration API Group: Development/Libraries @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.4-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:51:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:51:20 -0000 Subject: rpms/ocaml-bisect/devel ocaml-bisect.spec,1.6,1.7 Message-ID: <20090725195106.E88B411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-bisect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3881 Modified Files: ocaml-bisect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-bisect.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-bisect/devel/ocaml-bisect.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ocaml-bisect.spec 23 May 2009 08:53:49 -0000 1.6 +++ ocaml-bisect.spec 25 Jul 2009 19:51:06 -0000 1.7 @@ -6,7 +6,7 @@ Name: ocaml-bisect Version: %{mainversion} -Release: 0.5.%{subversion}%{?dist} +Release: 0.6.%{subversion}%{?dist} Summary: OCaml code coverage tool Group: Development/Libraries @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-0.6.alpha +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0-0.5.alpha - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:51:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:51:51 -0000 Subject: rpms/ocaml-bitstring/devel ocaml-bitstring.spec,1.12,1.13 Message-ID: <20090725195127.E8E8411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-bitstring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4126 Modified Files: ocaml-bitstring.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-bitstring.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-bitstring/devel/ocaml-bitstring.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-bitstring.spec 23 May 2009 08:52:19 -0000 1.12 +++ ocaml-bitstring.spec 25 Jul 2009 19:51:27 -0000 1.13 @@ -6,7 +6,7 @@ Name: ocaml-bitstring Version: 2.0.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for matching and constructing bitstrings Group: Development/Libraries @@ -185,6 +185,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.0.0-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:52:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:52:02 -0000 Subject: rpms/ocaml-cairo/devel ocaml-cairo.spec,1.11,1.12 Message-ID: <20090725195149.83DD511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-cairo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4422 Modified Files: ocaml-cairo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-cairo.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-cairo/devel/ocaml-cairo.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ocaml-cairo.spec 23 May 2009 09:05:28 -0000 1.11 +++ ocaml-cairo.spec 25 Jul 2009 19:51:49 -0000 1.12 @@ -13,7 +13,7 @@ Name: ocaml-cairo Version: 1.2.0.cvs20080301 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for accessing cairo graphics Group: Development/Libraries @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.0.cvs20080301-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.2.0.cvs20080301-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:52:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:52:19 -0000 Subject: rpms/ocaml-calendar/devel ocaml-calendar.spec,1.14,1.15 Message-ID: <20090725195204.E883A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-calendar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4661 Modified Files: ocaml-calendar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-calendar.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-calendar/devel/ocaml-calendar.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ocaml-calendar.spec 23 May 2009 09:10:27 -0000 1.14 +++ ocaml-calendar.spec 25 Jul 2009 19:52:04 -0000 1.15 @@ -3,7 +3,7 @@ Name: ocaml-calendar Version: 2.0.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Objective Caml library for managing dates and times Group: Development/Libraries @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.0.4-6 - Calendar has a new upstream URL. From jkeating at fedoraproject.org Sat Jul 25 19:52:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:52:33 -0000 Subject: rpms/ocaml-camlidl/devel ocaml-camlidl.spec,1.8,1.9 Message-ID: <20090725195219.D5CBC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-camlidl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4823 Modified Files: ocaml-camlidl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-camlidl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlidl/devel/ocaml-camlidl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-camlidl.spec 23 May 2009 07:31:35 -0000 1.8 +++ ocaml-camlidl.spec 25 Jul 2009 19:52:19 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-camlidl Version: 1.05 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Stub code generator and COM binding for Objective Caml Group: Development/Libraries @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.05-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.05-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:52:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:52:49 -0000 Subject: rpms/ocaml-camlimages/devel ocaml-camlimages.spec,1.18,1.19 Message-ID: <20090725195236.4101B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-camlimages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5009 Modified Files: ocaml-camlimages.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/devel/ocaml-camlimages.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ocaml-camlimages.spec 3 Jul 2009 18:30:06 -0000 1.18 +++ ocaml-camlimages.spec 25 Jul 2009 19:52:35 -0000 1.19 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-10 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). From jkeating at fedoraproject.org Sat Jul 25 19:53:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:53:05 -0000 Subject: rpms/ocaml-camlp5/devel ocaml-camlp5.spec,1.10,1.11 Message-ID: <20090725195251.7011711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-camlp5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5199 Modified Files: ocaml-camlp5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-camlp5.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlp5/devel/ocaml-camlp5.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-camlp5.spec 23 May 2009 11:44:56 -0000 1.10 +++ ocaml-camlp5.spec 25 Jul 2009 19:52:51 -0000 1.11 @@ -3,7 +3,7 @@ Name: ocaml-camlp5 Version: 5.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Classical version of camlp4 OCaml preprocessor Group: Development/Libraries @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 5.12-1 - New upstream version 5.12, excepted to fix 3.11.1 build problems. From jkeating at fedoraproject.org Sat Jul 25 19:53:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:53:12 -0000 Subject: rpms/ocaml-camomile/devel ocaml-camomile.spec,1.8,1.9 Message-ID: <20090725195306.729A211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-camomile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5383 Modified Files: ocaml-camomile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-camomile.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camomile/devel/ocaml-camomile.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-camomile.spec 23 May 2009 08:47:26 -0000 1.8 +++ ocaml-camomile.spec 25 Jul 2009 19:53:06 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-camomile Version: 0.7.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Unicode library for OCaml Group: Development/Libraries @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.7.1-11 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:53:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:53:39 -0000 Subject: rpms/ocaml-cil/devel ocaml-cil.spec,1.10,1.11 Message-ID: <20090725195325.86C5511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-cil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5606 Modified Files: ocaml-cil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-cil.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-cil/devel/ocaml-cil.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-cil.spec 26 May 2009 14:50:04 -0000 1.10 +++ ocaml-cil.spec 25 Jul 2009 19:53:25 -0000 1.11 @@ -6,7 +6,7 @@ Name: ocaml-cil Version: 1.3.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: CIL - Infrastructure for C Program Analysis and Transformation Group: Development/Libraries @@ -195,6 +195,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Richard W.M. Jones - 1.3.7-1 - New upstream version 1.3.7. - Rebuild for OCaml 3.11.1. From jkeating at fedoraproject.org Sat Jul 25 19:54:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:54:07 -0000 Subject: rpms/ocaml-cmigrep/devel ocaml-cmigrep.spec,1.12,1.13 Message-ID: <20090725195353.A2F8711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-cmigrep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5924 Modified Files: ocaml-cmigrep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-cmigrep.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-cmigrep/devel/ocaml-cmigrep.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-cmigrep.spec 23 May 2009 11:24:22 -0000 1.12 +++ ocaml-cmigrep.spec 25 Jul 2009 19:53:53 -0000 1.13 @@ -8,7 +8,7 @@ Name: ocaml-cmigrep Version: 1.5 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Search OCaml compiled interface (cmi) files Group: Development/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.5-12 - Rebuild for OCaml 3.11.1+rc0. From jkeating at fedoraproject.org Sat Jul 25 19:54:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:54:42 -0000 Subject: rpms/ocaml-csv/devel ocaml-csv.spec,1.12,1.13 Message-ID: <20090725195428.DD24211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-csv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6332 Modified Files: ocaml-csv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-csv.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-csv/devel/ocaml-csv.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-csv.spec 23 May 2009 11:21:19 -0000 1.12 +++ ocaml-csv.spec 25 Jul 2009 19:54:28 -0000 1.13 @@ -3,7 +3,7 @@ Name: ocaml-csv Version: 1.1.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml library for reading and writing CSV files Group: Development/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.1.7-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:55:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:55:05 -0000 Subject: rpms/ocaml-curl/devel ocaml-curl.spec,1.13,1.14 Message-ID: <20090725195446.851EB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6659 Modified Files: ocaml-curl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-curl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-curl/devel/ocaml-curl.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ocaml-curl.spec 23 May 2009 08:46:41 -0000 1.13 +++ ocaml-curl.spec 25 Jul 2009 19:54:46 -0000 1.14 @@ -3,7 +3,7 @@ Name: ocaml-curl Version: 0.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OCaml Curl library (ocurl) Group: Development/Libraries @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.5.1-1 - New upstream version 0.5.1. - Rebuild for OCaml 3.11.1. From jkeating at fedoraproject.org Sat Jul 25 19:55:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:55:17 -0000 Subject: rpms/ocaml-curses/devel ocaml-curses.spec,1.12,1.13 Message-ID: <20090725195504.3C21B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-curses/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7271 Modified Files: ocaml-curses.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-curses.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-curses/devel/ocaml-curses.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-curses.spec 23 May 2009 08:43:32 -0000 1.12 +++ ocaml-curses.spec 25 Jul 2009 19:55:04 -0000 1.13 @@ -3,7 +3,7 @@ Name: ocaml-curses Version: 1.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml bindings for ncurses Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0.3-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:55:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:55:34 -0000 Subject: rpms/ocaml-dbus/devel ocaml-dbus.spec,1.12,1.13 Message-ID: <20090725195520.ADFE811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-dbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7713 Modified Files: ocaml-dbus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-dbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-dbus/devel/ocaml-dbus.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-dbus.spec 23 May 2009 08:41:57 -0000 1.12 +++ ocaml-dbus.spec 25 Jul 2009 19:55:20 -0000 1.13 @@ -3,7 +3,7 @@ Name: ocaml-dbus Version: 0.07 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml library for using D-Bus Group: Development/Libraries @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.07-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:56:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:56:01 -0000 Subject: rpms/ocaml-deriving/devel ocaml-deriving.spec,1.7,1.8 Message-ID: <20090725195541.7E1A911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-deriving/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7923 Modified Files: ocaml-deriving.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-deriving.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-deriving/devel/ocaml-deriving.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-deriving.spec 23 May 2009 08:39:12 -0000 1.7 +++ ocaml-deriving.spec 25 Jul 2009 19:55:41 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-deriving Version: 0.1.1a -Release: 8%{?dist} +Release: 9%{?dist} Summary: Extension to OCaml for deriving functions from types Group: Development/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1a-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.1.1a-8 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:56:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:56:15 -0000 Subject: rpms/ocaml-expat/devel ocaml-expat.spec,1.14,1.15 Message-ID: <20090725195559.7EC0D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-expat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8148 Modified Files: ocaml-expat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-expat.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-expat/devel/ocaml-expat.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ocaml-expat.spec 23 May 2009 08:37:43 -0000 1.14 +++ ocaml-expat.spec 25 Jul 2009 19:55:59 -0000 1.15 @@ -3,7 +3,7 @@ Name: ocaml-expat Version: 0.9.1 -Release: 16%{?dist} +Release: 17%{?dist} Summary: OCaml wrapper for the Expat XML parsing library Group: Development/Libraries @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.9.1-16 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:56:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:56:29 -0000 Subject: rpms/ocaml-extlib/devel ocaml-extlib.spec,1.11,1.12 Message-ID: <20090725195614.4E94211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-extlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8338 Modified Files: ocaml-extlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-extlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-extlib/devel/ocaml-extlib.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ocaml-extlib.spec 23 May 2009 08:36:27 -0000 1.11 +++ ocaml-extlib.spec 25 Jul 2009 19:56:14 -0000 1.12 @@ -3,7 +3,7 @@ Name: ocaml-extlib Version: 1.5.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: OCaml ExtLib additions to the standard library Group: Development/Libraries @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/ocaml/extlib/*.ml %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.5.1-7 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:56:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:56:42 -0000 Subject: rpms/ocaml-facile/devel ocaml-facile.spec,1.10,1.11 Message-ID: <20090725195628.1C1D411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-facile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8509 Modified Files: ocaml-facile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-facile.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-facile/devel/ocaml-facile.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-facile.spec 22 May 2009 23:43:58 -0000 1.10 +++ ocaml-facile.spec 25 Jul 2009 19:56:27 -0000 1.11 @@ -9,7 +9,7 @@ ExcludeArch: ppc64 Name: ocaml-facile Version: 1.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for constraint programming Summary(fr): Librairie OCaml de programmation par contraintes @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/ocaml/facile/*.mli %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Kevin Kofler - 1.1-9 - Rebuild for new OCaml (3.11.1 rc0) From jkeating at fedoraproject.org Sat Jul 25 19:56:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:56:58 -0000 Subject: rpms/ocaml-fileutils/devel ocaml-fileutils.spec,1.8,1.9 Message-ID: <20090725195644.F26F911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-fileutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8698 Modified Files: ocaml-fileutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-fileutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-fileutils/devel/ocaml-fileutils.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-fileutils.spec 23 May 2009 08:35:39 -0000 1.8 +++ ocaml-fileutils.spec 25 Jul 2009 19:56:44 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-fileutils Version: 0.3.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: OCaml library for common file and filename operations Group: Development/Libraries @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.3.0-10 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:57:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:57:14 -0000 Subject: rpms/ocaml-findlib/devel ocaml-findlib.spec,1.22,1.23 Message-ID: <20090725195658.D4B4A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-findlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8870 Modified Files: ocaml-findlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-findlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-findlib/devel/ocaml-findlib.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ocaml-findlib.spec 22 May 2009 21:38:33 -0000 1.22 +++ ocaml-findlib.spec 25 Jul 2009 19:56:58 -0000 1.23 @@ -3,7 +3,7 @@ Name: ocaml-findlib Version: 1.2.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Objective CAML package manager and build helper Group: Development/Libraries @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Richard W.M. Jones - 1.2.4-3 - Rebuild for OCaml 3.11.1. - New upstream version 1.2.4. From jkeating at fedoraproject.org Sat Jul 25 19:57:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:57:31 -0000 Subject: rpms/ocaml-gettext/devel ocaml-gettext.spec,1.11,1.12 Message-ID: <20090725195717.C2D5611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-gettext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9050 Modified Files: ocaml-gettext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-gettext.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-gettext/devel/ocaml-gettext.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ocaml-gettext.spec 23 May 2009 11:21:21 -0000 1.11 +++ ocaml-gettext.spec 25 Jul 2009 19:57:17 -0000 1.12 @@ -3,7 +3,7 @@ Name: ocaml-gettext Version: 0.3.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml library for i18n Group: Development/Libraries @@ -221,6 +221,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.3.2-8 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:57:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:57:52 -0000 Subject: rpms/ocaml-gsl/devel ocaml-gsl.spec,1.7,1.8 Message-ID: <20090725195730.A877E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-gsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9207 Modified Files: ocaml-gsl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-gsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-gsl/devel/ocaml-gsl.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-gsl.spec 23 May 2009 08:29:45 -0000 1.7 +++ ocaml-gsl.spec 25 Jul 2009 19:57:30 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-gsl Version: 0.6.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Interface to GSL (GNU scientific library) for OCaml Group: Development/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.6.0-8 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:57:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:57:52 -0000 Subject: rpms/ocaml-json-static/devel ocaml-json-static.spec,1.7,1.8 Message-ID: <20090725195744.9E21511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-json-static/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9365 Modified Files: ocaml-json-static.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-json-static.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-json-static/devel/ocaml-json-static.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-json-static.spec 23 May 2009 08:28:23 -0000 1.7 +++ ocaml-json-static.spec 25 Jul 2009 19:57:44 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-json-static Version: 0.9.6 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml JSON validator and converter (syntax extension) Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.9.6-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:58:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:58:12 -0000 Subject: rpms/ocaml-json-wheel/devel ocaml-json-wheel.spec,1.7,1.8 Message-ID: <20090725195758.5860611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-json-wheel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9529 Modified Files: ocaml-json-wheel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-json-wheel.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-json-wheel/devel/ocaml-json-wheel.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-json-wheel.spec 23 May 2009 11:30:13 -0000 1.7 +++ ocaml-json-wheel.spec 25 Jul 2009 19:57:58 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-json-wheel Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OCaml library for parsing JSON Group: Development/Libraries @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0.6-1 - New upstream version 1.0.6. - Rebuild for OCaml 3.11.1. From jkeating at fedoraproject.org Sat Jul 25 19:58:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:58:32 -0000 Subject: rpms/ocaml-lablgl/devel ocaml-lablgl.spec,1.15,1.16 Message-ID: <20090725195814.5348111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-lablgl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9703 Modified Files: ocaml-lablgl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-lablgl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-lablgl/devel/ocaml-lablgl.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ocaml-lablgl.spec 22 May 2009 21:49:08 -0000 1.15 +++ ocaml-lablgl.spec 25 Jul 2009 19:58:13 -0000 1.16 @@ -2,7 +2,7 @@ Name: ocaml-lablgl Version: 1.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: LablGL is an OpenGL interface for Objective Caml @@ -144,6 +144,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Richard W.M. Jones - 1.04-1 - Rebuild for OCaml 3.11.1. - New upstream version 1.04. From jkeating at fedoraproject.org Sat Jul 25 19:58:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:58:49 -0000 Subject: rpms/ocaml-lablgtk/devel ocaml-lablgtk.spec,1.17,1.18 Message-ID: <20090725195831.A801711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-lablgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9921 Modified Files: ocaml-lablgtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-lablgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-lablgtk/devel/ocaml-lablgtk.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ocaml-lablgtk.spec 23 May 2009 07:31:30 -0000 1.17 +++ ocaml-lablgtk.spec 25 Jul 2009 19:58:30 -0000 1.18 @@ -2,7 +2,7 @@ Name: ocaml-lablgtk Version: 2.12.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Objective Caml interface to gtk+ @@ -156,6 +156,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.12.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.12.0-3 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:59:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:59:03 -0000 Subject: rpms/ocaml-lacaml/devel ocaml-lacaml.spec,1.11,1.12 Message-ID: <20090725195850.3ED8611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-lacaml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10162 Modified Files: ocaml-lacaml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-lacaml.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-lacaml/devel/ocaml-lacaml.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ocaml-lacaml.spec 23 May 2009 08:29:34 -0000 1.11 +++ ocaml-lacaml.spec 25 Jul 2009 19:58:50 -0000 1.12 @@ -3,7 +3,7 @@ Name: ocaml-lacaml Version: 5.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: BLAS/LAPACK-interface for OCaml Group: Development/Libraries @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 5.1.0-1 - Rebuild for OCaml 3.11.1. - New upstream release 5.1.0. From jkeating at fedoraproject.org Sat Jul 25 19:59:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:59:20 -0000 Subject: rpms/ocaml-libvirt/devel ocaml-libvirt.spec,1.32,1.33 Message-ID: <20090725195906.1832111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10379 Modified Files: ocaml-libvirt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-libvirt/devel/ocaml-libvirt.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- ocaml-libvirt.spec 15 Jul 2009 08:19:03 -0000 1.32 +++ ocaml-libvirt.spec 25 Jul 2009 19:59:05 -0000 1.33 @@ -6,7 +6,7 @@ Name: ocaml-libvirt Version: 0.6.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml binding for libvirt Group: Development/Libraries @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Richard W.M. Jones - 0.6.1.0-5 - Force rebuild to test FTBFS issue. From jkeating at fedoraproject.org Sat Jul 25 19:59:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:59:34 -0000 Subject: rpms/ocaml-lwt/devel ocaml-lwt.spec,1.6,1.7 Message-ID: <20090725195921.17D5211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-lwt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10599 Modified Files: ocaml-lwt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-lwt.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-lwt/devel/ocaml-lwt.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ocaml-lwt.spec 23 May 2009 11:07:22 -0000 1.6 +++ ocaml-lwt.spec 25 Jul 2009 19:59:20 -0000 1.7 @@ -3,7 +3,7 @@ Name: ocaml-lwt Version: 1.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml lightweight thread library Group: Development/Libraries @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.1.0-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:59:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:59:42 -0000 Subject: rpms/ocaml-mikmatch/devel ocaml-mikmatch.spec,1.7,1.8 Message-ID: <20090725195936.32A7F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-mikmatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10815 Modified Files: ocaml-mikmatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-mikmatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-mikmatch/devel/ocaml-mikmatch.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-mikmatch.spec 23 May 2009 11:07:25 -0000 1.7 +++ ocaml-mikmatch.spec 25 Jul 2009 19:59:36 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-mikmatch Version: 1.0.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: OCaml extension for pattern matching with regexps Group: Development/Libraries @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0.0-6 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:00:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:00:28 -0000 Subject: rpms/ocaml-mysql/devel ocaml-mysql.spec,1.9,1.10 Message-ID: <20090725200013.F20D611C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-mysql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11280 Modified Files: ocaml-mysql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-mysql/devel/ocaml-mysql.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ocaml-mysql.spec 23 May 2009 08:20:41 -0000 1.9 +++ ocaml-mysql.spec 25 Jul 2009 20:00:13 -0000 1.10 @@ -3,7 +3,7 @@ Name: ocaml-mysql Version: 1.0.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for accessing MySQL databases Group: Development/Libraries @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0.4-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:00:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:00:46 -0000 Subject: rpms/ocaml-newt/devel ocaml-newt.spec,1.7,1.8 Message-ID: <20090725200033.21D1F11C0380@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-newt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11502 Modified Files: ocaml-newt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-newt.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-newt/devel/ocaml-newt.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-newt.spec 23 May 2009 08:58:06 -0000 1.7 +++ ocaml-newt.spec 25 Jul 2009 20:00:32 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-newt Version: 0.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: OCaml library for using newt text mode window system Group: Development/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.9-6 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:01:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:01:22 -0000 Subject: rpms/ocaml-ocamlnet/devel ocaml-ocamlnet.spec,1.14,1.15 Message-ID: <20090725200105.0516E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-ocamlnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11837 Modified Files: ocaml-ocamlnet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-ocamlnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-ocamlnet/devel/ocaml-ocamlnet.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ocaml-ocamlnet.spec 23 May 2009 11:07:23 -0000 1.14 +++ ocaml-ocamlnet.spec 25 Jul 2009 20:01:04 -0000 1.15 @@ -6,7 +6,7 @@ Name: ocaml-ocamlnet Version: 2.2.9 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Network protocols for OCaml Group: Development/Libraries @@ -243,6 +243,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.9-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.2.9-13 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:01:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:01:48 -0000 Subject: rpms/ocaml-omake/devel ocaml-omake.spec,1.8,1.9 Message-ID: <20090725200124.5B01211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-omake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12049 Modified Files: ocaml-omake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-omake.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-omake/devel/ocaml-omake.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-omake.spec 23 May 2009 08:19:54 -0000 1.8 +++ ocaml-omake.spec 25 Jul 2009 20:01:23 -0000 1.9 @@ -2,7 +2,7 @@ Name: ocaml-omake Version: 0.9.8.5 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml build system with automated dependency analysis Group: Development/Tools @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.8.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.9.8.5-8 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:02:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:02:10 -0000 Subject: rpms/ocaml-openin/devel ocaml-openin.spec,1.8,1.9 Message-ID: <20090725200140.0B2B911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-openin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12248 Modified Files: ocaml-openin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-openin.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-openin/devel/ocaml-openin.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-openin.spec 23 May 2009 08:18:55 -0000 1.8 +++ ocaml-openin.spec 25 Jul 2009 20:01:39 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-openin Version: 20070524 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml syntax to locally open modules Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20070524-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 20070524-8 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:02:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:02:15 -0000 Subject: rpms/ocaml-ounit/devel ocaml-ounit.spec,1.7,1.8 Message-ID: <20090725200156.6AC1B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-ounit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12435 Modified Files: ocaml-ounit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-ounit.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-ounit/devel/ocaml-ounit.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-ounit.spec 23 May 2009 08:18:06 -0000 1.7 +++ ocaml-ounit.spec 25 Jul 2009 20:01:56 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-ounit Version: 1.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Unit test framework for OCaml Group: Development/Libraries @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0.3-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:03:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:03:06 -0000 Subject: rpms/ocaml-pa-monad/devel ocaml-pa-monad.spec,1.8,1.9 Message-ID: <20090725200239.014A011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-pa-monad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12909 Modified Files: ocaml-pa-monad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-pa-monad.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pa-monad/devel/ocaml-pa-monad.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-pa-monad.spec 23 May 2009 08:11:50 -0000 1.8 +++ ocaml-pa-monad.spec 25 Jul 2009 20:02:38 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-pa-monad Version: 6.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml syntax extension for monads Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 6.0-2 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:03:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:03:08 -0000 Subject: rpms/ocaml-pcre/devel ocaml-pcre.spec,1.15,1.16 Message-ID: <20090725200253.065B411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-pcre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13071 Modified Files: ocaml-pcre.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-pcre.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pcre/devel/ocaml-pcre.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ocaml-pcre.spec 23 May 2009 08:11:09 -0000 1.15 +++ ocaml-pcre.spec 25 Jul 2009 20:02:52 -0000 1.16 @@ -3,7 +3,7 @@ Name: ocaml-pcre Version: 6.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl compatibility regular expressions (PCRE) for OCaml Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Sat Jul 25 20:03:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:03:21 -0000 Subject: rpms/ocaml-perl4caml/devel ocaml-perl4caml.spec,1.10,1.11 Message-ID: <20090725200308.251BC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-perl4caml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13235 Modified Files: ocaml-perl4caml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-perl4caml.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-perl4caml/devel/ocaml-perl4caml.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-perl4caml.spec 23 May 2009 07:23:21 -0000 1.10 +++ ocaml-perl4caml.spec 25 Jul 2009 20:03:07 -0000 1.11 @@ -3,7 +3,7 @@ Name: ocaml-perl4caml Version: 0.9.5 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for calling Perl libraries and code Group: Development/Libraries @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.9.5-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:03:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:03:35 -0000 Subject: rpms/ocaml-pgocaml/devel ocaml-pgocaml.spec,1.9,1.10 Message-ID: <20090725200321.E441A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-pgocaml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13378 Modified Files: ocaml-pgocaml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-pgocaml.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pgocaml/devel/ocaml-pgocaml.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ocaml-pgocaml.spec 23 May 2009 13:59:03 -0000 1.9 +++ ocaml-pgocaml.spec 25 Jul 2009 20:03:21 -0000 1.10 @@ -3,7 +3,7 @@ Name: ocaml-pgocaml Version: 1.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for type-safe access to PostgreSQL databases Group: Development/Libraries @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.1-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:03:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:03:52 -0000 Subject: rpms/ocaml-postgresql/devel ocaml-postgresql.spec,1.15,1.16 Message-ID: <20090725200337.8929911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-postgresql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13533 Modified Files: ocaml-postgresql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-postgresql.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-postgresql/devel/ocaml-postgresql.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ocaml-postgresql.spec 23 May 2009 08:12:43 -0000 1.15 +++ ocaml-postgresql.spec 25 Jul 2009 20:03:37 -0000 1.16 @@ -3,7 +3,7 @@ Name: ocaml-postgresql Version: 1.11.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OCaml library for accessing PostgreSQL databases Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.11.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.11.1-2 - Rebuild for OCaml 3.11.1 - New upstream version 1.11.1. From jkeating at fedoraproject.org Sat Jul 25 20:04:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:04:05 -0000 Subject: rpms/ocaml-preludeml/devel ocaml-preludeml.spec,1.4,1.5 Message-ID: <20090725200351.B3C3C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-preludeml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13686 Modified Files: ocaml-preludeml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-preludeml.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-preludeml/devel/ocaml-preludeml.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ocaml-preludeml.spec 23 May 2009 11:31:22 -0000 1.4 +++ ocaml-preludeml.spec 25 Jul 2009 20:03:51 -0000 1.5 @@ -8,7 +8,7 @@ Name: ocaml-preludeml Version: 0.1 -Release: 0.12.%{gitdate}%{?dist} +Release: 0.13.%{gitdate}%{?dist} Summary: OCaml utility functions Group: Development/Libraries @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1-0.13.20090113 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.1-0.12.20090113 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:04:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:04:13 -0000 Subject: rpms/ocaml-pxp/devel ocaml-pxp.spec,1.10,1.11 Message-ID: <20090725200406.8725011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-pxp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13844 Modified Files: ocaml-pxp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-pxp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pxp/devel/ocaml-pxp.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-pxp.spec 23 May 2009 11:33:44 -0000 1.10 +++ ocaml-pxp.spec 25 Jul 2009 20:04:06 -0000 1.11 @@ -2,7 +2,7 @@ Name: ocaml-pxp Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Validating XML parser Group: Development/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.2.1-1 - New upstream version 1.2.1. - Rebuild for OCaml 3.11.1. From jkeating at fedoraproject.org Sat Jul 25 20:04:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:04:35 -0000 Subject: rpms/ocaml-reins/devel ocaml-reins.spec,1.5,1.6 Message-ID: <20090725200421.2FEED11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-reins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14002 Modified Files: ocaml-reins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-reins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-reins/devel/ocaml-reins.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ocaml-reins.spec 23 May 2009 11:19:19 -0000 1.5 +++ ocaml-reins.spec 25 Jul 2009 20:04:20 -0000 1.6 @@ -3,7 +3,7 @@ Name: ocaml-reins Version: 0.1a -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library of OCaml persistent data structures Group: Development/Libraries @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1a-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.1a-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:04:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:04:51 -0000 Subject: rpms/ocaml-res/devel ocaml-res.spec,1.9,1.10 Message-ID: <20090725200438.496DA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-res/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14171 Modified Files: ocaml-res.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-res.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-res/devel/ocaml-res.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ocaml-res.spec 23 May 2009 08:09:18 -0000 1.9 +++ ocaml-res.spec 25 Jul 2009 20:04:38 -0000 1.10 @@ -3,7 +3,7 @@ Name: ocaml-res Version: 3.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: OCaml library for resizing arrays and strings Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 3.1.1-3 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:05:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:05:07 -0000 Subject: rpms/ocaml-sexplib/devel ocaml-sexplib.spec,1.10,1.11 Message-ID: <20090725200453.50EB811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-sexplib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14336 Modified Files: ocaml-sexplib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-sexplib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-sexplib/devel/ocaml-sexplib.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-sexplib.spec 12 Jun 2009 10:10:27 -0000 1.10 +++ ocaml-sexplib.spec 25 Jul 2009 20:04:53 -0000 1.11 @@ -3,7 +3,7 @@ Name: ocaml-sexplib Version: 4.2.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml library for converting OCaml values to S-expressions Group: Development/Libraries @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.2.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Richard W.M. Jones - 4.2.10-2 - Rebuild to try to fix rpmdepsize FTBFS problem. From jkeating at fedoraproject.org Sat Jul 25 20:05:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:05:14 -0000 Subject: rpms/ocaml-sqlite/devel ocaml-sqlite.spec,1.13,1.14 Message-ID: <20090725200508.3FFD711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-sqlite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14508 Modified Files: ocaml-sqlite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-sqlite.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-sqlite/devel/ocaml-sqlite.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ocaml-sqlite.spec 23 May 2009 08:05:16 -0000 1.13 +++ ocaml-sqlite.spec 25 Jul 2009 20:05:07 -0000 1.14 @@ -3,7 +3,7 @@ Name: ocaml-sqlite Version: 1.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OCaml library for accessing SQLite3 databases Group: Development/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.5.0-1 - Rebuild for OCaml 3.11.1 - New upstream version 1.5.0. From jkeating at fedoraproject.org Sat Jul 25 20:05:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:05:38 -0000 Subject: rpms/ocaml-ssl/devel ocaml-ssl.spec,1.15,1.16 Message-ID: <20090725200523.0A1CE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-ssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14638 Modified Files: ocaml-ssl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-ssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-ssl/devel/ocaml-ssl.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ocaml-ssl.spec 23 May 2009 07:49:59 -0000 1.15 +++ ocaml-ssl.spec 25 Jul 2009 20:05:22 -0000 1.16 @@ -3,7 +3,7 @@ Name: ocaml-ssl Version: 0.4.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SSL bindings for OCaml Group: Development/Libraries @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.4.3-3 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:05:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:05:58 -0000 Subject: rpms/ocaml-type-conv/devel ocaml-type-conv.spec,1.13,1.14 Message-ID: <20090725200538.4DDF311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-type-conv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14768 Modified Files: ocaml-type-conv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-type-conv.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-type-conv/devel/ocaml-type-conv.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ocaml-type-conv.spec 23 May 2009 07:47:18 -0000 1.13 +++ ocaml-type-conv.spec 25 Jul 2009 20:05:38 -0000 1.14 @@ -3,7 +3,7 @@ Name: ocaml-type-conv Version: 1.6.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml base library for type conversion Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.6.7-2 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:06:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:06:07 -0000 Subject: rpms/ocaml-ulex/devel ocaml-ulex.spec,1.16,1.17 Message-ID: <20090725200553.1F9D411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-ulex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14903 Modified Files: ocaml-ulex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-ulex.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-ulex/devel/ocaml-ulex.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ocaml-ulex.spec 23 May 2009 07:45:52 -0000 1.16 +++ ocaml-ulex.spec 25 Jul 2009 20:05:53 -0000 1.17 @@ -3,7 +3,7 @@ Name: ocaml-ulex Version: 1.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: OCaml lexer generator for Unicode Group: Development/Libraries @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.1-7 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:06:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:06:27 -0000 Subject: rpms/ocaml-xml-light/devel ocaml-xml-light.spec,1.12,1.13 Message-ID: <20090725200614.2428511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-xml-light/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15089 Modified Files: ocaml-xml-light.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-xml-light.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-xml-light/devel/ocaml-xml-light.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-xml-light.spec 23 May 2009 07:45:16 -0000 1.12 +++ ocaml-xml-light.spec 25 Jul 2009 20:06:13 -0000 1.13 @@ -3,7 +3,7 @@ Name: ocaml-xml-light Version: 2.2.cvs20070817 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Minimal XML parser and printer for OCaml Group: Development/Libraries @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.cvs20070817-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.2.cvs20070817-12 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:06:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:06:43 -0000 Subject: rpms/ocaml-xmlrpc-light/devel ocaml-xmlrpc-light.spec,1.8,1.9 Message-ID: <20090725200630.2951C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-xmlrpc-light/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15312 Modified Files: ocaml-xmlrpc-light.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-xmlrpc-light.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-xmlrpc-light/devel/ocaml-xmlrpc-light.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-xmlrpc-light.spec 23 May 2009 11:32:02 -0000 1.8 +++ ocaml-xmlrpc-light.spec 25 Jul 2009 20:06:30 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-xmlrpc-light Version: 0.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml library for writing XML-RPC clients and servers Group: Development/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.6.1-2 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:06:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:06:58 -0000 Subject: rpms/ocaml-zip/devel ocaml-zip.spec,1.10,1.11 Message-ID: <20090725200645.234BD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-zip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15514 Modified Files: ocaml-zip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-zip.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-zip/devel/ocaml-zip.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-zip.spec 23 May 2009 07:41:34 -0000 1.10 +++ ocaml-zip.spec 25 Jul 2009 20:06:45 -0000 1.11 @@ -3,7 +3,7 @@ Name: ocaml-zip Version: 1.04 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml library for reading and writing zip, jar and gzip files Group: Development/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.04-2 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:07:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:07:22 -0000 Subject: rpms/ocamldsort/devel ocamldsort.spec,1.6,1.7 Message-ID: <20090725200700.1858A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocamldsort/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15656 Modified Files: ocamldsort.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocamldsort.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocamldsort/devel/ocamldsort.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ocamldsort.spec 23 May 2009 07:38:40 -0000 1.6 +++ ocamldsort.spec 25 Jul 2009 20:06:59 -0000 1.7 @@ -3,7 +3,7 @@ Name: ocamldsort Version: 0.14.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Dependency sorter for OCaml source files Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.14.4-6 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Mon Jul 27 06:54:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:54:52 -0000 Subject: rpms/virt-ctrl/devel virt-ctrl.spec,1.4,1.5 Message-ID: <20090727065434.6DEF511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/virt-ctrl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30985 Modified Files: virt-ctrl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: virt-ctrl.spec =================================================================== RCS file: /cvs/pkgs/rpms/virt-ctrl/devel/virt-ctrl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- virt-ctrl.spec 16 Apr 2009 09:26:13 -0000 1.4 +++ virt-ctrl.spec 27 Jul 2009 06:54:34 -0000 1.5 @@ -3,7 +3,7 @@ Name: virt-ctrl Version: 1.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Graphical management app for virtual machines Group: Development/Libraries @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Mon Jul 27 06:55:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:55:47 -0000 Subject: rpms/virt-top/devel virt-top.spec,1.6,1.7 Message-ID: <20090727065536.581FF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/virt-top/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31478 Modified Files: virt-top.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: virt-top.spec =================================================================== RCS file: /cvs/pkgs/rpms/virt-top/devel/virt-top.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- virt-top.spec 16 Apr 2009 09:26:14 -0000 1.6 +++ virt-top.spec 27 Jul 2009 06:55:36 -0000 1.7 @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Utility like top(1) for displaying virtualization stats Group: Development/Libraries @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From rjones at fedoraproject.org Mon Jul 27 13:19:14 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Mon, 27 Jul 2009 13:19:14 -0000 Subject: rpms/ocaml-lablgl/EL-5 ocaml-lablgl.spec,1.3,1.4 Message-ID: <20090727131902.79D8211C00E8@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-lablgl/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31830 Modified Files: ocaml-lablgl.spec Log Message: +- Remove runtime requires for ocaml-labltk-devel and replace with labtk + which is the old/obsolete name still used in EL-5 branch. Index: ocaml-lablgl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-lablgl/EL-5/ocaml-lablgl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ocaml-lablgl.spec 29 Mar 2009 07:55:55 -0000 1.3 +++ ocaml-lablgl.spec 27 Jul 2009 13:19:02 -0000 1.4 @@ -2,7 +2,7 @@ Name: ocaml-lablgl Version: 1.03 -Release: 7%{?dist} +Release: 8%{?dist} Summary: LablGL is an OpenGL interface for Objective Caml @@ -39,7 +39,7 @@ extension, or with open-source Mesa. Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: ocaml-labltk-devel +Requires: labltk %description devel The %{name}-devel package contains libraries and signature files for @@ -142,6 +142,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Richard W.M. Jones - 1.03-8 +- Remove runtime requires for ocaml-labltk-devel and replace with labtk + which is the old/obsolete name still used in EL-5 branch. + * Wed Feb 25 2009 Fedora Release Engineering - 1.03-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild