Author: yamakenz
Date: Tue Jul  3 01:45:35 2007
New Revision: 4656

Modified:
   trunk/Makefile.am
   trunk/README
   trunk/RELNOTE
   trunk/configure.ac
   trunk/doc/RELEASING
   trunk/helper/dict-word-list-win-gtk.c
   trunk/make-dist.sh
   trunk/make-wc.sh
   trunk/po/Makevars
   trunk/qt/chardict/po/Makevars
   trunk/uim.spec.in
   trunk/uim/uim.h

Log:
* This commit update website URLs and mailinglist address for Google
  Code hosting

* doc/RELEASING
  - Update release process for Google Code hosting

* uim/uim.h
  - Update svn repository URL in a comment

* helper/dict-word-list-win-gtk.c
  - (help_about_action_cb): Update website URL

* configure.ac
  - Update mailinglist address

* po/Makevars
* qt/chardict/po/Makevars
  - (MSGID_BUGS_ADDRESS): Update mailinglist address

* README
* RELNOTE
* uim.spec.in
* make-wc.sh
* make-dist.sh
* Makefile.am
  - Update site URLs


Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am   (original)
+++ trunk/Makefile.am   Tue Jul  3 01:45:35 2007
@@ -19,7 +19,7 @@
 # $(distdir) does work as a part of $(RELEASE_URL) when configured as a
 # subpackage.
 DIST_NAME = $(PACKAGE)-$(VERSION)$(RELEASE_SUFFIX)
-UIM_REPOSITORY = http://anonsvn.freedesktop.org/svn/uim
+UIM_REPOSITORY = http://uim.googlecode.com/svn
 TAGS_REPOSITORY = $(UIM_REPOSITORY)/tags
 #RELEASE_URL     = $(UIM_REPOSITORY)/trunk
 RELEASE_URL     = $(TAGS_REPOSITORY)/$(DIST_NAME)

Modified: trunk/README
==============================================================================
--- trunk/README        (original)
+++ trunk/README        Tue Jul  3 01:45:35 2007
@@ -7,11 +7,10 @@
 input method development platform, and useful input method environment
 for users of desktop and embedded platforms.
 
-See http://uim.freedesktop.org/ for further details.
+See http://code.google.com/p/uim/ for further details.
 
 
 Acknowledgements
 ----------------
 
