[git] gnupg-doc - branch, master, updated. ea7e17dafbb7acfa201d628edf2d0cebf8742206

by Werner Koch cvs at cvs.gnupg.org
Fri Feb 6 00:24:51 CET 2015


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 "The GnuPG website and other docs".

The branch, master has been updated
       via  ea7e17dafbb7acfa201d628edf2d0cebf8742206 (commit)
       via  f9dac45c4a69803f0a3b22a068123158e9682a4c (commit)
      from  650d86f2193ce6125c8c60fb39499f0b11069503 (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 ea7e17dafbb7acfa201d628edf2d0cebf8742206
Author: Werner Koch <wk at gnupg.org>
Date:   Fri Feb 6 00:24:25 2015 +0100

    tools: Fix overflow of the donation progress bar.

diff --git a/tools/mkkudos.sh b/tools/mkkudos.sh
index 3dbcab8..6d7e32b 100755
--- a/tools/mkkudos.sh
+++ b/tools/mkkudos.sh
@@ -87,8 +87,9 @@ goal="120000"
 tmp=$(grep '^2014:12:' "$donations")
 euro=$(echo "$tmp" | awk -F: '{printf "%d", int($8 + 0.5)}')
 euro=$(($euro + $euroyr_campaign))
-percent=$(echo "$euro:$goal" | awk -F: '{printf "%d",(int($1)*100)/int($2)}')
-
+percent=$(echo "$euro:$goal" | awk -F: '{ p = (int($1)*100)/int($2);
+                                          if(p > 100) { p = 100 };
+                                          printf "%d", p}')
 
 for file in "$htdocs/donate/"kudos-????.html "$htdocs/donate/"kudos.html \
             "$htdocs/donate/"index.html \

commit f9dac45c4a69803f0a3b22a068123158e9682a4c
Author: Werner Koch <wk at gnupg.org>
Date:   Wed Feb 4 10:39:04 2015 +0100

    web: Minor instruction change on how to build from git.

diff --git a/web/download/cvs_access.org b/web/download/cvs_access.org
index 0887139..62ffe9c 100644
--- a/web/download/cvs_access.org
+++ b/web/download/cvs_access.org
@@ -28,14 +28,14 @@
   git clone git://git.gnupg.org/gnupg.git
 #+END_EXAMPLE
 
-  You must run =scripts/autogen.sh= before doing the =./configure
-  --enable-maintainer-mode=, as this creates some needed files which
-  are not stored in the repository. =autogen.sh= should check that you
-  have all required tools installed. Please read the GIT manual pages
-  before doing so. The =master= revision is the development branch;
-  the stable 2.0 version (currently version {{{gnupg_ver}}}) is known
-  as =STABLE-BRANCH-2-0=; the stable 1.4 version of GnuPG
-  ({{{gnupg1_ver}}}) is known as =STABLE-BRANCH-1-4=.
+  You must run =./autogen.sh= before running the =./configure= in the
+  way suggested by the putput of =autogen.sh=.  This creates some
+  required files which are not stored in the repository. =autogen.sh=
+  also checks that you have all required tools installed. Please read
+  the GIT manual pages before doing so. The =master= revision is the
+  development branch; the stable 2.0 version (currently version
+  {{{gnupg_ver}}}) is known as =STABLE-BRANCH-2-0=; the stable 1.4
+  version of GnuPG ({{{gnupg1_ver}}}) is known as =STABLE-BRANCH-1-4=.
 
   Bug reports should go to the developers mailing list. See the page
   on [[../documentation/mailing-lists.org][mailing lists]] .

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

Summary of changes:
 tools/mkkudos.sh            |  5 +++--
 web/download/cvs_access.org | 16 ++++++++--------
 2 files changed, 11 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
The GnuPG website and other docs
http://git.gnupg.org




More information about the Gnupg-commits mailing list