SHA256
3
0
forked from pool/cmake

Updating link to change in openSUSE:Factory/cmake revision 40.0

OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/cmake?expand=0&rev=81ec3368914d2c206c3a434f4b5261a1
This commit is contained in:
OBS User buildservice-autocommit 2010-07-23 15:17:12 +00:00 committed by Git OBS Bridge
parent 1483b9e29c
commit af90cd4ccf
8 changed files with 38 additions and 29 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:04b606adc208b8619aa08449ef05783933e48a57234f6975df20d909bde61384
size 2746713

3
cmake-2.8.2.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e1a54476bf25d8c61a1f5f2eb708e12a3a7487dfe04ad4a5ab91c0d110f39a9a
size 4153648

View File

@ -1,8 +1,8 @@
Index: Source/cmTarget.cxx
===================================================================
--- Source/cmTarget.cxx.orig 2009-11-13 19:32:58.000000000 +0100
+++ Source/cmTarget.cxx 2009-11-26 10:41:29.000000000 +0100
@@ -3679,7 +3679,7 @@ bool cmTarget::IsChrpathUsed(const char*
--- Source/cmTarget.cxx.orig 2010-06-28 17:15:59.000000000 +0200
+++ Source/cmTarget.cxx 2010-07-20 22:27:13.000000000 +0200
@@ -3785,7 +3785,7 @@ bool cmTarget::IsChrpathUsed(const char*
}
// Allow the user to disable builtin chrpath explicitly.

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Jul 20 20:37:51 UTC 2010 - puzel@novell.com
- update to cmake-gui-2.8.2
- cmake-gui: Add simple grouped view
- cmake-gui: Support build tree under symlink (#9975)
-------------------------------------------------------------------
Tue May 25 14:12:51 UTC 2010 - puzel@novell.com

View File

@ -1,5 +1,5 @@
#
# spec file for package cmake-gui (Version 2.8.1)
# spec file for package cmake-gui (Version 2.8.2)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -19,8 +19,8 @@
Name: cmake-gui
Version: 2.8.1
Release: 3
Version: 2.8.2
Release: 1
License: BSD3c
Group: Development/Tools/Building
Url: http://www.cmake.org/

View File

@ -1,3 +1,17 @@
-------------------------------------------------------------------
Tue Jul 20 20:33:49 UTC 2010 - puzel@novell.com
- update to cmake-2.8.2
- notable changes:
- CPack: Add native BZip2 support
- ExternalProject: Support .zip and .bz2 archives, MD5 verification
- GetPrerequisites: Provide an override hook
- Recognize ARM ABI/EABI with GNU compilers
- Recognize Clang compiler
- Search basic directories on "Generic" platform
- Support compression with 'cmake -E tar'
- a lot of bugfixes
-------------------------------------------------------------------
Thu Jun 10 16:24:47 UTC 2010 - dimstar@opensuse.org

View File

@ -1,5 +1,5 @@
#
# spec file for package cmake (Version 2.8.1)
# spec file for package cmake (Version 2.8.2)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -19,8 +19,8 @@
Name: cmake
Version: 2.8.1
Release: 3
Version: 2.8.2
Release: 1
License: BSD3c
Group: Development/Tools/Building
Url: http://www.cmake.org/

View File

@ -1,6 +1,8 @@
--- Source/kwsys/SystemInformation.cxx
+++ Source/kwsys/SystemInformation.cxx
@@ -152,7 +152,7 @@
Index: Source/kwsys/SystemInformation.cxx
===================================================================
--- Source/kwsys/SystemInformation.cxx.orig 2010-06-28 17:16:00.000000000 +0200
+++ Source/kwsys/SystemInformation.cxx 2010-07-21 14:13:20.000000000 +0200
@@ -152,7 +152,7 @@ public:
public:
#define VENDOR_STRING_LENGTH (12 + 1)
@ -9,17 +11,3 @@
#define SERIALNUMBER_STRING_LENGTH (29 + 1)
typedef struct tagID
--- Utilities/cmtar/encode.c
+++ Utilities/cmtar/encode.c
@@ -32,7 +32,10 @@
int i, sum = 0;
if (t->options & TAR_GNU)
- strncpy(t->th_buf.magic, "ustar ", 8);
+ {
+ strncpy(t->th_buf.version, " ", TVERSLEN);
+ strncpy(t->th_buf.magic, "ustar", TMAGLEN);
+ }
else
{
strncpy(t->th_buf.version, TVERSION, TVERSLEN);