From 16965769bcdbd315818dd5b8a48edbcc01333ceb Mon Sep 17 00:00:00 2001 From: "Ward Nakchbandi (Cosmic Fusion)" Date: Mon, 7 Aug 2023 21:09:20 +0300 Subject: [PATCH] initial commit --- main.sh | 3 +++ release.sh | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/main.sh b/main.sh index 653c454..e2203d4 100755 --- a/main.sh +++ b/main.sh @@ -1,3 +1,6 @@ +#! /bin/bash +set -e + # Clone Upstream git clone https://gitlab.freedesktop.org/mesa/mesa cp -rvf ./debian ./mesa/ diff --git a/release.sh b/release.sh index b12e921..e2203d4 100755 --- a/release.sh +++ b/release.sh @@ -1,10 +1,12 @@ +#! /bin/bash +set -e + # Clone Upstream git clone https://gitlab.freedesktop.org/mesa/mesa cp -rvf ./debian ./mesa/ cd ./mesa touch debian/changelog -#echo -e "linux-firmware ("$(date '+%Y%m%d')".git-99pika"$(date '+%M')") lunar; urgency=medium\n\n * New Upstream Release\n\n -- Ward Nakchbandi Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog -echo -e "mesa (23.3-git.$(git rev-parse HEAD)-99pika"$(date '+%M')") lunar; urgency=medium\n\n * New Git Release\n\n -- Ward Nakchbandi Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog +echo -e "mesa (23.3.git."$(git rev-parse --short HEAD)"-99pika"$(date '+%Y%m%d')") lunar; urgency=medium\n\n * New GIT Release\n\n -- Ward Nakchbandi Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog # Get build deps apt-get build-dep ./ -y