-This software is hosted on freedesktop.org.
 Part of this software had been funded by IPA (http://www.ipa.go.jp/)

Modified: trunk/RELNOTE
==============================================================================
--- trunk/RELNOTE       (original)
+++ trunk/RELNOTE       Tue Jul  3 01:45:35 2007
@@ -13,8 +13,8 @@
 
 Please report us if you find a problem.
 
-Homepage:            http://uim.freedesktop.org/
-Mailinglist:         [EMAIL PROTECTED]
+Homepage:            http://code.google.com/p/uim/
+Mailinglist:         [EMAIL PROTECTED]
 Bug tracking system: http://bugs.freedesktop.org/
 
 

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac  (original)
+++ trunk/configure.ac  Tue Jul  3 01:45:35 2007
@@ -1,5 +1,5 @@
 AC_PREREQ(2.60b)
-AC_INIT([uim], [1.5.0], [EMAIL PROTECTED])
+AC_INIT([uim], [1.5.0], [EMAIL PROTECTED])
 AC_CONFIG_SRCDIR([uim/uim.c])
 AC_CONFIG_HEADERS([uim/config.h])
 AM_INIT_AUTOMAKE([1.10 dist-bzip2])

Modified: trunk/doc/RELEASING
==============================================================================
--- trunk/doc/RELEASING (original)
+++ trunk/doc/RELEASING Tue Jul  3 01:45:35 2007
@@ -39,7 +39,7 @@
 
 4. Export a fresh tree from svn.
 
-   svn export http://anonsvn.freedesktop.org/svn/uim/trunk
+   svn export http://uim.googlecode.com/svn/trunk
 
 5. Do test.
 
@@ -64,17 +64,17 @@
 
    On an alpha release, branch the tree at first.
 
-   svn cp svn+ssh://svn.freedesktop.org/svn/uim/trunk \
-          svn+ssh://svn.freedesktop.org/svn/uim/branches/x.y
+   svn cp https://uim.googlecode.com/svn/trunk \
+          https://uim.googlecode.com/svn/branches/x.y
 
    And then tag.
 
-   svn cp svn+ssh://svn.freedesktop.org/svn/uim/branches/x.y \
-          svn+ssh://svn.freedesktop.org/svn/uim/tags/uim-x.y.z-alpha
+   svn cp https://uim.googlecode.com/svn/branches/x.y \
+          https://uim.googlecode.com/svn/tags/uim-x.y.z-alpha
 
 10. Export the fresh tagged tree from svn.
 
-   svn export http://anonsvn.freedesktop.org/svn/uim/tags/uim-x.y.z-alpha
+   svn export http://uim.googlecode.com/svn/tags/uim-x.y.z-alpha
 
 11. Make the distribution.
 
@@ -85,27 +85,53 @@
 
 12. Copy the source tarball to the download site.
 
-   Place alpha and beta into /unstable, final releases into /stable, and
-   snapshots into /snapshots
+   Upload the file by the official uploading script:
 
-   http://uim.freedesktop.org/releases/uim/stable/
-   http://uim.freedesktop.org/releases/uim/unstable/
-   http://uim.freedesktop.org/releases/uim/snapshots/
+     http://code.google.com/p/support/wiki/ScriptedUploads
+
+   Don't forget adding appropriate tags as follows.
+
+   Final release:
+
+     googlecode-upload.py -u yamakenz -p uim \
+                          -s 'uim 1.5.0' -l 'Stable Featured' \
+                          uim-1.5.0.tar.bz2
+
+   Alpha or beta release:
+
+     googlecode-upload.py -u yamakenz -p uim \
+                          -s 'uim 1.5.0-alpha' -l 'Unstable' \
+                          uim-1.5.0-alpha.tar.bz2
+
+   Snapshot release:
+
+     googlecode-upload.py -u yamakenz -p uim \
+                          -s 'uim trunk-snapshot20070703' -l 'Snapshot' \
+                          uim-trunk-snapshot20070703.tar.bz2
+
+   And untag 'Featured' from previous final release files by the web
+   interface.
 
 13. Update the web pages.
 
-   http://uim.freedesktop.org/
-   http://uim.freedesktop.org/wiki/UimDownload
+   http://code.google.com/p/uim/
+   http://code.google.com/p/uim/wiki/FrontPage
+   http://code.google.com/p/uim/wiki/UimDownload
+
+   Update FrontPage first and copy it into the project description
+   (homepage).
 
+   <obsolete>
    The checksums of the files must not directly be written into the
    anyone-rewritable wikipage, to prevent spoofings. It should be a link to the
    release announce which contain the checksum information.
+   </obsolete>
 
-14. Send a message to [EMAIL PROTECTED]
+14. Send a message to [EMAIL PROTECTED]
 
    <write announcement here>
    
-     http://uim.freedesktop.org/wiki/UimDownload
+     http://code.google.com/p/uim/wiki/UimDownload
 
    MD5 (uim-1.4.0-example.tar.gz) = cff14a6ad95a6a1303b527a86d27bff4
    MD5 (uim-1.4.0-example.tar.bz2) = b2e96af101a0c51df697990f6311f6f2

Modified: trunk/helper/dict-word-list-win-gtk.c
==============================================================================
--- trunk/helper/dict-word-list-win-gtk.c       (original)
+++ trunk/helper/dict-word-list-win-gtk.c       Tue Jul  3 01:45:35 2007
@@ -597,7 +597,7 @@
                         "name", name,
                         "version", VERSION,
                         "copyright", copyright,
-                        "website", "http://uim.freedesktop.org";,
+                        "website", "http://code.google.com/p/uim/";,
                         "authors", authors,
                         "logo", transparent,
                         NULL);

Modified: trunk/make-dist.sh
==============================================================================
--- trunk/make-dist.sh  (original)
+++ trunk/make-dist.sh  Tue Jul  3 01:45:35 2007
@@ -2,7 +2,7 @@
 
 MAKE=make
 
