]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Change release target from cvs to git.
authorSimon Josefsson <jas@mocca.josefsson.org>
Fri, 25 May 2007 14:35:53 +0000 (16:35 +0200)
committerSimon Josefsson <jas@mocca.josefsson.org>
Fri, 25 May 2007 14:35:53 +0000 (16:35 +0200)
Makefile.am

index a55399a1d145ef1a052a752a680dac7f1d7ce422..474c47c9c709a9af807e7a7ee89bb80122ce4820 100644 (file)
@@ -33,25 +33,24 @@ update-po: refresh-po
        cvs commit -m "Sync with TP." po/LINGUAS `ls po/*.po | grep -v quot.po`
 
 ChangeLog:
-       cvs2cl --utc --fsf --FSF --usermap .cvsusers -I ChangeLog -I .cvs --window 120 -l "-d"">2005-11-07;today<"""
+       git log --pretty --numstat --summary --since="2005 November 07" -- | git2cl > ChangeLog
        cat .cvscopying >> ChangeLog
 
 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
 htmldir = ../www-$(PACKAGE)
 
 release:
-       if cvs upd -p -r $(tag) NEWS > /dev/null; then false else true; fi
-       cvs rtag $(tag) gnutls
+       ! git-tag -l $(tag) > /dev/null
        rm -f ChangeLog
        make ChangeLog
-       cvs commit -m "" ChangeLog
-       cvs rtag -F $(tag) gnutls
+       git commit -m Generated. ChangeLog
+       git-tag -u b565716f! -m $(VERSION) $(tag)
        make dist
        gpg -b $(distdir).tar.bz2
        gpg --verify $(distdir).tar.bz2.sig
        scp $(distdir).tar.bz2{,.sig} igloo.linux.gr:~ftp/pub/gnutls/devel/
        ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/devel/ && sha1sum *.tar.bz2 > CHECKSUMS'
-       cd doc && ../gendocs.sh -o ../$(htmldir)/manual/ $(PACKAGE) "GNU TLS"
+       cd doc && ../build-aux/gendocs.sh -o ../$(htmldir)/manual/ $(PACKAGE) "GNU TLS"
        cp -v $(distdir).tar.bz2{,.sig} $(htmldir)/releases/
        cp -v doc/reference/html/*.{html,png,css,devhelp} $(htmldir)/reference/
        cd $(htmldir) && cvs add -kb releases/$(distdir).tar.bz2{,.sig} && \