Thu May 1 12:44:19 2014 UTC ()
Note as upstream Bug#1093336


(obache)
diff -r1.3 -r1.4 pkgsrc/devel/cmake-fedora/distinfo
diff -r1.1 -r1.2 pkgsrc/devel/cmake-fedora/patches/patch-Modules_DateTimeFormat.cmake

cvs diff -r1.3 -r1.4 pkgsrc/devel/cmake-fedora/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/cmake-fedora/distinfo 2014/03/01 09:41:12 1.3
+++ pkgsrc/devel/cmake-fedora/distinfo 2014/05/01 12:44:19 1.4
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.3 2014/03/01 09:41:12 obache Exp $ 1$NetBSD: distinfo,v 1.4 2014/05/01 12:44:19 obache Exp $
2 2
3SHA1 (cmake-fedora-1.2.7-modules-only.tar.gz) = d493b64f6f71bcf6f580410c35bf2665a25d9785 3SHA1 (cmake-fedora-1.2.7-modules-only.tar.gz) = d493b64f6f71bcf6f580410c35bf2665a25d9785
4RMD160 (cmake-fedora-1.2.7-modules-only.tar.gz) = 18ca5f8950e89a2782897c2a7b4aa436b4c7e163 4RMD160 (cmake-fedora-1.2.7-modules-only.tar.gz) = 18ca5f8950e89a2782897c2a7b4aa436b4c7e163
5Size (cmake-fedora-1.2.7-modules-only.tar.gz) = 31727 bytes 5Size (cmake-fedora-1.2.7-modules-only.tar.gz) = 31727 bytes
6SHA1 (patch-Modules_DateTimeFormat.cmake) = bef6a05c7f55df692e3a5c6c9d6c50946a469b6a 6SHA1 (patch-Modules_DateTimeFormat.cmake) = 88775e445ceb9a9853dc542015926959a1b6409e

cvs diff -r1.1 -r1.2 pkgsrc/devel/cmake-fedora/patches/Attic/patch-Modules_DateTimeFormat.cmake (expand / switch to unified diff)

--- pkgsrc/devel/cmake-fedora/patches/Attic/patch-Modules_DateTimeFormat.cmake 2014/01/29 08:34:47 1.1
+++ pkgsrc/devel/cmake-fedora/patches/Attic/patch-Modules_DateTimeFormat.cmake 2014/05/01 12:44:19 1.2
@@ -1,15 +1,16 @@ @@ -1,15 +1,16 @@
1$NetBSD: patch-Modules_DateTimeFormat.cmake,v 1.1 2014/01/29 08:34:47 obache Exp $ 1$NetBSD: patch-Modules_DateTimeFormat.cmake,v 1.2 2014/05/01 12:44:19 obache Exp $
2 2
3* -u is much portable than --utc. 3* -u is much portable than --utc.
 4 https://bugzilla.redhat.com/show_bug.cgi?id=1093336
4 5
5--- Modules/DateTimeFormat.cmake.orig 2012-07-13 05:44:02.000000000 +0000 6--- Modules/DateTimeFormat.cmake.orig 2012-07-13 05:44:02.000000000 +0000
6+++ Modules/DateTimeFormat.cmake 7+++ Modules/DateTimeFormat.cmake
7@@ -28,7 +28,7 @@ IF(NOT DEFINED _DATE_TIME_FORMAT_CMAKE_) 8@@ -28,7 +28,7 @@ IF(NOT DEFINED _DATE_TIME_FORMAT_CMAKE_)
8 IF(_locale) 9 IF(_locale)
9 SET(ENV{LC_ALL} ${_locale}) 10 SET(ENV{LC_ALL} ${_locale})
10 ENDIF(_locale) 11 ENDIF(_locale)
11- COMMAND_OUTPUT_TO_VARIABLE(${date_var} date --utc "${format}") 12- COMMAND_OUTPUT_TO_VARIABLE(${date_var} date --utc "${format}")
12+ COMMAND_OUTPUT_TO_VARIABLE(${date_var} date -u "${format}") 13+ COMMAND_OUTPUT_TO_VARIABLE(${date_var} date -u "${format}")
13 ENDMACRO(TODAY date_var format) 14 ENDMACRO(TODAY date_var format)
14  15
15 TODAY(TODAY_CHANGELOG "+%a %b %d %Y" "C") 16 TODAY(TODAY_CHANGELOG "+%a %b %d %Y" "C")