This commit is contained in:
parent
81ae41347d
commit
1f192bb767
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0cdb921456e38973577219c8f3303c531fcb21c6e52a4e0abfb9d52cfa0b6258
|
||||
size 1941082
|
3
cmake-2.4.8-RC-9.tar.bz2
Normal file
3
cmake-2.4.8-RC-9.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7a6ba3a61c96cd3ec5322ae54d380e7c83535f4197ff19456a3e516129cc8db2
|
||||
size 1944196
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 3 17:26:53 CET 2008 - dmueller@suse.de
|
||||
|
||||
- update to 2.4.8-RC9:
|
||||
* last release candidate of 2.4.8
|
||||
* Add list(FIND) because it is used in new FindQt4.cmake
|
||||
* Fix tar long file path issue with cpack
|
||||
* Fix variable name in docs for FindPkgConfig bug 5722
|
||||
* Fix for bug 5645 ifort bad pic flag on linux
|
||||
* Fix for bug 6006 INSTALL DIRECTORY signature problem
|
||||
* Update FindQt4 from CVS Head for many bug fixes
|
||||
* Fix bug 5638 CMAKE_INSTALL_PREFIX not working on SunOS with CC
|
||||
* Fix bug 6117 FindPkgConfig can run twice now
|
||||
* Fix bug 6106 FindPerlLibs.cmake missing escaped $
|
||||
* Allow NODEFAULTLIBS to have more than one value bug 5455
|
||||
* fix for bug 5363: GET_TARGET_PROPERTY(... DEBUG_LOCATION)
|
||||
* Better error from ctest if nightly time not set
|
||||
* Avoid relinking exclude-from-all directory targets before install
|
||||
* Fix for kde4-config location
|
||||
* Remove KDE3_ENABLE_FINAL (did not work)
|
||||
* KDE3 fix for 64 bit location of plugins
|
||||
* mark PYTHON_EXECUTABLE as advanced
|
||||
* documentation fix for file, find_package, try_run
|
||||
* add IS_ABSOLUTE to if
|
||||
* INSTALL() everything which doesn't have a COMPONENT set, is assigned
|
||||
* make #cmakedefine output match autoconf when undefined
|
||||
* document cmake remove -f
|
||||
* document order of -D and -P
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 10 11:34:34 CET 2007 - dmueller@suse.de
|
||||
|
||||
|
39
cmake.spec
39
cmake.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cmake (Version 2.4.7)
|
||||
# spec file for package cmake (Version 2.4.7+2.4.8RC9)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -11,10 +11,11 @@
|
||||
# norootforbuild
|
||||
|
||||
Name: cmake
|
||||
Version: 2.4.7
|
||||
Release: 36
|
||||
Version: 2.4.7+2.4.8RC9
|
||||
Release: 1
|
||||
License: BSD 3-Clause
|
||||
Group: Development/Tools/Building
|
||||
%define tar_version 2.4.8-RC-9
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if %suse_version > 1020
|
||||
BuildRequires: libexpat-devel
|
||||
@ -23,7 +24,7 @@ BuildRequires: expat
|
||||
%endif
|
||||
BuildRequires: curl-devel expat gcc-c++ libstdc++-devel ncurses-devel
|
||||
Url: http://www.cmake.org/
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
Source0: %{name}-%{tar_version}.tar.bz2
|
||||
Patch0: cmake-2.4.7-use_intree_xmlrpc.patch
|
||||
Patch1: cmake-2.4.7-less_verbosity.patch
|
||||
Patch2: cmake-2.4.7-use_shared_python_lib.patch
|
||||
@ -40,7 +41,7 @@ Authors:
|
||||
Kitware, Inc., Insight Consortium
|
||||
|
||||
%prep
|
||||
%setup -q -n %name-%version
|
||||
%setup -q -n %name-%tar_version
|
||||
%patch0
|
||||
#disabled because it breaks progress information
|
||||
#%patch1
|
||||
@ -77,6 +78,32 @@ rm -rf %{buildroot}
|
||||
/usr/share/man/man1/ctest.1.gz
|
||||
|
||||
%changelog
|
||||
* Thu Jan 03 2008 - dmueller@suse.de
|
||||
- update to 2.4.8-RC9:
|
||||
* last release candidate of 2.4.8
|
||||
* Add list(FIND) because it is used in new FindQt4.cmake
|
||||
* Fix tar long file path issue with cpack
|
||||
* Fix variable name in docs for FindPkgConfig bug 5722
|
||||
* Fix for bug 5645 ifort bad pic flag on linux
|
||||
* Fix for bug 6006 INSTALL DIRECTORY signature problem
|
||||
* Update FindQt4 from CVS Head for many bug fixes
|
||||
* Fix bug 5638 CMAKE_INSTALL_PREFIX not working on SunOS with CC
|
||||
* Fix bug 6117 FindPkgConfig can run twice now
|
||||
* Fix bug 6106 FindPerlLibs.cmake missing escaped $
|
||||
* Allow NODEFAULTLIBS to have more than one value bug 5455
|
||||
* fix for bug 5363: GET_TARGET_PROPERTY(... DEBUG_LOCATION)
|
||||
* Better error from ctest if nightly time not set
|
||||
* Avoid relinking exclude-from-all directory targets before install
|
||||
* Fix for kde4-config location
|
||||
* Remove KDE3_ENABLE_FINAL (did not work)
|
||||
* KDE3 fix for 64 bit location of plugins
|
||||
* mark PYTHON_EXECUTABLE as advanced
|
||||
* documentation fix for file, find_package, try_run
|
||||
* add IS_ABSOLUTE to if
|
||||
* INSTALL() everything which doesn't have a COMPONENT set, is assigned
|
||||
* make #cmakedefine output match autoconf when undefined
|
||||
* document cmake remove -f
|
||||
* document order of -D and -P
|
||||
* Mon Dec 10 2007 - dmueller@suse.de
|
||||
- if you want cmake, you probably also want make
|
||||
* Fri Sep 21 2007 - dmueller@suse.de
|
||||
|
Loading…
Reference in New Issue
Block a user