# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Test timestamps" HOMEPAGE="http://www.gentoo.org/" SRC_URI="" LICENSE="public-domain" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" STAMPS=" 000000000 999900000 999990000 999999000 999999800 999999880 999999881 999999900 999999999 " src_install() { local t dodir /usr/share/test-timestamps for t in ${STAMPS}; do # works with touch from coreutils only touch --date="2009-12-08 23:59:59.${t} +0000" \ "${D}/usr/share/test-timestamps/file-${t}" || die done einfo "${EBUILD_PHASE}" ls --full-time "${D}/usr/share/test-timestamps" } pkg_postinst() { einfo "${EBUILD_PHASE}" ls --full-time "${ROOT}/usr/share/test-timestamps" }