-UIM_REPOSITORY="http://anonsvn.freedesktop.org/svn/uim";
+UIM_REPOSITORY="http://uim.googlecode.com/svn";
 SSCM_REPOSITORY="${UIM_REPOSITORY}/sigscheme-trunk"
 LIBGCROOTS_REPOSITORY="${UIM_REPOSITORY}/libgcroots-trunk"
 TAGS_REPOSITORY="${UIM_REPOSITORY}/tags"

Modified: trunk/make-wc.sh
==============================================================================
--- trunk/make-wc.sh    (original)
+++ trunk/make-wc.sh    Tue Jul  3 01:45:35 2007
@@ -5,14 +5,14 @@
 #
 # Usage:
 #
-#     $ svn co http://anonsvn.freedesktop.org/svn/uim/trunk uim-trunk
+#     $ svn co http://uim.googlecode.com/svn/trunk uim-trunk
 #     $ cd uim-trunk
 #     $ ./make-wc.sh
 #     $ make
 #
 #   Or if you are an uim committer,
 #
-#     $ svn co svn+ssh://svn.freedesktop.org/svn/uim/trunk uim-trunk
+#     $ svn co https://uim.googlecode.com/svn/trunk uim-trunk
 #     $ cd uim-trunk
 #     $ ./make-wc.sh
 #     $ make
@@ -43,8 +43,8 @@
 
 MAKE=make
 
-#UIM_REPOSITORY="http://anonsvn.freedesktop.org/svn/uim";
-#UIM_REPOSITORY="svn+ssh://svn.freedesktop.org/svn/uim"
+#UIM_REPOSITORY="http://uim.googlecode.com/svn";
+#UIM_REPOSITORY="https://uim.googlecode.com/svn";
 # autoselect
 UIM_REPOSITORY=`svn info | grep 'Repository Root:' | sed 's/.*: //'`
 

Modified: trunk/po/Makevars
==============================================================================
--- trunk/po/Makevars   (original)
+++ trunk/po/Makevars   Tue Jul  3 01:45:35 2007
@@ -34,7 +34,7 @@
 # It can be your email address, or a mailing list address where translators
 # can write to without being subscribed, or the URL of a web page through
 # which the translators can contact you.
-MSGID_BUGS_ADDRESS [EMAIL PROTECTED]
+MSGID_BUGS_ADDRESS [EMAIL PROTECTED]
 
 # This is the list of locale categories, beyond LC_MESSAGES, for which the
 # message catalogs shall be used.  It is usually empty.

Modified: trunk/qt/chardict/po/Makevars
==============================================================================
--- trunk/qt/chardict/po/Makevars       (original)
+++ trunk/qt/chardict/po/Makevars       Tue Jul  3 01:45:35 2007
@@ -38,7 +38,7 @@
 # It can be your email address, or a mailing list address where translators
 # can write to without being subscribed, or the URL of a web page through
 # which the translators can contact you.
-MSGID_BUGS_ADDRESS [EMAIL PROTECTED]
+MSGID_BUGS_ADDRESS [EMAIL PROTECTED]
 
 # This is the list of locale categories, beyond LC_MESSAGES, for which the
 # message catalogs shall be used.  It is usually empty.

Modified: trunk/uim.spec.in
==============================================================================
--- trunk/uim.spec.in   (original)
+++ trunk/uim.spec.in   Tue Jul  3 01:45:35 2007
@@ -2,7 +2,7 @@
 Name: uim
 Version: @VERSION@
 Release: 1
-URL: http://uim.freedesktop.org/
+URL: http://code.google.com/p/uim/
 Source0: %{name}-%{version}.tar.gz
 License: BSD
 Group: System Environment/Libraries

Modified: trunk/uim/uim.h
==============================================================================
--- trunk/uim/uim.h     (original)
+++ trunk/uim/uim.h     Tue Jul  3 01:45:35 2007
@@ -814,7 +814,7 @@
  * completely, adding separated surrounding text deletion interface is better
  * solution at now.  -- YamaKen 2006-10-07
  *
- * http://anonsvn.freedesktop.org/svn/uim/branches/composer/scm/event.scm
+ * http://uim.googlecode.com/svn/branches/composer/scm/event.scm
  *
  * (define-event 'commit
  *   upward-event-rec-spec

Reply via email to