[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.8.8-884-g5cd39b7

Jesse Vincent jesse at bestpractical.com
Mon Sep 27 16:28:44 EDT 2010


The branch, 3.9-trunk has been updated
       via  5cd39b7d03e5d39ba9a98cb1294b448184bf9720 (commit)
       via  35407115a9178d576365d19786c08e45be274ae9 (commit)
       via  b04a7c77c76cffa0c734f4bff76b897335539369 (commit)
      from  a1183d4801dc327656a00441e19f14d2f7bbee58 (commit)

Summary of changes:
 Makefile.in                      |    3 ++-
 configure.ac                     |    8 ++++----
 {lib/RT/I18N => share/po}/rt.pot |    1 -
 3 files changed, 6 insertions(+), 6 deletions(-)
 rename {lib/RT/I18N => share/po}/rt.pot (99%)

- Log -----------------------------------------------------------------
commit b04a7c77c76cffa0c734f4bff76b897335539369
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Mon Sep 27 15:33:10 2010 -0400

    move the .po template to share/po

diff --git a/lib/RT/I18N/rt.pot b/share/po/rt.pot
similarity index 99%
rename from lib/RT/I18N/rt.pot
rename to share/po/rt.pot
index c7c9209..6a8ef9b 100644
--- a/lib/RT/I18N/rt.pot
+++ b/share/po/rt.pot
@@ -7634,4 +7634,3 @@ msgstr ""
 #: share/html/Elements/RT__Group/ColumnMap:65 share/html/Elements/RT__Group/ColumnMap:73 share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__Queue/ColumnMap:85
 msgid "yes"
 msgstr ""
-

commit 35407115a9178d576365d19786c08e45be274ae9
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Mon Sep 27 16:28:58 2010 -0400

    update autoconf to pull our version from git

diff --git a/configure.ac b/configure.ac
index 8a6a07f..3b0046b 100755
--- a/configure.ac
+++ b/configure.ac
@@ -7,16 +7,16 @@ AC_REVISION($Revision$)dnl
 
 dnl Setup autoconf
 AC_PREREQ([2.53])
-AC_INIT(RT, 3.9.HEAD, [rt-bugs at bestpractical.com])
+AC_INIT(RT, m4_esyscmd([(git describe --tags || echo "rt-3.9.EXPORTED" )| tr -d "\n"]), [rt-bugs at bestpractical.com])
 AC_CONFIG_SRCDIR([lib/RT.pm.in])
 
 dnl Extract RT version number components
 AC_SUBST([rt_version_major],
-	m4_bregexp(AC_PACKAGE_VERSION,[^\(\w+\)\.\(\w+\)\(\.\(\w+\)\)?],[\1]))
+	m4_bregexp(AC_PACKAGE_VERSION,[^rt-\(\w+\)\.\(\w+\)\.\(.+\)$],[\1]))
 AC_SUBST([rt_version_minor],
-	m4_bregexp(AC_PACKAGE_VERSION,[^\(\w+\)\.\(\w+\)\(\.\(\w+\)\)?],[\2]))
+	m4_bregexp(AC_PACKAGE_VERSION,[^rt-\(\w+\)\.\(\w+\)\.\(.+\)$],[\2]))
 AC_SUBST([rt_version_patch],
-	m4_bregexp(AC_PACKAGE_VERSION,[^\(\w+\)\.\(\w+\)\(\.\(\w+\)\)?],[\4]))
+	m4_bregexp(AC_PACKAGE_VERSION,[^rt-\(\w+\)\.\(\w+\)\.\(.+\)$],[\3]))
 test "x$rt_version_major" = 'x' && rt_version_major=0
 test "x$rt_version_minor" = 'x' && rt_version_minor=0
 test "x$rt_version_patch" = 'x' && rt_version_patch=0

commit 5cd39b7d03e5d39ba9a98cb1294b448184bf9720
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Mon Sep 27 16:29:22 2010 -0400

    updated our snapshot target to gpg clearsign

diff --git a/Makefile.in b/Makefile.in
index 4829ddc..adf6fe2 100755
--- a/Makefile.in
+++ b/Makefile.in
@@ -517,5 +517,6 @@ snapshot:
 	git archive --prefix "$(SNAPSHOT)/"  HEAD | tar -xf -
 	( cd $(SNAPSHOT) && autoconf && ./configure )
 	tar -czf "$(SNAPSHOT).tar.gz" "$(SNAPSHOT)/"
+	gpg --clearsign "$(SNAPSHOT).tar.gz"
+	sha1sum "$(SNAPSHOT).tar.gz*"
 	rm -fr "$(SNAPSHOT)/"
-

-----------------------------------------------------------------------


More information about the Rt-commit mailing list