rpms/qof/FC-4 qof-gnc-date-char.patch, NONE, 1.1 qof-x86_64.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 qof.spec, 1.10, 1.11 sources, 1.3, 1.4 qof-0.6.1-build.patch, 1.1, NONE qof-dependencies.patch, 1.1, NONE
by fedora-extras-commits@redhat.com
Author: toshio
Update of /cvs/extras/rpms/qof/FC-4
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv4985
Modified Files:
.cvsignore qof.spec sources
Added Files:
qof-gnc-date-char.patch qof-x86_64.patch
Removed Files:
qof-0.6.1-build.patch qof-dependencies.patch
Log Message:
* Sync with devel. This updates to qof-0.6.4
qof-gnc-date-char.patch:
--- NEW FILE qof-gnc-date-char.patch ---
--- qof-0.6.4/qof/gnc-date.c.char 2006-04-30 10:08:44.000000000 -0700
+++ qof-0.6.4/qof/gnc-date.c 2006-04-30 10:09:38.000000000 -0700
@@ -1060,7 +1060,7 @@
str +=3;
if ('.' == *str) str++;
- if (isdigit ((unsigned char)*str) && isdigit ((unsigned char)*(str+1)))
+ if (isdigit ((char)*str) && isdigit ((char)*(str+1)))
{
int cyn;
/* copy sign from hour part */
qof-x86_64.patch:
--- NEW FILE qof-x86_64.patch ---
Index: qof-0.6.4/qof/test/test-date.c
===================================================================
--- qof-0.6.4.orig/qof/test/test-date.c
+++ qof-0.6.4/qof/test/test-date.c
@@ -93,8 +93,8 @@ check_conversion (const char * str, Time
if ((expected_ts.tv_sec != ts.tv_sec) || (expected_ts.tv_nsec != ts.tv_nsec))
{
fprintf (stderr,
- "\nmis-converted \"%s\" to %lld.%09ld seconds\n"
- "\twas expecting %lld.%09ld seconds\n",
+ "\nmis-converted \"%s\" to %" G_GUINT64_FORMAT ".%09ld seconds\n"
+ "\twas expecting %" G_GUINT64_FORMAT ".%09ld seconds\n",
str, ts.tv_sec, ts.tv_nsec,
expected_ts.tv_sec, expected_ts.tv_nsec);
failure ("misconverted timespec");
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/qof/FC-4/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 15 Jan 2006 18:40:10 -0000 1.3
+++ .cvsignore 1 May 2006 01:17:17 -0000 1.4
@@ -1 +1 @@
-qof-0.6.1.tar.gz
+qof-0.6.4.tar.gz
Index: qof.spec
===================================================================
RCS file: /cvs/extras/rpms/qof/FC-4/qof.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- qof.spec 15 Jan 2006 18:40:10 -0000 1.10
+++ qof.spec 1 May 2006 01:17:17 -0000 1.11
@@ -1,14 +1,14 @@
Name: qof
-Version: 0.6.1
-Release: 1%{?dist}
+Version: 0.6.4
+Release: 3%{?dist}
Summary: Query engine library for C objects
Group: System Environment/Libraries
License: GPL
URL: http://qof.sf.net
Source0: http://dl.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
-Patch0: qof-0.6.1-build.patch
-Patch1: qof-dependencies.patch
+Patch0: qof-x86_64.patch
+Patch1: qof-gnc-date-char.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libxml2-devel
@@ -17,8 +17,6 @@
BuildRequires: intltool
# qof doesn't ship with pre-built documentation
BuildRequires: doxygen
-# Patch1 modifies configure.in so we have to use autoconf
-BuildRequires: autoconf
%description
QOF - The Query Object Framework is a C library that provides a query engine
@@ -70,7 +68,6 @@
%patch1 -p1
%build
-autoconf --force
%configure --disable-static
make
@@ -119,6 +116,19 @@
%doc html
%changelog
+* Sun Apr 30 2006 Toshio Kuratomi <toshio-tiki-lounge.com> - 0.6.4-3
+- Fix stupid in a hurry typo.
+
+* Sun Apr 30 2006 Toshio Kuratomi <toshio-tiki-lounge.com> - 0.6.4-2
+- Patch to fix a signed/unsigned char problem on ppc.
+
+* Mon Apr 17 2006 Toshio Kuratomi <toshio-tiki-lounge.com> - 0.6.4-1
+- Update to qof 0.6.4.
+- Patch a small compile problem in building tests on x86_64.
+
+* Mon Feb 13 2006 Toshio Kuratomi <toshio-tiki-lounge.com> - 0.6.1-2
+- Bump and rebuild for FC5.
+
* Sat Jan 14 2006 Toshio Kuratomi <toshio-tiki-lounge.com> - 0.6.1-1
- Upgrade to 0.6.1.
- Drop patches integrated upstream.
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/qof/FC-4/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 15 Jan 2006 18:40:10 -0000 1.3
+++ sources 1 May 2006 01:17:17 -0000 1.4
@@ -1 +1 @@
-2a1c4b231fb03e49d5d9237dc6698c3e qof-0.6.1.tar.gz
+555787c7ea06a3412ff9119fe4127886 qof-0.6.4.tar.gz
--- qof-0.6.1-build.patch DELETED ---
--- qof-dependencies.patch DELETED ---
16 years, 9 months
rpms/perl-Gtk2/devel perl-Gtk2.spec,1.17,1.18
by fedora-extras-commits@redhat.com
Author: jpo
Update of /cvs/extras/rpms/perl-Gtk2/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv2590
Modified Files:
perl-Gtk2.spec
Log Message:
Requires perl(Cairo) (distro >= FC-5).
Index: perl-Gtk2.spec
===================================================================
RCS file: /cvs/extras/rpms/perl-Gtk2/devel/perl-Gtk2.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- perl-Gtk2.spec 11 Apr 2006 18:23:10 -0000 1.17
+++ perl-Gtk2.spec 1 May 2006 00:16:40 -0000 1.18
@@ -6,7 +6,7 @@
Name: perl-Gtk2
Version: 1.121
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Perl interface to the 2.x series of the Gimp Toolkit library
Group: Development/Libraries
@@ -16,10 +16,13 @@
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: perl >= 2:5.8.0
-BuildRequires: gtk2-devel, perl-Glib >= 1.120
+BuildRequires: gtk2-devel
BuildRequires: perl(ExtUtils::Depends), perl(ExtUtils::PkgConfig)
-Requires: perl-Glib >= 1.120
+BuildRequires: perl(Glib) >= 1.120
+BuildRequires: perl(Cairo)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+Requires: perl(Glib) >= 1.120
+Requires: perl(Cairo)
%description
This module allows you to write Gtk+ graphical user interfaces in a
@@ -42,6 +45,14 @@
%define __perl_provides %{_builddir}/Gtk2-%{version}/%{name}-perl.prov
chmod +x %{__perl_provides}
+# Requires: exclude unversioned perl(Glib)
+cat <<__EOF__ > %{name}-perl.req
+#!/bin/sh
+/usr/lib/rpm/perl.req \$* | grep -v '^perl(Glib)$'
+__EOF__
+%define __perl_requires %{_builddir}/Gtk2-%{version}/%{name}-perl.req
+chmod +x %{__perl_requires}
+
%build
CFLAGS="$RPM_OPT_FLAGS" %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -75,6 +86,9 @@
%changelog
+* Mon May 1 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.121-2
+- Requires perl(Cairo) (distro >= FC-5).
+
* Tue Apr 11 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.121-1
- Update to 1.121.
16 years, 9 months