williamr/convert_time.pl
author Simon Howkins <simonh@symbian.org>
Thu, 17 Sep 2009 16:39:00 +0100
changeset 57 18edc8e9ec9e
parent 3 8b87ea768cb8
permissions -rw-r--r--
Added detection of packages that are new, or have changed from SFL -> EPL. This cannot distinguish such packages from those where we have reverted to using the MCL version after using an FCL version, but this is noted so the post-processing (by a real person) can take this into account.

#! perl

# Copyright (c) 2009 Symbian Foundation Ltd
# This component and the accompanying materials are made available
# under the terms of the License "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Symbian Foundation Ltd - initial contribution.
# 
# Contributors:
#
# Description:
# Convert timestamps into localtime.

my $line;
while ($line = <>)
  {
  chomp $line;
  my $timestring = localtime($line);
  print "$timestring\n";
  }