~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_vc_build.m4

pandora-build v0.100 - Fixes several bugs found by cb1kenobi. Add several thoughts from folks at LCA.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
dnl gives unlimited permission to copy and/or distribute it,
4
4
dnl with or without modifications, as long as this notice is preserved.
5
5
 
 
6
AC_DEFUN([_PANDORA_BUILDING_FROM_VC],[
 
7
  pandora_building_from_vc=no
 
8
 
 
9
  if test -d ".bzr" ; then
 
10
    pandora_building_from_bzr=yes
 
11
    pandora_building_from_vc=yes
 
12
  else
 
13
    pandora_building_from_bzr=no
 
14
  fi
 
15
 
 
16
  if test -d ".svn" ; then
 
17
    pandora_building_from_svn=yes
 
18
    pandora_building_from_vc=yes
 
19
  else
 
20
    pandora_building_from_svn=no
 
21
  fi
 
22
 
 
23
  if test -d ".hg" ; then
 
24
    pandora_building_from_hg=yes
 
25
    pandora_building_from_vc=yes
 
26
  else
 
27
    pandora_building_from_hg=no
 
28
  fi
 
29
 
 
30
  if test -d ".git" ; then
 
31
    pandora_building_from_git=yes
 
32
    pandora_building_from_vc=yes
 
33
  else
 
34
    pandora_building_from_git=no
 
35
  fi
 
36
])
 
37
 
6
38
AC_DEFUN([PANDORA_BUILDING_FROM_VC],[
7
 
 
8
 
  ac_cv_building_from_vc=no
9
 
 
10
 
  AS_IF([test -d "${srcdir}/.bzr"],[
11
 
    ac_cv_building_from_bzr=yes
12
 
    ac_cv_building_from_vc=yes
13
 
    ],[
14
 
    ac_cv_building_from_bzr=no
15
 
  ])
16
 
 
17
 
  AS_IF([test -d "${srcdir}/.svn"],[
18
 
    ac_cv_building_from_svn=yes
19
 
    ac_cv_building_from_vc=yes
20
 
    ],[
21
 
    ac_cv_building_from_svn=no
22
 
  ])
23
 
 
24
 
  AS_IF([test -d "${srcdir}/.hg"],[
25
 
    ac_cv_building_from_hg=yes
26
 
    ac_cv_building_from_vc=yes
27
 
    ],[
28
 
    ac_cv_building_from_hg=no
29
 
  ])
30
 
 
31
 
  AS_IF([test -d "${srcdir}/.git"],[
32
 
    ac_cv_building_from_git=yes
33
 
    ac_cv_building_from_vc=yes
34
 
    ],[
35
 
    ac_cv_building_from_git=no
36
 
  ])
37
 
 
38
 
 
 
39
  m4_syscmd(_PANDORA_BUILDING_FROM_VC [
 
40
 
 
41
    PANDORA_RELEASE_DATE=`date +%Y.%m`
 
42
    PANDORA_RELEASE_NODOTS_DATE=`date +%Y%m`
 
43
 
 
44
    # Set some defaults
 
45
    PANDORA_VC_REVNO="0"
 
46
    PANDORA_VC_REVID="unknown"
 
47
    PANDORA_VC_BRANCH="bzr-export"
 
48
 
 
49
    if test "${pandora_building_from_bzr}" = "yes"; then
 
50
      echo "# Grabbing changelog and version information from bzr"
 
51
      PANDORA_BZR_REVNO=`bzr revno`
 
52
      if test "x$PANDORA_BZR_REVNO" != "x${PANDORA_VC_REVNO}" ; then
 
53
        PANDORA_VC_REVNO="${PANDORA_BZR_REVNO}"
 
54
        PANDORA_VC_REVID=`bzr log -r-1 --show-ids | grep revision-id | cut -f2 -d' ' | head -1`
 
55
        PANDORA_VC_BRANCH=`bzr nick`
 
56
      fi
 
57
    fi
 
58
 
 
59
    if ! test -d config ; then
 
60
      mkdir -p config
 
61
    fi
 
62
 
 
63
    cat > config/pandora_vc_revinfo.tmp <<EOF
 
64
PANDORA_VC_REVNO=${PANDORA_VC_REVNO}
 
65
PANDORA_VC_REVID=${PANDORA_VC_REVID}
 
66
PANDORA_VC_BRANCH=${PANDORA_VC_BRANCH}
 
67
PANDORA_RELEASE_DATE=${PANDORA_RELEASE_DATE}
 
68
PANDORA_RELEASE_NODOTS_DATE=${PANDORA_RELEASE_NODOTS_DATE}
 
69
EOF
 
70
    if ! diff config/pandora_vc_revinfo.tmp config/pandora_vc_revinfo >/dev/null 2>&1 ; then
 
71
      mv config/pandora_vc_revinfo.tmp config/pandora_vc_revinfo
 
72
    fi
 
73
    rm -f config/pandora_vc_revinfo.tmp
 
74
  ])
39
75
])
40
76
  
