rpms/cmake/FC-4 cmake.spec,1.3,1.4
by fedora-extras-commits@redhat.com
Author: orion
Update of /cvs/extras/rpms/cmake/FC-4
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv14117
Modified Files:
cmake.spec
Log Message:
Fixup xorg-x11-devel BR
Index: cmake.spec
===================================================================
RCS file: /cvs/extras/rpms/cmake/FC-4/cmake.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cmake.spec 31 Jul 2006 19:32:26 -0000 1.3
+++ cmake.spec 31 Jul 2006 19:42:18 -0000 1.4
@@ -10,7 +10,7 @@
Source1: cmake-init-fedora
Patch0: cmake-2.4.2-fedora.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-BuildRequires: ncurses-devel, libX11-devel
+BuildRequires: ncurses-devel, xorg-x11-devel
%description
CMake is used to control the software compilation process using simple
13 years, 4 months
rpms/cmake/devel cmake.spec,1.4,1.5
by fedora-extras-commits@redhat.com
Author: orion
Update of /cvs/extras/rpms/cmake/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv13893
Modified Files:
cmake.spec
Log Message:
Update for vim 7.0
Index: cmake.spec
===================================================================
RCS file: /cvs/extras/rpms/cmake/devel/cmake.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cmake.spec 11 Jul 2006 16:41:17 -0000 1.4
+++ cmake.spec 31 Jul 2006 19:35:43 -0000 1.5
@@ -1,6 +1,6 @@
Name: cmake
Version: 2.4.2
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Cross-platform make system
Group: Development/Tools
@@ -38,12 +38,12 @@
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT/%{_datadir}/%{name}/Modules -type f | xargs chmod -x
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim70c/syntax
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim70c/indent
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim70/syntax
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim70/indent
mkdir -p $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp
cp -a Example $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version}/
-install -m 0644 Docs/cmake-syntax.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim70c/syntax/cmake.vim
-install -m 0644 Docs/cmake-indent.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim70c/indent/cmake.vim
+install -m 0644 Docs/cmake-syntax.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim70/syntax/cmake.vim
+install -m 0644 Docs/cmake-indent.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim70/indent/cmake.vim
install -m 0644 Docs/cmake-mode.el $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/
@@ -65,6 +65,9 @@
%changelog
+* Mon Jul 31 2006 Orion Poplawski <orion(a)cora.nwra.com> - 2.4.2-3
+- Update for vim 7.0
+
* Tue Jul 11 2006 Orion Poplawski <orion(a)cora.nwra.com> - 2.4.2-2
- Patch FindRuby and FindSWIG to work on Fedora (bug #198103)
13 years, 4 months
rpms/cmake/FC-5 cmake-2.4.2-fedora.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 cmake.spec, 1.1, 1.2 sources, 1.2, 1.3
by fedora-extras-commits@redhat.com
Author: orion
Update of /cvs/extras/rpms/cmake/FC-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv13787
Modified Files:
.cvsignore cmake.spec sources
Added Files:
cmake-2.4.2-fedora.patch
Log Message:
- Patch FindRuby and FindSWIG to work on Fedora (bug #198103)
- Update to 2.4.2
- Update for vim 7.0
cmake-2.4.2-fedora.patch:
--- NEW FILE cmake-2.4.2-fedora.patch ---
--- cmake-2.4.2/Modules/FindRuby.cmake.fedora 2006-07-11 10:20:14.000000000 -0600
+++ cmake-2.4.2/Modules/FindRuby.cmake 2006-07-11 10:20:38.000000000 -0600
@@ -9,6 +9,7 @@
SET(RUBY_POSSIBLE_INCLUDE_PATHS
- /usr/lib/ruby/1.8/i386-linux
+ /usr/lib/ruby/*/i386-linux
+ /usr/lib64/ruby/*/x86_64-linux
)
SET(RUBY_POSSIBLE_LIB_PATHS
@@ -19,12 +20,12 @@
${RUBY_POSSIBLE_INCLUDE_PATHS})
FIND_LIBRARY(RUBY_LIBRARY
- NAMES ruby1.8
+ NAMES ruby
PATHS ${RUBY_POSSIBLE_LIB_PATHS}
)
FIND_PROGRAM(RUBY_EXECUTABLE
- NAMES ruby1.8
+ NAMES ruby
PATHS
/usr/bin
/usr/local/bin
--- cmake-2.4.2/Modules/FindSWIG.cmake.fedora 2006-07-11 10:21:11.000000000 -0600
+++ cmake-2.4.2/Modules/FindSWIG.cmake 2006-07-11 10:22:47.000000000 -0600
@@ -7,13 +7,11 @@
SET(SWIG_FOUND FOOBAR)
FIND_PATH(SWIG_DIR
SWIGConfig.cmake
- /usr/share/swig1.3
- /usr/lib/swig1.3
+ /usr/share/swig/*
/usr/local/share/swig1.3)
FIND_PATH(SWIG_DIR
swig.swg
- /usr/share/swig1.3
- /usr/lib/swig1.3
+ /usr/share/swig/*
/usr/local/share/swig1.3)
IF(EXISTS ${SWIG_DIR})
IF("x${SWIG_DIR}x" STREQUAL "x${CMAKE_ROOT}/Modulesx")
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/cmake/FC-5/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 29 Mar 2006 19:03:00 -0000 1.2
+++ .cvsignore 31 Jul 2006 19:33:45 -0000 1.3
@@ -1 +1 @@
-cmake-2.2.3.tar.gz
+cmake-2.4.2.tar.gz
Index: cmake.spec
===================================================================
RCS file: /cvs/extras/rpms/cmake/FC-5/cmake.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cmake.spec 29 Mar 2006 19:03:00 -0000 1.1
+++ cmake.spec 31 Jul 2006 19:33:45 -0000 1.2
@@ -1,13 +1,14 @@
Name: cmake
-Version: 2.2.3
-Release: 3%{?dist}
+Version: 2.4.2
+Release: 1%{?dist}
Summary: Cross-platform make system
Group: Development/Tools
License: BSD
URL: http://www.cmake.org
-Source0: http://www.cmake.org/files/v2.2/cmake-%{version}.tar.gz
+Source0: http://www.cmake.org/files/v2.4/cmake-%{version}.tar.gz
Source1: cmake-init-fedora
+Patch0: cmake-2.4.2-fedora.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: ncurses-devel, libX11-devel
@@ -22,6 +23,7 @@
%prep
%setup -q
+%patch -p1 -b .fedora
%build
@@ -36,12 +38,12 @@
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT/%{_datadir}/%{name}/Modules -type f | xargs chmod -x
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim64/syntax
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim64/indent
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim70/syntax
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim70/indent
mkdir -p $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp
cp -a Example $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version}/
-install -m 0644 Docs/cmake-syntax.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim64/syntax/cmake.vim
-install -m 0644 Docs/cmake-indent.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim64/indent/cmake.vim
+install -m 0644 Docs/cmake-syntax.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim70/syntax/cmake.vim
+install -m 0644 Docs/cmake-indent.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim70/indent/cmake.vim
install -m 0644 Docs/cmake-mode.el $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/
@@ -54,6 +56,7 @@
%{_datadir}/doc/%{name}-%{version}/
%{_bindir}/ccmake
%{_bindir}/cmake
+%{_bindir}/cpack
%{_bindir}/ctest
%{_datadir}/%{name}/
%{_mandir}/man1/*.1*
@@ -62,6 +65,11 @@
%changelog
+* Mon Jul 31 2006 Orion Poplawski <orion(a)cora.nwra.com> - 2.4.2-1
+- Patch FindRuby and FindSWIG to work on Fedora (bug #198103)
+- Update to 2.4.2
+- Update for vim 7.0
+
* Tue Mar 28 2006 Orion Poplawski <orion(a)cora.nwra.com> - 2.2.3-3
- No subpackages, just own the emacs and vim dirs.
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/cmake/FC-5/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 29 Mar 2006 19:03:00 -0000 1.2
+++ sources 31 Jul 2006 19:33:45 -0000 1.3
@@ -1 +1 @@
-93a22d448675a9c2ea51982f08437f01 cmake-2.2.3.tar.gz
+c774f932cbd0c77d3cd76f0f8f46e0d9 cmake-2.4.2.tar.gz
13 years, 4 months
rpms/cmake/FC-4 cmake-2.4.2-fedora.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 cmake.spec, 1.2, 1.3 sources, 1.2, 1.3
by fedora-extras-commits@redhat.com
Author: orion
Update of /cvs/extras/rpms/cmake/FC-4
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv13729
Modified Files:
.cvsignore cmake.spec sources
Added Files:
cmake-2.4.2-fedora.patch
Log Message:
- Update to 2.4.2
- Patch FindRuby and FindSWIG to work on Fedora (bug #198103)
- Use vim63 dir on FC4
cmake-2.4.2-fedora.patch:
--- NEW FILE cmake-2.4.2-fedora.patch ---
--- cmake-2.4.2/Modules/FindRuby.cmake.fedora 2006-07-11 10:20:14.000000000 -0600
+++ cmake-2.4.2/Modules/FindRuby.cmake 2006-07-11 10:20:38.000000000 -0600
@@ -9,6 +9,7 @@
SET(RUBY_POSSIBLE_INCLUDE_PATHS
- /usr/lib/ruby/1.8/i386-linux
+ /usr/lib/ruby/*/i386-linux
+ /usr/lib64/ruby/*/x86_64-linux
)
SET(RUBY_POSSIBLE_LIB_PATHS
@@ -19,12 +20,12 @@
${RUBY_POSSIBLE_INCLUDE_PATHS})
FIND_LIBRARY(RUBY_LIBRARY
- NAMES ruby1.8
+ NAMES ruby
PATHS ${RUBY_POSSIBLE_LIB_PATHS}
)
FIND_PROGRAM(RUBY_EXECUTABLE
- NAMES ruby1.8
+ NAMES ruby
PATHS
/usr/bin
/usr/local/bin
--- cmake-2.4.2/Modules/FindSWIG.cmake.fedora 2006-07-11 10:21:11.000000000 -0600
+++ cmake-2.4.2/Modules/FindSWIG.cmake 2006-07-11 10:22:47.000000000 -0600
@@ -7,13 +7,11 @@
SET(SWIG_FOUND FOOBAR)
FIND_PATH(SWIG_DIR
SWIGConfig.cmake
- /usr/share/swig1.3
- /usr/lib/swig1.3
+ /usr/share/swig/*
/usr/local/share/swig1.3)
FIND_PATH(SWIG_DIR
swig.swg
- /usr/share/swig1.3
- /usr/lib/swig1.3
+ /usr/share/swig/*
/usr/local/share/swig1.3)
IF(EXISTS ${SWIG_DIR})
IF("x${SWIG_DIR}x" STREQUAL "x${CMAKE_ROOT}/Modulesx")
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/cmake/FC-4/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 29 Mar 2006 19:03:00 -0000 1.2
+++ .cvsignore 31 Jul 2006 19:32:26 -0000 1.3
@@ -1 +1 @@
-cmake-2.2.3.tar.gz
+cmake-2.4.2.tar.gz
Index: cmake.spec
===================================================================
RCS file: /cvs/extras/rpms/cmake/FC-4/cmake.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cmake.spec 29 Mar 2006 23:08:41 -0000 1.2
+++ cmake.spec 31 Jul 2006 19:32:26 -0000 1.3
@@ -1,15 +1,16 @@
Name: cmake
-Version: 2.2.3
-Release: 3%{?dist}
+Version: 2.4.2
+Release: 1%{?dist}
Summary: Cross-platform make system
Group: Development/Tools
License: BSD
URL: http://www.cmake.org
-Source0: http://www.cmake.org/files/v2.2/cmake-%{version}.tar.gz
+Source0: http://www.cmake.org/files/v2.4/cmake-%{version}.tar.gz
Source1: cmake-init-fedora
+Patch0: cmake-2.4.2-fedora.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-BuildRequires: ncurses-devel, xorg-x11-devel
+BuildRequires: ncurses-devel, libX11-devel
%description
CMake is used to control the software compilation process using simple
@@ -22,6 +23,7 @@
%prep
%setup -q
+%patch -p1 -b .fedora
%build
@@ -36,12 +38,12 @@
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT/%{_datadir}/%{name}/Modules -type f | xargs chmod -x
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim64/syntax
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim64/indent
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim63/syntax
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/vim/vim63/indent
mkdir -p $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp
cp -a Example $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version}/
-install -m 0644 Docs/cmake-syntax.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim64/syntax/cmake.vim
-install -m 0644 Docs/cmake-indent.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim64/indent/cmake.vim
+install -m 0644 Docs/cmake-syntax.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim63/syntax/cmake.vim
+install -m 0644 Docs/cmake-indent.vim $RPM_BUILD_ROOT%{_datadir}/vim/vim63/indent/cmake.vim
install -m 0644 Docs/cmake-mode.el $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/
@@ -54,6 +56,7 @@
%{_datadir}/doc/%{name}-%{version}/
%{_bindir}/ccmake
%{_bindir}/cmake
+%{_bindir}/cpack
%{_bindir}/ctest
%{_datadir}/%{name}/
%{_mandir}/man1/*.1*
@@ -62,6 +65,11 @@
%changelog
+* Mon Jul 31 2006 Orion Poplawski <orion(a)cora.nwra.com> - 2.4.2-1
+- Update to 2.4.2
+- Patch FindRuby and FindSWIG to work on Fedora (bug #198103)
+- Use vim63 dir on FC4
+
* Tue Mar 28 2006 Orion Poplawski <orion(a)cora.nwra.com> - 2.2.3-3
- No subpackages, just own the emacs and vim dirs.
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/cmake/FC-4/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 29 Mar 2006 19:03:00 -0000 1.2
+++ sources 31 Jul 2006 19:32:26 -0000 1.3
@@ -1 +1 @@
-93a22d448675a9c2ea51982f08437f01 cmake-2.2.3.tar.gz
+c774f932cbd0c77d3cd76f0f8f46e0d9 cmake-2.4.2.tar.gz
13 years, 4 months
fedora-security/audit fe5,1.62,1.63
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/fedora/fedora-security/audit
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv13415
Modified Files:
fe5
Log Message:
CVE-2006-3816 fixed for FC5 too
Index: fe5
===================================================================
RCS file: /cvs/fedora/fedora-security/audit/fe5,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- fe5 29 Jul 2006 09:33:57 -0000 1.62
+++ fe5 31 Jul 2006 19:10:01 -0000 1.63
@@ -3,7 +3,7 @@
** are items that need attention
CVE-2006-3913 VULNERABLE (freeciv) #200545
-CVE-2006-3816 VULNERABLE (krusader) #200323
+CVE-2006-3816 version (krusader, fixed 1.70.1) #200323
CVE-2006-3815 version (heartbeat, fixed 2.0.6)
CVE-2006-3812 VULNERABLE (seamonkey) #200455
CVE-2006-3811 VULNERABLE (seamonkey) #200455
13 years, 4 months
fedora-security/extras-errata/errata FEDORA-EXTRAS-2006-003, 1.2, 1.3
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/fedora/fedora-security/extras-errata/errata
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv13378
Modified Files:
FEDORA-EXTRAS-2006-003
Log Message:
Update from Hans.
Index: FEDORA-EXTRAS-2006-003
===================================================================
RCS file: /cvs/fedora/fedora-security/extras-errata/errata/FEDORA-EXTRAS-2006-003,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- FEDORA-EXTRAS-2006-003 28 Jul 2006 16:11:36 -0000 1.2
+++ FEDORA-EXTRAS-2006-003 31 Jul 2006 19:09:09 -0000 1.3
@@ -2,19 +2,30 @@
Fedora Update Notification
FEDORA-EXTRAS-2006-003
---------------------------------------------------------------------
-Product: Fedora Extras [4 5]
+Product: Fedora Extras [5 devel]
Name: dumb
-Version:
-Release:
-Summary:
+Version: 0.9.3
+Release: 4
+Summary: IT, XM, S3M and MOD player library
Description:
-
+IT, XM, S3M and MOD player library. Mainly targeted for use with the
+allegro game programming library, but it can be used without allegro.
+Faithful to the original trackers, especially IT.
---------------------------------------------------------------------
Update Information:
CVE ID: CVE-2006-3668
-<Fill me in>
+Luigi Auriemma discovered that DUMB, a tracker music library, performs
+insufficient sanitising of values parsed from IT music files. This could
+result in a heap-based buffer overflow in the it_read_envelope function
+in Dynamic Universal Music Bibliotheque (DUMB) 0.9.3 and earlier and
+current CVS as of 20060716, including libdumb, allows user-complicit
+attackers to execute arbitrary code via a ".it" (Impulse Tracker) file
+with an envelope with a large number of nodes.
+
+Fedora Extras versions 0.9.3-3 and earlier are vulnerable to this
+upgrade to 0.9.3-4 to fix this vulnerability.
---------------------------------------------------------------------
This update can be installed with the 'yum' update program. Use 'yum
13 years, 4 months
rpms/compface/devel compface.spec,1.9,1.10
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/extras/rpms/compface/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv10498/devel
Modified Files:
compface.spec
Log Message:
* Mon Jul 31 2006 Ville Skyttä <ville.skytta at iki.fi>
- Ensure proper doc file permissions.
Index: compface.spec
===================================================================
RCS file: /cvs/extras/rpms/compface/devel/compface.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- compface.spec 13 Feb 2006 18:22:36 -0000 1.9
+++ compface.spec 31 Jul 2006 18:42:17 -0000 1.10
@@ -1,6 +1,6 @@
Name: compface
Version: 1.4
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: Library for handling X-Faces
Group: System Environment/Libraries
@@ -20,7 +20,7 @@
%prep
%setup -q
-cp -p %{SOURCE1} .
+install -pm 644 %{SOURCE1} .
%patch0 -p0
%patch1 -p0
@@ -56,6 +56,9 @@
%changelog
+* Mon Jul 31 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.4-7
+- Ensure proper doc file permissions.
+
* Mon Feb 13 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.4-6
- Rebuild.
13 years, 4 months
rpms/compface/FC-4 compface.spec,1.8,1.9
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/extras/rpms/compface/FC-4
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv10498/FC-4
Modified Files:
compface.spec
Log Message:
* Mon Jul 31 2006 Ville Skyttä <ville.skytta at iki.fi>
- Ensure proper doc file permissions.
Index: compface.spec
===================================================================
RCS file: /cvs/extras/rpms/compface/FC-4/compface.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- compface.spec 6 Apr 2005 22:11:35 -0000 1.8
+++ compface.spec 31 Jul 2006 18:42:10 -0000 1.9
@@ -1,7 +1,6 @@
Name: compface
Version: 1.4
-Release: 5
-
+Release: 7%{?dist}
Summary: Library for handling X-Faces
Group: System Environment/Libraries
@@ -21,7 +20,7 @@
%prep
%setup -q
-cp -p %{SOURCE1} .
+install -pm 644 %{SOURCE1} .
%patch0 -p0
%patch1 -p0
@@ -57,7 +56,13 @@
%changelog
-* Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
+* Mon Jul 31 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.4-7
+- Ensure proper doc file permissions.
+
+* Mon Feb 13 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.4-6
+- Rebuild.
+
+* Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.4-5
- rebuilt
* Fri Dec 17 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.4-4
13 years, 4 months
rpms/compface/FC-5 compface.spec,1.9,1.10
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/extras/rpms/compface/FC-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv10498/FC-5
Modified Files:
compface.spec
Log Message:
* Mon Jul 31 2006 Ville Skyttä <ville.skytta at iki.fi>
- Ensure proper doc file permissions.
Index: compface.spec
===================================================================
RCS file: /cvs/extras/rpms/compface/FC-5/compface.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- compface.spec 13 Feb 2006 18:22:36 -0000 1.9
+++ compface.spec 31 Jul 2006 18:42:11 -0000 1.10
@@ -1,6 +1,6 @@
Name: compface
Version: 1.4
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: Library for handling X-Faces
Group: System Environment/Libraries
@@ -20,7 +20,7 @@
%prep
%setup -q
-cp -p %{SOURCE1} .
+install -pm 644 %{SOURCE1} .
%patch0 -p0
%patch1 -p0
@@ -56,6 +56,9 @@
%changelog
+* Mon Jul 31 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.4-7
+- Ensure proper doc file permissions.
+
* Mon Feb 13 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.4-6
- Rebuild.
13 years, 4 months
rpms/compface/FC-3 compface.spec,1.6,1.7
by fedora-extras-commits@redhat.com
Author: scop
Update of /cvs/extras/rpms/compface/FC-3
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv10498/FC-3
Modified Files:
compface.spec
Log Message:
* Mon Jul 31 2006 Ville Skyttä <ville.skytta at iki.fi>
- Ensure proper doc file permissions.
Index: compface.spec
===================================================================
RCS file: /cvs/extras/rpms/compface/FC-3/compface.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- compface.spec 17 Dec 2004 17:23:02 -0000 1.6
+++ compface.spec 31 Jul 2006 18:42:10 -0000 1.7
@@ -1,6 +1,6 @@
Name: compface
Version: 1.4
-Release: 4
+Release: 4.1
Epoch: 0
Summary: Library for handling X-Faces
@@ -21,7 +21,7 @@
%prep
%setup -q
-cp -p %{SOURCE1} .
+install -pm 644 %{SOURCE1} .
%patch0 -p0
%patch1 -p0
@@ -57,6 +57,9 @@
%changelog
+* Mon Jul 31 2006 Ville Skyttä <ville.skytta at iki.fi> - 0:1.4-4.1
+- Ensure proper doc file permissions.
+
* Fri Dec 17 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.4-4
- Let rpmbuild take care of stripping binaries.
13 years, 4 months