rpms/gazpacho/devel - New directory
by fedora-extras-commits@redhat.com
Author: katzj
Update of /cvs/extras/rpms/gazpacho/devel
In directory cvs.fedora.redhat.com:/tmp/cvs-serv22753/gazpacho/devel
Log Message:
Directory /cvs/extras/rpms/gazpacho/devel added to the repository
17 years, 3 months
rpms/liferea/devel liferea.desktop,1.1,NONE
by fedora-extras-commits@redhat.com
Author: mschwendt
Update of /cvs/extras/rpms/liferea/devel
In directory cvs.fedora.redhat.com:/tmp/cvs-serv22542
Removed Files:
liferea.desktop
Log Message:
commit removal
--- liferea.desktop DELETED ---
17 years, 3 months
rpms/gnome-vfsmm26/devel gnome-vfsmm.spec,1.2,1.3 sources,1.2,1.3
by fedora-extras-commits@redhat.com
Author: mschwendt
Update of /cvs/extras/rpms/gnome-vfsmm26/devel
In directory cvs.fedora.redhat.com:/tmp/cvs-serv11112
Modified Files:
gnome-vfsmm.spec sources
Log Message:
Merge patches from Thorsten.
Index: gnome-vfsmm.spec
===================================================================
RCS file: /cvs/extras/rpms/gnome-vfsmm26/devel/gnome-vfsmm.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gnome-vfsmm.spec 10 Dec 2004 22:03:03 -0000 1.2
+++ gnome-vfsmm.spec 28 Jan 2005 00:48:09 -0000 1.3
@@ -1,6 +1,6 @@
Name: gnome-vfsmm26
Version: 2.6.1
-Release: 1
+Release: 2
Epoch: 0
Summary: C++ wrapper for gnome-vfs
@@ -8,6 +8,7 @@
License: LGPL
URL: http://gtkmm.sourceforge.net/
Source0: http://ftp.gnome.org/pub/GNOME/sources/gnome-vfsmm/2.6/gnome-vfsmm-%{vers...
+Patch0: gnome-vfsmm-2.6.1-autoreconf.patch.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires(post): /sbin/ldconfig
@@ -33,7 +34,10 @@
%prep
%setup -q -n gnome-vfsmm-%{version}
-
+%ifarch x86_64
+# Patch was build after: aclocal -I scripts && automake -c -f && autoconf && libtoolize --copy --force
+%patch0 -p1
+%endif
%build
%configure --enable-static
@@ -72,6 +76,9 @@
%{_libdir}/pkgconfig/*.pc
%changelog
+* Thu Jan 27 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0:2.6.1-2
+- Add autoreconf patch; fixes build on x86_64
+
* Mon Jun 27 2004 Denis Leroy <denis(a)poolshark.org> - 0:2.6.1-0.fdr.1
- Upgrade to 2.6.1
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/gnome-vfsmm26/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 8 Nov 2004 04:28:19 -0000 1.2
+++ sources 28 Jan 2005 00:48:09 -0000 1.3
@@ -1 +1,2 @@
a0f8006f7336b211f160224fddaf86e1 gnome-vfsmm-2.6.1.tar.bz2
+401d20708378a66e5c52e29c16c770e2 gnome-vfsmm-2.6.1-autoreconf.patch.bz2
17 years, 3 months
rpms/scons/devel scons.spec,1.3,1.4
by fedora-extras-commits@redhat.com
Author: mschwendt
Update of /cvs/extras/rpms/scons/devel
In directory cvs.fedora.redhat.com:/tmp/cvs-serv25236
Modified Files:
scons.spec
Log Message:
Fix from Thorsten for #146014.
Index: scons.spec
===================================================================
RCS file: /cvs/extras/rpms/scons/devel/scons.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- scons.spec 11 Nov 2004 19:21:37 -0000 1.3
+++ scons.spec 25 Jan 2005 18:38:23 -0000 1.4
@@ -1,6 +1,6 @@
Name: scons
Version: 0.96
-Release: 3
+Release: 4
Summary: An Open Source software construction tool
Group: Development/Tools
@@ -8,8 +8,9 @@
URL: http://www.scons.org/
Source: http://download.sourceforge.net/scons/scons-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-BuildArch: noarch
+BuildArch: noarch
BuildRequires: python-devel
+Requires: python-abi = %(%{__python} -c "import sys ; print sys.version[:3]")
%description
SCons is an Open Source software construction tool--that is, a build
@@ -31,11 +32,11 @@
%build
-python setup.py build
+CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
%install
rm -rf $RPM_BUILD_ROOT
-python setup.py install --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES --install-lib=%{_libdir}/scons --install-scripts=%{_bindir}
+%{__python} setup.py install --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES --install-lib=%{_prefix}/lib/scons --install-scripts=%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
cp -f scons.1 sconsign.1 $RPM_BUILD_ROOT%{_mandir}/man1
@@ -46,10 +47,14 @@
%defattr(-,root,root,-)
%doc CHANGES.txt LICENSE.txt README.txt RELEASE.txt
%{_bindir}/*
-%{_libdir}/scons
+%{_prefix}/lib/scons
%{_mandir}/man*/*
%changelog
+* Tue Jan 25 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> 0.96-4
+- Place libs in {_prefix}/lib/ and not in {libdir}; fixes x86_64 problems
+- Adjust minor bits to be in sync with python-spec-template
+
* Wed Nov 10 2004 Matthias Saou <http://freshrpms.net/> 0.96-3
- Bump release to provide Extras upgrade path.
@@ -62,3 +67,4 @@
* Fri Nov 7 2003 Gerard Milmeister <gemi(a)bluewin.ch> - 0:0.93-0.fdr.1
- First Fedora release
+
17 years, 3 months
rpms/stellarium/devel stellarium-0.6.2-optflags.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 stellarium.spec, 1.3, 1.4 stellarium-0.6.0-optflags.patch, 1.1, NONE
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/extras/rpms/stellarium/devel
In directory cvs.fedora.redhat.com:/tmp/cvs-serv6510/devel
Modified Files:
.cvsignore sources stellarium.spec
Added Files:
stellarium-0.6.2-optflags.patch
Removed Files:
stellarium-0.6.0-optflags.patch
Log Message:
auto-import stellarium-0.6.2-2 on branch devel from stellarium-0.6.2-2.src.rpm
stellarium-0.6.2-optflags.patch:
--- NEW FILE stellarium-0.6.2-optflags.patch ---
--- /home/mlj/rpm/BUILD/stellarium-0.6.2/configure.orig 2005-01-16 18:57:29.298619223 +0100
+++ /home/mlj/rpm/BUILD/stellarium-0.6.2/configure 2005-01-16 18:57:36.281755258 +0100
@@ -3341,8 +3341,6 @@
-CFLAGS=" -Wall -O3"
-CXXFLAGS=" -Wall -O3"
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/stellarium/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 26 Nov 2004 08:21:16 -0000 1.3
+++ .cvsignore 27 Jan 2005 18:29:15 -0000 1.4
@@ -1 +1 @@
-stellarium-0.6.1.tar.gz
+stellarium-0.6.2.tar.gz
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/stellarium/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 26 Nov 2004 08:21:16 -0000 1.3
+++ sources 27 Jan 2005 18:29:15 -0000 1.4
@@ -1 +1 @@
-1065f8ba5a47c7b91997e8bf78d7549e stellarium-0.6.1.tar.gz
+f00e99b88f53273419683cf18905e39c stellarium-0.6.2.tar.gz
Index: stellarium.spec
===================================================================
RCS file: /cvs/extras/rpms/stellarium/devel/stellarium.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- stellarium.spec 26 Nov 2004 08:21:16 -0000 1.3
+++ stellarium.spec 27 Jan 2005 18:29:15 -0000 1.4
@@ -1,15 +1,15 @@
Name: stellarium
-Version: 0.6.1
-Release: 1
+Version: 0.6.2
+Release: 2
Epoch: 0
Summary: A photo-realistic nightsky renderer
Group: Amusements/Graphics
License: GPL
URL: http://stellarium.free.fr/
-Source0: http://dl.sf.net/stellarium/stellarium-0.6.1.tar.gz
+Source0: http://dl.sf.net/stellarium/stellarium-0.6.2.tar.gz
Source1: stellarium.desktop
-Patch0: stellarium-0.6.0-optflags.patch
+Patch0: stellarium-0.6.2-optflags.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL-devel
@@ -25,7 +25,7 @@
%prep
%setup -q
-%patch0 -p0
+%patch0 -p6
%build
@@ -66,7 +66,13 @@
%changelog
-* Sun Oct 17 2004 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.1-1
+* Sun Jan 23 2005 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.2-2
+- Fixed broken patch.
+
+* Sun Jan 16 2005 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.2-0.fdr.1
+- Updated to 0.6.2.
+
+* Sun Oct 17 2004 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.1-0.fdr.1
- Updated to 0.6.1.
* Sat Aug 21 2004 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.0-0.fdr.2
--- stellarium-0.6.0-optflags.patch DELETED ---
17 years, 3 months
rpms/stellarium import.log,1.5,1.6
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/extras/rpms/stellarium
In directory cvs.fedora.redhat.com:/tmp/cvs-serv6510
Modified Files:
import.log
Log Message:
auto-import stellarium-0.6.2-2 on branch devel from stellarium-0.6.2-2.src.rpm
Index: import.log
===================================================================
RCS file: /cvs/extras/rpms/stellarium/import.log,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- import.log 27 Jan 2005 18:28:21 -0000 1.5
+++ import.log 27 Jan 2005 18:29:15 -0000 1.6
@@ -2,3 +2,4 @@
stellarium-0_6_0-0_fdr_2_2:HEAD:stellarium-0.6.0-0.fdr.2.2.src.rpm:1099891340
stellarium-0_6_2-0_fdr_2_1:FC-1:stellarium-0.6.2-0.fdr.2.1.src.rpm:1106850417
stellarium-0_6_2-0_fdr_2_2:FC-2:stellarium-0.6.2-0.fdr.2.2.src.rpm:1106850493
+stellarium-0_6_2-2:HEAD:stellarium-0.6.2-2.src.rpm:1106850548
17 years, 3 months
rpms/stellarium/FC-2 stellarium-0.6.2-optflags.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.3, 1.4 stellarium.spec, 1.4, 1.5 stellarium-0.6.0-optflags.patch, 1.1, NONE
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/extras/rpms/stellarium/FC-2
In directory cvs.fedora.redhat.com:/tmp/cvs-serv6379/FC-2
Modified Files:
.cvsignore sources stellarium.spec
Added Files:
stellarium-0.6.2-optflags.patch
Removed Files:
stellarium-0.6.0-optflags.patch
Log Message:
auto-import stellarium-0.6.2-0.fdr.2.2 on branch FC-2 from stellarium-0.6.2-0.fdr.2.2.src.rpm
stellarium-0.6.2-optflags.patch:
--- NEW FILE stellarium-0.6.2-optflags.patch ---
--- /home/mlj/rpm/BUILD/stellarium-0.6.2/configure.orig 2005-01-16 18:57:29.298619223 +0100
+++ /home/mlj/rpm/BUILD/stellarium-0.6.2/configure 2005-01-16 18:57:36.281755258 +0100
@@ -3341,8 +3341,6 @@
-CFLAGS=" -Wall -O3"
-CXXFLAGS=" -Wall -O3"
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/stellarium/FC-2/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 8 Nov 2004 05:22:14 -0000 1.2
+++ .cvsignore 27 Jan 2005 18:28:21 -0000 1.3
@@ -1 +1 @@
-stellarium-0.6.0.tar.gz
+stellarium-0.6.2.tar.gz
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/stellarium/FC-2/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 28 Nov 2004 04:30:10 -0000 1.3
+++ sources 27 Jan 2005 18:28:21 -0000 1.4
@@ -1 +1 @@
-1065f8ba5a47c7b91997e8bf78d7549e stellarium-0.6.1.tar.gz
+f00e99b88f53273419683cf18905e39c stellarium-0.6.2.tar.gz
Index: stellarium.spec
===================================================================
RCS file: /cvs/extras/rpms/stellarium/FC-2/stellarium.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- stellarium.spec 28 Nov 2004 04:34:46 -0000 1.4
+++ stellarium.spec 27 Jan 2005 18:28:21 -0000 1.5
@@ -1,15 +1,15 @@
Name: stellarium
-Version: 0.6.1
-Release: 0.fdr.1.2
+Version: 0.6.2
+Release: 0.fdr.2.2
Epoch: 0
Summary: A photo-realistic nightsky renderer
Group: Amusements/Graphics
License: GPL
URL: http://stellarium.free.fr/
-Source0: http://dl.sf.net/stellarium/stellarium-0.6.1.tar.gz
+Source0: http://dl.sf.net/stellarium/stellarium-0.6.2.tar.gz
Source1: stellarium.desktop
-Patch0: stellarium-0.6.0-optflags.patch
+Patch0: stellarium-0.6.2-optflags.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL-devel
@@ -25,7 +25,7 @@
%prep
%setup -q
-%patch0 -p0
+%patch0 -p6
%build
@@ -66,6 +66,12 @@
%changelog
+* Sun Jan 23 2005 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.2-0.fdr.2
+- Fixed broken patch.
+
+* Sun Jan 16 2005 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.2-0.fdr.1
+- Updated to 0.6.2.
+
* Sun Oct 17 2004 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.1-0.fdr.1
- Updated to 0.6.1.
--- stellarium-0.6.0-optflags.patch DELETED ---
17 years, 3 months
rpms/stellarium import.log,1.4,1.5
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/extras/rpms/stellarium
In directory cvs.fedora.redhat.com:/tmp/cvs-serv6379
Modified Files:
import.log
Log Message:
auto-import stellarium-0.6.2-0.fdr.2.2 on branch FC-2 from stellarium-0.6.2-0.fdr.2.2.src.rpm
Index: import.log
===================================================================
RCS file: /cvs/extras/rpms/stellarium/import.log,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- import.log 27 Jan 2005 18:27:06 -0000 1.4
+++ import.log 27 Jan 2005 18:28:21 -0000 1.5
@@ -1,3 +1,4 @@
stellarium-0_6_0-0_fdr_2_1:HEAD:stellarium-0.6.0-0.fdr.2.1.src.rpm:1099891334
stellarium-0_6_0-0_fdr_2_2:HEAD:stellarium-0.6.0-0.fdr.2.2.src.rpm:1099891340
stellarium-0_6_2-0_fdr_2_1:FC-1:stellarium-0.6.2-0.fdr.2.1.src.rpm:1106850417
+stellarium-0_6_2-0_fdr_2_2:FC-2:stellarium-0.6.2-0.fdr.2.2.src.rpm:1106850493
17 years, 3 months
rpms/stellarium/FC-1 stellarium-0.6.2-optflags.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.3, 1.4 stellarium.spec, 1.3, 1.4 stellarium-0.6.0-optflags.patch, 1.1, NONE
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/extras/rpms/stellarium/FC-1
In directory cvs.fedora.redhat.com:/tmp/cvs-serv6255/FC-1
Modified Files:
.cvsignore sources stellarium.spec
Added Files:
stellarium-0.6.2-optflags.patch
Removed Files:
stellarium-0.6.0-optflags.patch
Log Message:
auto-import stellarium-0.6.2-0.fdr.2.1 on branch FC-1 from stellarium-0.6.2-0.fdr.2.1.src.rpm
stellarium-0.6.2-optflags.patch:
--- NEW FILE stellarium-0.6.2-optflags.patch ---
--- /home/mlj/rpm/BUILD/stellarium-0.6.2/configure.orig 2005-01-16 18:57:29.298619223 +0100
+++ /home/mlj/rpm/BUILD/stellarium-0.6.2/configure 2005-01-16 18:57:36.281755258 +0100
@@ -3341,8 +3341,6 @@
-CFLAGS=" -Wall -O3"
-CXXFLAGS=" -Wall -O3"
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/stellarium/FC-1/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 8 Nov 2004 05:22:14 -0000 1.2
+++ .cvsignore 27 Jan 2005 18:27:06 -0000 1.3
@@ -1 +1 @@
-stellarium-0.6.0.tar.gz
+stellarium-0.6.2.tar.gz
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/stellarium/FC-1/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 28 Nov 2004 04:30:10 -0000 1.3
+++ sources 27 Jan 2005 18:27:06 -0000 1.4
@@ -1 +1 @@
-1065f8ba5a47c7b91997e8bf78d7549e stellarium-0.6.1.tar.gz
+f00e99b88f53273419683cf18905e39c stellarium-0.6.2.tar.gz
Index: stellarium.spec
===================================================================
RCS file: /cvs/extras/rpms/stellarium/FC-1/stellarium.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- stellarium.spec 28 Nov 2004 04:34:46 -0000 1.3
+++ stellarium.spec 27 Jan 2005 18:27:07 -0000 1.4
@@ -1,15 +1,15 @@
Name: stellarium
-Version: 0.6.1
-Release: 0.fdr.1.1
+Version: 0.6.2
+Release: 0.fdr.2.1
Epoch: 0
Summary: A photo-realistic nightsky renderer
Group: Amusements/Graphics
License: GPL
URL: http://stellarium.free.fr/
-Source0: http://dl.sf.net/stellarium/stellarium-0.6.1.tar.gz
+Source0: http://dl.sf.net/stellarium/stellarium-0.6.2.tar.gz
Source1: stellarium.desktop
-Patch0: stellarium-0.6.0-optflags.patch
+Patch0: stellarium-0.6.2-optflags.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL-devel
@@ -25,7 +25,7 @@
%prep
%setup -q
-%patch0 -p0
+%patch0 -p6
%build
@@ -66,6 +66,12 @@
%changelog
+* Sun Jan 23 2005 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.2-0.fdr.2
+- Fixed broken patch.
+
+* Sun Jan 16 2005 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.2-0.fdr.1
+- Updated to 0.6.2.
+
* Sun Oct 17 2004 Marius L. J��hndal <mariuslj at ifi.uio.no> - 0:0.6.1-0.fdr.1
- Updated to 0.6.1.
--- stellarium-0.6.0-optflags.patch DELETED ---
17 years, 3 months
rpms/stellarium import.log,1.3,1.4
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/extras/rpms/stellarium
In directory cvs.fedora.redhat.com:/tmp/cvs-serv6255
Modified Files:
import.log
Log Message:
auto-import stellarium-0.6.2-0.fdr.2.1 on branch FC-1 from stellarium-0.6.2-0.fdr.2.1.src.rpm
Index: import.log
===================================================================
RCS file: /cvs/extras/rpms/stellarium/import.log,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- import.log 8 Nov 2004 05:22:20 -0000 1.3
+++ import.log 27 Jan 2005 18:27:06 -0000 1.4
@@ -1,2 +1,3 @@
stellarium-0_6_0-0_fdr_2_1:HEAD:stellarium-0.6.0-0.fdr.2.1.src.rpm:1099891334
stellarium-0_6_0-0_fdr_2_2:HEAD:stellarium-0.6.0-0.fdr.2.2.src.rpm:1099891340
+stellarium-0_6_2-0_fdr_2_1:FC-1:stellarium-0.6.2-0.fdr.2.1.src.rpm:1106850417
17 years, 3 months