[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r1401 - in tzdata/tags: . 2006c-2/debian



Author: aurel32
Date: 2006-04-10 22:51:33 +0000 (Mon, 10 Apr 2006)
New Revision: 1401

Added:
   tzdata/tags/2006c-2/
   tzdata/tags/2006c-2/debian/changelog
   tzdata/tags/2006c-2/debian/control
   tzdata/tags/2006c-2/debian/patches/
   tzdata/tags/2006c-2/debian/postinst
   tzdata/tags/2006c-2/debian/rules
Removed:
   tzdata/tags/2006c-2/debian/changelog
   tzdata/tags/2006c-2/debian/control
   tzdata/tags/2006c-2/debian/postinst
   tzdata/tags/2006c-2/debian/preinst
   tzdata/tags/2006c-2/debian/rules
Log:
Taggint 2006c-2



Copied: tzdata/tags/2006c-2 (from rev 1360, tzdata/trunk)

Deleted: tzdata/tags/2006c-2/debian/changelog
===================================================================
--- tzdata/trunk/debian/changelog	2006-04-08 21:27:28 UTC (rev 1360)
+++ tzdata/tags/2006c-2/debian/changelog	2006-04-10 22:51:33 UTC (rev 1401)
@@ -1,9 +0,0 @@
-tzdata (2006c-1) unstable; urgency=low
-
-  * Initial release.
-  * For easy updating, this package has been splitted out of the GNU C
-    Library.
-  * Thanks to the authors of the langpack-locales Ubuntu package, which has
-    been used to understand how to process source timezone files.
-
- -- Aurelien Jarno <aurel32@debian.org>  Sat,  8 Apr 2006 19:00:31 +0200

Copied: tzdata/tags/2006c-2/debian/changelog (from rev 1400, tzdata/trunk/debian/changelog)

Deleted: tzdata/tags/2006c-2/debian/control
===================================================================
--- tzdata/trunk/debian/control	2006-04-08 21:27:28 UTC (rev 1360)
+++ tzdata/tags/2006c-2/debian/control	2006-04-10 22:51:33 UTC (rev 1401)
@@ -1,17 +0,0 @@
-Source: tzdata
-Section: libs
-Priority: required
-Build-Depends: debhelper (>= 4.0.0)
-Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org>
-Uploaders: Ben Collins <bcollins@debian.org>, GOTO Masanori <gotom@debian.org>, Philip Blundell <pb@nexus.co.uk>, Jeff Bailey <jbailey@raspberryginger.com>, Daniel Jacobowitz <dan@debian.org>, Clint Adams <schizo@debian.org>, Denis Barbier <barbier@debian.org>, Aurelien Jarno <aurel32@debian.org>
-Standards-Version: 3.6.2
-
-Package: tzdata
-Architecture: all
-Depends: libc-bin (>= 2.3.6-6)
-Replaces: libc0.1, libc0.3, libc6, libc6.1
-Description: Time Zone and Daylight Saving Time Data
- This package contains data that represent the history of local time for many 
- representative locations around the globe. It is updated periodically to 
- reflect changes made by political bodies to time zone boundaries, UTC offsets,
- and daylight-saving rules

Copied: tzdata/tags/2006c-2/debian/control (from rev 1399, tzdata/trunk/debian/control)

Copied: tzdata/tags/2006c-2/debian/patches (from rev 1385, tzdata/trunk/debian/patches)

Deleted: tzdata/tags/2006c-2/debian/postinst
===================================================================
--- tzdata/trunk/debian/postinst	2006-04-08 21:27:28 UTC (rev 1360)
+++ tzdata/tags/2006c-2/debian/postinst	2006-04-10 22:51:33 UTC (rev 1401)
@@ -1,93 +0,0 @@
-#!/bin/bash
-set -e
-export LC_ALL=C
-
-type=$1
-preversion=$2
-
-zone_banner() {
-    TZBase=$(LC_ALL=C TZ=UTC0 date)
-    UTdate=$(TZ=UTC0 date -d "$TZBase")
-    TZdate=$(TZ="$timezone" date -d "$TZBase")
-    extra_info="
-Local time is now:      $TZdate.
-Universal Time is now:  $UTdate."
-    echo "Current default timezone: '$timezone'.$extra_info"
-    echo "Run 'tzconfig' if you wish to change it."
-}
-
-set_timezone() {
-    frontend=`echo "$DEBIAN_FRONTEND" | tr '[:upper:]' '[:lower:]'`
-    if [ "$frontend" = noninteractive ]; then
-        echo "Non-interactive mode, setting timezone to UTC.  Run tzconfig to change."
-        echo "UTC" >/etc/timezone
-        ln -sf /usr/share/zoneinfo/UTC /etc/localtime
-    else
-        echo "Running 'tzconfig' to set this system's timezone."
-        /usr/sbin/tzconfig
-    fi
-}
-
-realpath()
-{
-    fname=${1%/} # strips trailing '/'
-    while [ -L "$fname" ]; do
-	oldfname="$fname"
-	fname="$(command ls -l $fname)"
-	fname="${fname#*\> }"
-	if [ "$fname" = . ] ; then
-	    fname="$(dirname $oldfname)"
-	elif echo $fname | grep -vq '^/' - ; then
-	    fname="$(dirname $oldfname)/$fname"
-	fi
-    done
-    pushd $(dirname $fname) > /dev/null
-    fname=$(pwd -P)/$(basename $fname)
-    popd > /dev/null
-    echo $fname
-}
-
-if [ "$type" = "configure" ]
-then
-    if [ -f /etc/timezone ]; then
-	timezone=$(cat /etc/timezone)
-    else
-	timezone=Factory
-    fi
-    if [ "$timezone" = Factory ]; then
-	if [ -L /etc/localtime ]; then
-	    localtime_link=$(realpath /etc/localtime)
-	    if [ -f "$localtime_link" ]; then
-		link_not_dangling=true
-	    fi
-	    if [ "$link_not_dangling" = true ]; then
-		timezone=$(echo $localtime_link | sed 's%^/usr/share/zoneinfo/%%')
-	    fi
-	fi
-    fi
-    if [ -f /usr/share/zoneinfo/$timezone ] && [ "$timezone" != Factory ]
-    then
-#	zic -l $timezone
-	rm -f /etc/localtime && \
-	ln -sf /usr/share/zoneinfo/$timezone /etc/localtime
-	zone_banner
-    # Handle problem caused by lame old tzconfig.
-    elif [ "$timezone" = "US/Pacific-New" ]
-    then
-	echo "US/Pacific" > /etc/timezone
-#	zic -l US/Pacific
-	rm -f /etc/localtime && \
-	ln -sf /usr/share/zoneinfo/US/Pacific /etc/localtime
-	zone_banner
-    else
-	set_timezone
-    fi
-    if [ "$(date +%Z)" = "/etc/localtime" ]; then
-	set_timezone
-    fi
-fi
-
-
-#DEBHELPER#
-
-exit 0

Copied: tzdata/tags/2006c-2/debian/postinst (from rev 1383, tzdata/trunk/debian/postinst)

Deleted: tzdata/tags/2006c-2/debian/preinst
===================================================================
--- tzdata/trunk/debian/preinst	2006-04-08 21:27:28 UTC (rev 1360)
+++ tzdata/tags/2006c-2/debian/preinst	2006-04-10 22:51:33 UTC (rev 1401)
@@ -1,22 +0,0 @@
-#!/bin/bash
-set -e
-export LC_ALL=C
-
-if [ "$1" = upgrade ]
-then
-    if [ -f /var/lib/dpkg/info/timezone.postrm ]; then
-	rm -f /var/lib/dpkg/info/timezone.postrm
-    fi
-    if [ -f /var/lib/dpkg/info/timezones.postrm ]; then
-	rm -f /var/lib/dpkg/info/timezones.postrm
-    fi
-    if dpkg --compare-versions "$2" lt 2.1.3-8; then
-	if [ -s /etc/timezone ]; then
-	    cp -a /etc/timezone /etc/timezone.save
-	fi
-    fi
-fi
-
-#DEBHELPER#
-
-exit 0

Deleted: tzdata/tags/2006c-2/debian/rules
===================================================================
--- tzdata/trunk/debian/rules	2006-04-08 21:27:28 UTC (rev 1360)
+++ tzdata/tags/2006c-2/debian/rules	2006-04-10 22:51:33 UTC (rev 1401)
@@ -1,75 +0,0 @@
-#!/usr/bin/make -f
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-export LC_ALL=C
-
-TZGEN := $(CURDIR)/tzgen
-TZSOURCE := $(CURDIR)/tzsource
-TIMEZONES := africa \
-             antarctica \
-             asia \
-             australasia \
-             europe \
-             northamerica \
-             southamerica \
-             etcetera \
-             factory \
-             solar87 \
-             solar88 \
-             solar89 \
-             backward \
-             systemv 
-
-build: build-stamp
-build-stamp:
-	dh_testdir
-
-	mkdir $(TZSOURCE)
-	for x in $$(ls tzdata*.tar.gz); do \
-	  tar -xzvC $(TZSOURCE) -f $${x} ;\
-	done
-	for zone in $(TIMEZONES); do \
-	  /usr/sbin/zic -d $(TZGEN) -L /dev/null -y $(TZSOURCE)/yearistype.sh $(TZSOURCE)/$${zone} ; \
-	  /usr/sbin/zic -d $(TZGEN)/posix -L /dev/null -y $(TZSOURCE)/yearistype.sh $(TZSOURCE)/$${zone} ; \
-	  /usr/sbin/zic -d $(TZGEN)/right -L $(TZSOURCE)/leapseconds -y $(TZGEN)/yearistype.sh $(TZSOURCE)/$${zone} ; \
-	done
-						
-	touch $@
-
-clean:
-	dh_testdir
-	dh_testroot
-	-rm -rf $(TZSOURCE) $(TZGEN)
-	rm -f build-stamp
-	dh_clean 
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	# Do nothing
-
-# Build architecture-dependent files here.
-binary-arch: build install
-# We have nothing to do by default.
-
-# Build architecture-independent files here.
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installdirs
-	dh_install
-	dh_installchangelogs
-	dh_link
-	dh_installdocs
-	dh_installinfo
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install

Copied: tzdata/tags/2006c-2/debian/rules (from rev 1384, tzdata/trunk/debian/rules)



Reply to: