[SCM] GNU gnutls branch, master, updated. gnutls-3_0_12-139-g4dbfdd7

"Nikos Mavrogiannopoulos" <[email protected]>
Newsgroups gmane.comp.encryption.gpg.gnutls.cvs
Message-ID <[email protected]>
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU gnutls".

http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=4dbfdd7287f098aa274ebd4f6e256f51679ced08

The branch, master has been updated
       via  4dbfdd7287f098aa274ebd4f6e256f51679ced08 (commit)
      from  7e7e8029a2ec9650a1020442907bb81fd31f98e3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4dbfdd7287f098aa274ebd4f6e256f51679ced08
Author: Nikos Mavrogiannopoulos <[email protected]>
Date:   Tue Jan 31 01:22:09 2012 +0100

    replacing the version is not enough. Regenerate all files depending on .dep on dist-hook.

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

Summary of changes:
 Makefile.am              |   10 ++++++++++
 doc/Makefile.am          |   28 ++++++++++++++--------------
 doc/manpages/Makefile.am |   32 ++++++++++++++++----------------
 3 files changed, 40 insertions(+), 30 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index ed8cc04..4fdae71 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -42,3 +42,13 @@ dist-hook:
 	make ChangeLog
 	cp -f ChangeLog $(distdir)/
 	sed 's/\@VERSION\@/$(VERSION)/g' -i $(distdir)/src/*.def
+	cd $(distdir)/src/ && for i in *.def;do \
+		autogen $$i; \
+		autogen -Tagtexi-cmd.tpl $$i; \
+		cp $$i $$i.tmp; \
+		sed -i 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $$i.tmp; \
+		autogen -Tagman-cmd.tpl $$i.tmp; \
+		rm -f $$i.tmp; \
+		mv -f *.1 ../doc/manpages/; \
+		mv -f *.texi ../doc/manpages; \
+	done
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 392da65..f62cb1e 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -29,41 +29,41 @@ SUBDIRS += reference
 endif
 
 invoke-gnutls-cli.texi: ../src/cli-args.def
-	cd ../src/ && autogen -Tagtexi-cmd.tpl $<
+	-cd ../src/ && autogen -Tagtexi-cmd.tpl $< && \
 	mv ../src/$@ .
 
 invoke-gnutls-cli-debug.texi: ../src/cli-debug-args.def
-	cd ../src/ && autogen -Tagtexi-cmd.tpl $<
+	-cd ../src/ && autogen -Tagtexi-cmd.tpl $< && \
 	mv ../src/$@ .
 
 invoke-gnutls-serv.texi: ../src/serv-args.def
-	cd ../src/ && autogen -Tagtexi-cmd.tpl $<
+	-cd ../src/ && autogen -Tagtexi-cmd.tpl $< && \
 	mv ../src/$@ .
 
 invoke-certtool.texi: ../src/certtool-args.def
-	cd ../src/ && autogen -Tagtexi-cmd.tpl $<
+	-cd ../src/ && autogen -Tagtexi-cmd.tpl $< && \
 	mv ../src/$@ .
 
 invoke-srptool.texi: ../src/srptool-args.def
-	cd ../src/ && autogen -Tagtexi-cmd.tpl $<
-	mv ../src/$@ .
-	sed -i 's/@subsection/@subsubsection/g' $@
+	-cd ../src/ && autogen -Tagtexi-cmd.tpl $< && \
+	mv ../src/$@ . && \
+	sed -i 's/@subsection/@subsubsection/g' $@ && \
 	sed -i 's/@section/@subsection/g' $@
 
 invoke-ocsptool.texi: ../src/ocsptool-args.def
-	cd ../src/ && autogen -Tagtexi-cmd.tpl $<
+	-cd ../src/ && autogen -Tagtexi-cmd.tpl $< && \
 	mv ../src/$@ .
 
 invoke-psktool.texi: ../src/psk-args.def
-	cd ../src/ && autogen -Tagtexi-cmd.tpl $<
-	mv ../src/$@ .
-	sed -i 's/@subsection/@subsubsection/g' $@
+	-cd ../src/ && autogen -Tagtexi-cmd.tpl $< && \
+	mv ../src/$@ . && \
+	sed -i 's/@subsection/@subsubsection/g' $@ && \
 	sed -i 's/@section/@subsection/g' $@
 
 invoke-p11tool.texi: ../src/p11tool-args.def
-	cd ../src/ && autogen -Tagtexi-cmd.tpl $<
-	mv ../src/$@ .
-	sed -i 's/@subsection/@subsubsection/g' $@
+	-cd ../src/ && autogen -Tagtexi-cmd.tpl $< && \
+	mv ../src/$@ . && \
+	sed -i 's/@subsection/@subsubsection/g' $@ && \
 	sed -i 's/@section/@subsection/g' $@
 
 info_TEXINFOS = gnutls.texi gnutls-guile.texi
diff --git a/doc/manpages/Makefile.am b/doc/manpages/Makefile.am
index b13af2a..4a344c7 100644
--- a/doc/manpages/Makefile.am
+++ b/doc/manpages/Makefile.am
@@ -33,43 +33,43 @@ endif
 # is out, replace the sed and tmp files with a simple
 # autogen -DMAN_SECTION=1 -Tagman-cmd.tpl $<
 certtool.1: ../../src/certtool-args.def
-	sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp
-	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp
+	-sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp && \
+	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp && \
 	rm -f "$<".tmp
 
 ocsptool.1: ../../src/ocsptool-args.def
-	sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp
-	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp
+	-sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp && \
+	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp && \
 	rm -f "$<".tmp
 
 gnutls-cli.1: ../../src/cli-args.def
-	sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp
-	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp
+	-sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp && \
+	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp && \
 	rm -f "$<".tmp
 
 gnutls-serv.1: ../../src/serv-args.def
-	sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp
-	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp
+	-sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp && \
+	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp && \
 	rm -f "$<".tmp
 
 gnutls-cli-debug.1: ../../src/cli-debug-args.def
-	sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp
-	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp
+	-sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp && \
+	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp && \
 	rm -f "$<".tmp
 
 srptool.1: ../../src/srptool-args.def
-	sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp
-	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp
+	-sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp && \
+	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp && \
 	rm -f "$<".tmp
 
 p11tool.1: ../../src/p11tool-args.def
-	sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp
-	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp
+	-sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp && \
+	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp && \
 	rm -f "$<".tmp
 
 psktool.1: ../../src/psk-args.def
-	sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp
-	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp
+	-sed 's/@subheading \(.*\)/@*\n@var{\1}\n@*/' $< > "$<".tmp && \
+	autogen -DMAN_SECTION=1 -Tagman-cmd.tpl "$<".tmp && \
 	rm -f "$<".tmp
 
 APIMANS =


hooks/post-receive
-- 
GNU gnutls
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.