41
 
dnl Takes one argument which is the prefix to append
42
 
AC_DEFUN([PANDORA_EXPORT_BZR_INFO],[
43
 
  m4_ifval(m4_normalize([$1]),[
44
 
    m4_define([PEBI_PREFIX],[])
45
 
  ],[
46
 
    m4_define([PEBI_PREFIX],m4_toupper(m4_normalize($1))[_])
47
 
  ])
48
 
 
49
 
  AC_DEFINE(PEBI_PREFIX[BZR_REVID], ["BZR_REVID"], [bzr revision ID])
50
 
  AC_DEFINE(PEBI_PREFIX[BZR_BRANCH], ["BZR_BRANCH"], [bzr branch name])
51
 
  AC_DEFINE(PEBI_PREFIX[RELEASE_DATE], ["RELEASE_DATE"], [Release date based on the date of the repo checkout])
52
 
  AC_DEFINE(PEBI_PREFIX[RELEASE_VERSION], ["RELEASE_VERSION"], [$1 version number formatted for display])
53
 
  AC_DEFINE(PEBI_PREFIX[RELEASE_COMMENT], ["RELEASE_COMMENT"], [Set to trunk if the branch is the main $1 branch])
54
 
  AC_DEFINE(PEBI_PREFIX[RELEASE_ID], [RELEASE_ID], [$1 version number formatted for numerical comparison])
55
 
])
56
 
 
57
77
AC_DEFUN([_PANDORA_READ_FROM_FILE],[
58
78
  $1=`grep $1 $2 | cut -f2 -d=`
59
79
])
61
81
AC_DEFUN([PANDORA_VC_VERSION],[
62
82
  AC_REQUIRE([PANDORA_BUILDING_FROM_VC])
63
83
 
64
 
  PANDORA_RELEASE_DATE=`date +%Y.%m`
65
 
  PANDORA_RELEASE_NODOTS_DATE=`date +%Y%m`
66
 
 
67
 
  dnl Set some defaults
68
 
  PANDORA_VC_REVNO="0"
69
 
  PANDORA_VC_REVID="unknown"
70
 
  PANDORA_VC_BRANCH="bzr-export"
71
 
 
72
 
  AS_IF([test -f ${srcdir}/config/bzr_revinfo],[
73
 
    _PANDORA_READ_FROM_FILE([PANDORA_VC_REVNO],${srcdir}/config/bzr_revinfo)
74
 
    _PANDORA_READ_FROM_FILE([PANDORA_VC_REVID],${srcdir}/config/bzr_revinfo)
 
84
  _PANDORA_BUILDING_FROM_VC
 
85
 
 
86
  AS_IF([test -f ${srcdir}/config/pandora_vc_revinfo],[
 
87
    _PANDORA_READ_FROM_FILE([PANDORA_VC_REVNO],${srcdir}/config/pandora_vc_revinfo)
 
88
    _PANDORA_READ_FROM_FILE([PANDORA_VC_REVID],${srcdir}/config/pandora_vc_revinfo)
75
89
    _PANDORA_READ_FROM_FILE([PANDORA_VC_BRANCH],
76
 
                            ${srcdir}/config/bzr_revinfo)
 
90
                            ${srcdir}/config/pandora_vc_revinfo)
77
91
    _PANDORA_READ_FROM_FILE([PANDORA_RELEASE_DATE],
78
 
                            ${srcdir}/config/bzr_revinfo)
 
92
                            ${srcdir}/config/pandora_vc_revinfo)
79
93
    _PANDORA_READ_FROM_FILE([PANDORA_RELEASE_NODOTS_DATE],
80
 
                            ${srcdir}/config/bzr_revinfo)
81
 
    _PANDORA_READ_FROM_FILE([PANDORA_RELEASE_COMMENT],
82
 
                            ${srcdir}/config/bzr_revinfo)
83
 
  ])
84
 
  AS_IF([test "${ac_cv_building_from_bzr}" = "yes"],[
85
 
dnl  echo "Grabbing changelog and version information from bzr"
86
 
dnl  bzr log --short > ChangeLog || touch ChangeLog
87
 
    PANDORA_BZR_REVNO=`bzr revno`
88
 
    AS_IF([test "x$PANDORA_BZR_REVNO" != "${PANDORA_VC_REVNO}"],[
89
 
      PANDORA_VC_REVNO="${PANDORA_BZR_REVNO}"
90
 
      PANDORA_VC_REVID=`bzr log -r-1 --show-ids | grep revision-id | awk '{print $[]2}' | head -1`
91
 
      PANDORA_VC_BRANCH=`bzr nick`
92
 
      AS_IF([test "x${PANDORA_VC_BRANCH}" != "${PACKAGE}"],[
93
 
        PANDORA_RELEASE_COMMENT="${PANDORA_VC_BRANCH}"
94
 
      ],[
95
 
        PANDORA_RELEASE_COMMENT="trunk"
96
 
      ])
97
 
    ])
98
 
  ])
99
 
  AS_IF([! test -d config],[mkdir -p config])
100
 
  cat > "config/bzr_revinfo" <<EOF
101
 
PANDORA_VC_REVNO=${PANDORA_VC_REVNO}
102
 
PANDORA_VC_REVID=${PANDORA_VC_REVID}
103
 
PANDORA_VC_BRANCH=${PANDORA_VC_BRANCH}
104
 
PANDORA_RELEASE_DATE=${PANDORA_RELEASE_DATE}
105
 
PANDORA_RELEASE_NODOTS_DATE=${PANDORA_RELEASE_NODOTS_DATE}
106
 
PANDORA_RELEASE_COMMENT=${PANDORA_RELEASE_COMMENT}
107
 
EOF
 
94
                            ${srcdir}/config/pandora_vc_revinfo)
 
95
  ])
 
