You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2021/09/28 04:00:20 UTC

[orc] branch branch-1.6 updated: ORC-1010: Bump tzdata from tzdata-2020e-1.tar.xz to tzdata-2021b-1.tar.xz (#918)

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-1.6
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-1.6 by this push:
     new ae665aa  ORC-1010: Bump tzdata from tzdata-2020e-1.tar.xz to tzdata-2021b-1.tar.xz (#918)
ae665aa is described below

commit ae665aa62b14ebd686e844ee8b9ab2c81706ec54
Author: Guiyanakaung <gu...@gmail.com>
AuthorDate: Tue Sep 28 11:57:50 2021 +0800

    ORC-1010: Bump tzdata from tzdata-2020e-1.tar.xz to tzdata-2021b-1.tar.xz (#918)
    
    ### What changes were proposed in this pull request?
    
    ```cmd
    CUSTOMBUILD : error : downloading 'ftp://cygwin.osuosl.org/pub/cygwin/noarch/release/tzdata/tzdata-2020e-1.tar.xz' failed [C:\projects\orc\build\tzdata_ep.vcxproj]
               status_code: 78
               status_string: "Remote file not found"
               log:
               --- LOG BEGIN ---
               timeout on name lookup is not supported
    ```
    https://cygwin.osuosl.org/noarch/release/tzdata/
    It looks like the archive tzdata-2020e-1.tar.xz has been deleted and tzdata-2021b-1-src.tar.xz was created two days ago.
    ![image](https://user-images.githubusercontent.com/4069905/134888938-7f810c06-3efa-4e1d-b620-c59aee6779d0.png)
    
    ### Why are the changes needed?
    
    Fix CI for winodw.
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    (cherry picked from commit 758f333569b7ebbb75863b31e18a18b7d8f304aa)
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
    (cherry picked from commit a2d5a9882da5352b0a77b83f097e7c6c46e94c15)
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 cmake_modules/ThirdpartyToolchain.cmake | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmake_modules/ThirdpartyToolchain.cmake b/cmake_modules/ThirdpartyToolchain.cmake
index fc4409c..7d1a53b 100644
--- a/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cmake_modules/ThirdpartyToolchain.cmake
@@ -244,8 +244,8 @@ endif ()
 
 if (WIN32)
   ExternalProject_Add(tzdata_ep
-    URL "ftp://cygwin.osuosl.org/pub/cygwin/noarch/release/tzdata/tzdata-2020e-1.tar.xz"
-    URL_HASH MD5=f387bd21bd54a68ef73a0b9fa20a9ff5
+    URL "ftp://cygwin.osuosl.org/pub/cygwin/noarch/release/tzdata/tzdata-2021b-1.tar.xz"
+    URL_HASH MD5=d0de6f00f5a37ee211cfabeae9eb0937
     CONFIGURE_COMMAND ""
     BUILD_COMMAND ""
     INSTALL_COMMAND "")