diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-12-06 16:23:35 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-12-06 16:27:04 +0100 |
commit | 508d340f3dc09b31a9049066fc6c2fd17de414b7 (patch) | |
tree | 3a4d99b9a4a0b5010912083cfedf3abc4e340a57 /ubuntu/_base/core/tdevelop | |
parent | a29cf137186d696da4327cd6957bfa2e9278527f (diff) | |
download | tde-packaging-508d340f3dc09b31a9049066fc6c2fd17de414b7.tar.gz tde-packaging-508d340f3dc09b31a9049066fc6c2fd17de414b7.zip |
DEB common cdbs rules: Convert to UTC the date from the debian changelog,
which is written to '.tdepkginfo'.
It addresses time zone independence to ensure a reproducible build.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/_base/core/tdevelop')
-rw-r--r-- | ubuntu/_base/core/tdevelop/debian/cdbs/debian-tde.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ubuntu/_base/core/tdevelop/debian/cdbs/debian-tde.mk b/ubuntu/_base/core/tdevelop/debian/cdbs/debian-tde.mk index 24191b2cd..641c6c6cc 100644 --- a/ubuntu/_base/core/tdevelop/debian/cdbs/debian-tde.mk +++ b/ubuntu/_base/core/tdevelop/debian/cdbs/debian-tde.mk @@ -117,7 +117,7 @@ endif echo "# TDE package information" >.tdepkginfo dpkg-parsechangelog | sed -n "s|^Source: |Name: |p" >>.tdepkginfo dpkg-parsechangelog | sed -n "s|^Version: |Version: |p" >>.tdepkginfo - date +"DateTime: %m/%d/%Y %H:%M" -d "$$(dpkg-parsechangelog | sed -n 's|^Date: ||p')" >>.tdepkginfo + date +"DateTime: %m/%d/%Y %H:%M" -u -d "$$(dpkg-parsechangelog | sed -n 's|^Date: ||p')" >>.tdepkginfo post-patches:: .tdepkginfo |