96
  AS_IF([test "x${PANDORA_VC_BRANCH}" != x"${PACKAGE}"],[
 
97
    PANDORA_RELEASE_COMMENT="${PANDORA_VC_BRANCH}"
 
98
  ],[
 
99
    PANDORA_RELEASE_COMMENT="trunk"
 
100
  ])
108
101
    
109
102
  PANDORA_RELEASE_VERSION="${PANDORA_RELEASE_DATE}.${PANDORA_VC_REVNO}"
110
103
  PANDORA_RELEASE_ID="${PANDORA_RELEASE_NODOTS_DATE}${PANDORA_VC_REVNO}"
121
114
  AC_SUBST(PANDORA_RELEASE_VERSION)
122
115
  AC_SUBST(PANDORA_RELEASE_ID)
123
116
])
 
117
 
 
118
AC_DEFUN([PANDORA_VC_INFO_HEADER],[
 
119
  AC_REQUIRE([PANDORA_VC_VERSION])
 
120
  m4_define([PANDORA_VC_PREFIX],m4_toupper(m4_normalize(AC_PACKAGE_NAME))[_])
 
121
 
 
122
  AC_DEFINE_UNQUOTED(PANDORA_VC_PREFIX[VC_REVNO], [$PANDORA_VC_REVNO], [Version control revision number])
 
123
  AC_DEFINE_UNQUOTED(PANDORA_VC_PREFIX[VC_REVID], ["$PANDORA_VC_REVID"], [Version control revision ID])
 
124
  AC_DEFINE_UNQUOTED(PANDORA_VC_PREFIX[VC_BRANCH], ["$PANDORA_VC_BRANCH"], [Version control branch name])
 
125
  AC_DEFINE_UNQUOTED(PANDORA_VC_PREFIX[RELEASE_DATE], ["$PANDORA_RELEASE_DATE"], [Release date of version control checkout])
 
126
  AC_DEFINE_UNQUOTED(PANDORA_VC_PREFIX[RELEASE_NODOTS_DATE], [$PANDORA_RELEASE_NODOTS_DATE], [Numeric formatted release date of checkout])
 
127
  AC_DEFINE_UNQUOTED(PANDORA_VC_PREFIX[RELEASE_COMMENT], ["$PANDORA_RELEASE_COMMENT"], [Set to trunk if the branch is the main $PACKAGE branch])
 
128
  AC_DEFINE_UNQUOTED(PANDORA_VC_PREFIX[RELEASE_VERSION], ["$PANDORA_RELEASE_VERSION"], [Release date and revision number of checkout])
 
129
  AC_DEFINE_UNQUOTED(PANDORA_VC_PREFIX[RELEASE_ID], [$PANDORA_RELEASE_ID], [Numeric formatted release date and revision number of checkout])
 
130
])