aboutsummaryrefslogtreecommitdiffstats
path: root/cad/kicad-library-templates-devel/files/newVersion.sh
blob: 4887ff4f4ebdd7fa5ab5929646d8707dbc43c304 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

#GIT_SRC_HASH=`cd kicad-repo; git log -n 1 --pretty=format:"%H"`
#GIT_SRC_DATE=`cd kicad-repo; git log -n 1 --date=iso-local -n 1 --pretty=format:"%cd" | \
#        cut -c '1-19' | sed -e 's,-,,g' -e 's,:,,g' -e 's, ,,g'`

CURDIR=`pwd`
WRKDIR=`pwd`/work
#mkdir -p "${WRKDIR}"

if [ \! -d "${CURDIR}/kicad-templates" ]; then
 git clone https://gitlab.com/kicad/libraries/kicad-templates.git -b master "${CURDIR}/kicad-templates";
else
  cd "${CURDIR}/kicad-templates"
  git pull;
fi
cd "${CURDIR}/kicad-templates"
GIT_TMPL_HASH=`git log -n 1 --pretty=format:"%H"`;
GIT_TMPL_DATE=`git log -n 1 --date=iso-local -n 1 --pretty=format:"%cd" | \
    cut -c '1-19' | sed -e 's,-,,g' -e 's,:,,g' -e 's, ,,g'`

echo "$GIT_TMPL_HASH, $GIT_TMPL_DATE"
echo "GIT_TMPL_HASH=  ${GIT_TMPL_HASH}"    > ${CURDIR}/Makefile.git_rev
echo "GIT_TMPL_DATE=  ${GIT_TMPL_DATE}"   >> ${CURDIR}/Makefile.git_rev