From e5b9965c183e761aefadcb975930449bcb4ab6eb Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sat, 13 Apr 2013 23:56:00 +0200 Subject: [PATCH] misc: we use git now, not mercurial This impacts: - .version (kcf version) - configure.ac (kcf version) - scripts/version.sh (get the cset) - .gitignore (instead of .hgignore) Signed-off-by: "Yann E. MORIN" --- .gitignore | 43 +++++++++++++++++++++++++++++++++++++++++++ .hgignore | 46 ---------------------------------------------- .version | 2 +- configure.ac | 4 ++-- scripts/version.sh | 8 ++++---- 5 files changed, 50 insertions(+), 53 deletions(-) create mode 100644 .gitignore delete mode 100644 .hgignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a74794a --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +.*.swp +*.o +*.lo +*.a +*.la +*.lai +*.exe + +.libs/ + +/frontends/conf/conf +/frontends/conf/*-conf +/frontends/gconf/gconf +/frontends/gconf/*-gconf +/frontends/mconf/mconf +/frontends/mconf/*-mconf +/frontends/nconf/nconf +/frontends/nconf/*-nconf +/frontends/qconf/qconf +/frontends/qconf/*-qconf +/frontends/qconf/qconf.moc + +/libs/images/images.c +/libs/images/images.h +/libs/parser/?conf.c + +/utils/tweak +/utils/gettext +/utils/*-gettext + +aclocal.m4 +configure +config.log +config.status +libtool + +Makefile +Makefile.in +stamp-h1 + +.deps/ +/autom4te.cache/ +/scripts/.autostuff diff --git a/.hgignore b/.hgignore deleted file mode 100644 index b0c027f..0000000 --- a/.hgignore +++ /dev/null @@ -1,46 +0,0 @@ -syntax: glob - -.*.swp -*.o -*.lo -*.a -*.la -*.lai -*.exe - -frontends/conf/conf -frontends/conf/*-conf -frontends/gconf/gconf -frontends/gconf/*-gconf -frontends/mconf/mconf -frontends/mconf/*-mconf -frontends/nconf/nconf -frontends/nconf/*-nconf -frontends/qconf/qconf -frontends/qconf/*-qconf -frontends/qconf/qconf.moc -frontends/*/.libs - -libs/images/images.c -libs/images/images.h -libs/parser/?conf.c -libs/*/.libs - -utils/tweak -utils/gettext -utils/*-gettext -utils/.libs - -aclocal.m4 -configure -config.log -config.status -libtool - -Makefile -Makefile.in -stamp-h1 - -.deps/ -autom4te.cache/ -scripts/.autostuff diff --git a/.version b/.version index adadaa0..343485f 100644 --- a/.version +++ b/.version @@ -1,2 +1,2 @@ 3.9.0-rc4 8bb9660418e05bb1845ac1a2428444d78e322cc7 Unicycling Gorilla -hg +git diff --git a/configure.ac b/configure.ac index e90fd17..ad0cf5f 100644 --- a/configure.ac +++ b/configure.ac @@ -31,7 +31,7 @@ AS_IF( AM_INIT_AUTOMAKE([foreign]) AS_IF( - [test "$(${srcdir}/scripts/version.sh --internal)" = "hg"], + [test "$(${srcdir}/scripts/version.sh --internal)" = "git"], [AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) @@ -68,7 +68,7 @@ AC_SUBST([wall_CFLAGS],[${wall_CFLAGS}]) # For the devel tree, do build with -Werror by default, unless user # explicitly disables -Werror AS_IF( - [test "$(${srcdir}/scripts/version.sh --internal)" = "hg"], + [test "$(${srcdir}/scripts/version.sh --internal)" = "git"], [werror_CFLAGS=-Werror]) AC_ARG_ENABLE( [werror], diff --git a/scripts/version.sh b/scripts/version.sh index b3d0c6e..80d1041 100755 --- a/scripts/version.sh +++ b/scripts/version.sh @@ -29,10 +29,10 @@ k_ver_plain="$( printf "%s" "${k_ver}" \ |sed -r -e 's/-rc.*//;' )" case "${kf_ver}" in - hg) kf_ver="hg_$( hg id -i -r . )" - k_ver_extra="$( printf "_%-7.7s" "${k_cset}" )" - ;; - *) k_ver_extra="";; + git) kf_ver="-$( git rev-parse --short HEAD )" + k_ver_extra="$( printf "_%-7.7s" "${k_cset}" )" + ;; + *) k_ver_extra="";; esac if [ "${plain}" -eq 1 ]; then -- 2.39.5