/Makefile.in
# Files distributed but not under version control:
-/archive.tar.gz
+/archive.cvs.tar.gz
+2009-09-27 Bruno Haible <bruno@clisp.org>
+
+ * add-to-archive: Use archive.cvs.tar.gz instead of archive.tar.gz.
+ * autopoint.in: Likewise.
+ * Makefile.am (archive.cvs.tar.gz): Renamed from archive.tar.gz.
+ (EXTRA_DIST, gettextsrc_DATA): Update.
+
2009-08-14 Bruno Haible <bruno@clisp.org>
* Makefile.am (archive.tar.gz): Update error message.
DISTCLEANFILES += gettextize autopoint
-EXTRA_DIST += add-to-archive cvsuser.c archive.tar.gz
+EXTRA_DIST += add-to-archive cvsuser.c archive.cvs.tar.gz
gettextsrcdir = $(datadir)/gettext
-gettextsrc_DATA = archive.tar.gz
+gettextsrc_DATA = archive.cvs.tar.gz
-# The archive.tar.gz is not in the CVS. Alpha-testers must use the one from an
-# already installed release.
-archive.tar.gz:
- if test -f $(gettextsrcdir)/archive.tar.gz; then \
- cp -p $(gettextsrcdir)/archive.tar.gz $@; \
+# The archive.cvs.tar.gz is not in the CVS. Alpha-testers must use the one from
+# an already installed release.
+archive.cvs.tar.gz:
+ if test -f $(gettextsrcdir)/archive.cvs.tar.gz; then \
+ cp -p $(gettextsrcdir)/archive.cvs.tar.gz $@; \
else \
- echo "archive.tar.gz is not under version control. Please copy the archive.tar.gz from an already installed release to gettext-tools/misc/." 1>&2; \
+ echo "archive.cvs.tar.gz is not under version control. Please copy the archive.cvs.tar.gz from an already installed release to gettext-tools/misc/." 1>&2; \
exit 1; \
fi
#! /bin/sh
#
-# Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# Usage: add-to-archive /somewhere/gettext-0.xx.yy.tar.gz
# Adds the infrastructure files for gettext version 0.xx.yy to the compressed
-# CVS repository in the archive.tar.gz file.
+# CVS repository in the archive.cvs.tar.gz file.
if test $# != 1; then
echo "Usage: add-to-archive /somewhere/gettext-0.xx.yy.tar.gz"
cvsroot=`pwd`/autopoint-files
mkdir "$cvsroot"
cvs -d "$cvsroot" init
-(cd autopoint-files && tar xvfz ../archive.tar.gz)
+(cd autopoint-files && tar xvfz ../archive.cvs.tar.gz)
cvsver=$pack-`echo "$ver" | sed -e 's/\./_/g'`
(cd "$work_archive"
CVSUSER=$cvsuser LD_PRELOAD=$cvsuser_hack \
cvs -d "$cvsroot" import -m "Import $pack_ver" archive release "$cvsver"
)
-(cd autopoint-files && tar cvfz ../archive.tar.gz --owner=root --group=root archive)
+(cd autopoint-files && tar cvfz ../archive.cvs.tar.gz --owner=root --group=root archive)
(cd autopoint-files && du archive)
# Clean up.
# Need to pass -d "$CVSROOT", because there may be a CVS directory in the
# current directory.
cvs -d "$CVSROOT" init
-gzip -d -c < "$gettext_dir/archive.tar.gz" | (cd "$cvs_dir" && tar xf -)
+gzip -d -c < "$gettext_dir/archive.cvs.tar.gz" | (cd "$cvs_dir" && tar xf -)
cd "$work_dir"
cvsver=gettext-`echo "$ver" | sed -e 's/\./_/g'`