From ff5c55e14d7faddf1e7af3ca22886a52fd91c8ec Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Wed, 18 Oct 2023 14:38:22 +0300 Subject: [PATCH] [#245] Ignore debian/changelog for clean builds Changes in debian/changelog produce `-dirty` suffix in version. Signed-off-by: Alex Vanin --- .gitignore | 1 + Makefile | 1 + debian/{changelog => changelog.init} | 0 3 files changed, 2 insertions(+) rename debian/{changelog => changelog.init} (100%) diff --git a/.gitignore b/.gitignore index f7a0de7..b1580fe 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ coverage.html # debian package build files debian/files +debian/changelog debian/*.log debian/*.substvars debian/frostfs-s3-gw/ diff --git a/Makefile b/Makefile index 5822bcb..0d1bd1c 100755 --- a/Makefile +++ b/Makefile @@ -160,6 +160,7 @@ protoc: # Package for Debian debpackage: + cp debian/changelog.init debian/changelog dch --package frostfs-s3-gw \ --controlmaint \ --newversion $(PKG_VERSION) \ diff --git a/debian/changelog b/debian/changelog.init similarity index 100% rename from debian/changelog rename to debian/changelog.init