Re: [UPDATE] cmake-2.8.9

2012-08-29 Thread David Coppa
On Thu, Aug 23, 2012 at 4:24 PM, David Coppa dco...@openbsd.org wrote:

 Hi!

 Here's the update to cmake-2.8.9.

 Please test (a bulk maybe?)

 100% tests passed, 0 tests failed out of 225 (on sparc64)

Is there any news?

David



Re: [UPDATE] cmake-2.8.9

2012-08-29 Thread Brad Smith
On Thu, Aug 23, 2012 at 08:24:03AM -0600, David Coppa wrote:
 
 Hi!
 
 Here's the update to cmake-2.8.9.
 
 Please test (a bulk maybe?)
 
 100% tests passed, 0 tests failed out of 225 (on sparc64)
 
 Ciao,
 David

Looks good to me. Built a handful of CMake using ports (MySQL, LLVM,
PhysFS, libmusicbrainz, etc.) and they're all building OK.

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



[UPDATE] cmake-2.8.9

2012-08-23 Thread David Coppa

Hi!

Here's the update to cmake-2.8.9.

Please test (a bulk maybe?)

100% tests passed, 0 tests failed out of 225 (on sparc64)

Ciao,
David

Index: Makefile
===
RCS file: /cvs/ports/devel/cmake/Makefile,v
retrieving revision 1.63
diff -u -p -r1.63 Makefile
--- Makefile20 Aug 2012 08:07:34 -  1.63
+++ Makefile23 Aug 2012 14:18:21 -
@@ -6,8 +6,7 @@ BROKEN-arm =build fails since move to g
 HOMEPAGE = http://www.cmake.org/
 CATEGORIES =   devel
 COMMENT =  portable build system
-DISTNAME = cmake-2.8.8
-REVISION = 10
+DISTNAME = cmake-2.8.9
 MASTER_SITES = ${HOMEPAGE}files/v2.8/
 
 MAINTAINER =   David Coppa dco...@openbsd.org
Index: distinfo
===
RCS file: /cvs/ports/devel/cmake/distinfo,v
retrieving revision 1.15
diff -u -p -r1.15 distinfo
--- distinfo7 May 2012 07:06:20 -   1.15
+++ distinfo23 Aug 2012 14:18:21 -
@@ -1,5 +1,2 @@
-MD5 (cmake-2.8.8.tar.gz) = unSyLHiKDIVHl2uIDNArFw==
-RMD160 (cmake-2.8.8.tar.gz) = 22CZn9TRs+Lig2jUUDWgWO1+djk=
-SHA1 (cmake-2.8.8.tar.gz) = p038PgoNf4V6xd2gO7mevwdnbaE=
-SHA256 (cmake-2.8.8.tar.gz) = K1mJeGTWIg/yCqjqxkysiZTgBImKHA+JnIy017dXC0Y=
-SIZE (cmake-2.8.8.tar.gz) = 5691656
+SHA256 (cmake-2.8.9.tar.gz) = 3D3Mc5m+hjZHGXX5VQhs34AHOYYsJAhYqY6JcZ5F5vk=
+SIZE (cmake-2.8.9.tar.gz) = 5658837
Index: files/FindLibLZMA.cmake
===
RCS file: files/FindLibLZMA.cmake
diff -N files/FindLibLZMA.cmake
--- files/FindLibLZMA.cmake 15 Jun 2012 10:26:56 -  1.1
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,69 +0,0 @@
-# - Find LibLZMA
-# Find LibLZMA headers and library
-#
-#  LIBLZMA_FOUND - True if liblzma is found.
-#  LIBLZMA_INCLUDE_DIRS  - Directory where liblzma headers are located.
-#  LIBLZMA_LIBRARIES - Lzma libraries to link against.
-#  LIBLZMA_HAS_AUTO_DECODER  - True if lzma_auto_decoder() is found (required).
-#  LIBLZMA_HAS_EASY_ENCODER  - True if lzma_easy_encoder() is found (required).
-#  LIBLZMA_HAS_LZMA_PRESET   - True if lzma_lzma_preset() is found (required).
-#  LIBLZMA_VERSION_MAJOR - The major version of lzma
-#  LIBLZMA_VERSION_MINOR - The minor version of lzma
-#  LIBLZMA_VERSION_PATCH - The patch version of lzma
-#  LIBLZMA_VERSION_STRING- version number as a string (ex: 5.0.3)
-
-#=
-# Copyright 2008 Per Oyvind Karlsen peroyv...@mandriva.org
-# Copyright 2009 Alexander Neundorf neund...@kde.org
-# Copyright 2009 Helio Chissini de Castro he...@kde.org
-# Copyright 2012 Mario Bensi mbe...@ipsquad.net
-#
-# Distributed under the OSI-approved BSD License (the License);
-# see accompanying file Copyright.txt for details.
-#
-# This software is distributed WITHOUT ANY WARRANTY; without even the
-# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the License for more information.
-#=
-# (To distribute this file outside of CMake, substitute the full
-#  License text for the above reference.)
-
-
-FIND_PATH(LIBLZMA_INCLUDE_DIR lzma.h )
-FIND_LIBRARY(LIBLZMA_LIBRARY lzma)
-
-IF(LIBLZMA_INCLUDE_DIR AND EXISTS ${LIBLZMA_INCLUDE_DIR}/lzma/version.h)
-FILE(READ ${LIBLZMA_INCLUDE_DIR}/lzma/version.h LIBLZMA_HEADER_CONTENTS)
-
-STRING(REGEX REPLACE .*#define LZMA_VERSION_MAJOR ([0-9]+).* \\1 
LIBLZMA_VERSION_MAJOR ${LIBLZMA_HEADER_CONTENTS})
-STRING(REGEX REPLACE .*#define LZMA_VERSION_MINOR ([0-9]+).* \\1 
LIBLZMA_VERSION_MINOR ${LIBLZMA_HEADER_CONTENTS})
-STRING(REGEX REPLACE .*#define LZMA_VERSION_PATCH ([0-9]+).* \\1 
LIBLZMA_VERSION_PATCH ${LIBLZMA_HEADER_CONTENTS})
-
-SET(LIBLZMA_VERSION_STRING 
${LIBLZMA_VERSION_MAJOR}.${LIBLZMA_VERSION_MINOR}.${LIBLZMA_VERSION_PATCH})
-ENDIF(LIBLZMA_INCLUDE_DIR AND EXISTS ${LIBLZMA_INCLUDE_DIR}/lzma/version.h)
-
-# We're using new code known now as XZ, even library still been called LZMA
-# it can be found in http://tukaani.org/xz/
-# Avoid using old codebase
-IF (LIBLZMA_LIBRARY)
-   INCLUDE(CheckLibraryExists)
-   CHECK_LIBRARY_EXISTS(${LIBLZMA_LIBRARY} lzma_auto_decoder  
LIBLZMA_HAS_AUTO_DECODER)
-   CHECK_LIBRARY_EXISTS(${LIBLZMA_LIBRARY} lzma_easy_encoder  
LIBLZMA_HAS_EASY_ENCODER)
-   CHECK_LIBRARY_EXISTS(${LIBLZMA_LIBRARY} lzma_lzma_preset  
LIBLZMA_HAS_LZMA_PRESET)
-ENDIF (LIBLZMA_LIBRARY)
-
-INCLUDE(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibLZMA  REQUIRED_VARS  LIBLZMA_INCLUDE_DIR
-  LIBLZMA_LIBRARY
-  
LIBLZMA_HAS_AUTO_DECODER
-  
LIBLZMA_HAS_EASY_ENCODER
-