Author: jross
Date: Mon Sep 28 17:28:53 2015
New Revision: 1705727

URL: http://svn.apache.org/viewvc?rev=1705727&view=rev
Log:
QPID-6729: Update the current contributors; enhance the contributor script to 
look at our git repos

Modified:
    qpid/site/docs/contributors.html
    qpid/site/input/contributors.md
    qpid/site/scripts/list-current-committers

Modified: qpid/site/docs/contributors.html
URL: 
http://svn.apache.org/viewvc/qpid/site/docs/contributors.html?rev=1705727&r1=1705726&r2=1705727&view=diff
==============================================================================
--- qpid/site/docs/contributors.html (original)
+++ qpid/site/docs/contributors.html Mon Sep 28 17:28:53 2015
@@ -113,8 +113,8 @@ contributions.  If you'd like to become
 
 <h2 id="current-committers">Current committers</h2>
 
-<p>As of 20 March 2015, the following committers have been active in the
-past year.</p>
+<p>As of 28 September 2015, the following committers have been active in
+the past year.</p>
 
 <div class="four-column">
 
@@ -126,9 +126,11 @@ past year.</p>
 <li>Chuck Rolke</li>
 <li>Cliff Jansen</li>
 <li>Darryl Pierce</li>
+<li>Dominic Evans</li>
 <li>Ernie Allen</li>
 <li>Fraser Adams</li>
 <li>Gordon Sim</li>
+<li>Jakub Scholz</li>
 <li>Justin Ross</li>
 <li>Keith Wall</li>
 <li>Ken Giusti</li>

Modified: qpid/site/input/contributors.md
URL: 
http://svn.apache.org/viewvc/qpid/site/input/contributors.md?rev=1705727&r1=1705726&r2=1705727&view=diff
==============================================================================
--- qpid/site/input/contributors.md (original)
+++ qpid/site/input/contributors.md Mon Sep 28 17:28:53 2015
@@ -27,8 +27,8 @@ contributions.  If you'd like to become
 
 ;; Use the output of scripts/list-current-committers to refresh this list
 
-As of 20 March 2015, the following committers have been active in the
-past year.
+As of 28 September 2015, the following committers have been active in
+the past year.
 
 <div class="four-column" markdown="1">
 
@@ -39,9 +39,11 @@ past year.
  - Chuck Rolke
  - Cliff Jansen
  - Darryl Pierce
+ - Dominic Evans
  - Ernie Allen
  - Fraser Adams
  - Gordon Sim
+ - Jakub Scholz
  - Justin Ross
  - Keith Wall
  - Ken Giusti

Modified: qpid/site/scripts/list-current-committers
URL: 
http://svn.apache.org/viewvc/qpid/site/scripts/list-current-committers?rev=1705727&r1=1705726&r2=1705727&view=diff
==============================================================================
--- qpid/site/scripts/list-current-committers (original)
+++ qpid/site/scripts/list-current-committers Mon Sep 28 17:28:53 2015
@@ -24,4 +24,25 @@ if [[ -z $DATE ]]; then
     DATE=$(date --date "1 year ago" +%F)
 fi
 
-svn log -r{$DATE}:HEAD -q http://svn.apache.org/repos/asf/qpid | egrep '^r' | 
cut -d " " -f 3 | sort | uniq
+work_dir=$(mktemp -d)
+temp_list=$work_dir/committers
+
+svn log -r{$DATE}:HEAD -q http://svn.apache.org/repos/asf/qpid | egrep '^r' | 
cut -d " " -f 3 >> $temp_list
+
+(
+    cd $work_dir
+
+    git clone --bare --branch master 
"http://git-wip-us.apache.org/repos/asf/qpid-proton.git";
+    git clone --bare --branch master 
"http://git-wip-us.apache.org/repos/asf/qpid-dispatch.git";
+    git clone --bare --branch master 
"http://git-wip-us.apache.org/repos/asf/qpid-jms.git";
+    git clone --bare --branch master 
"http://git-wip-us.apache.org/repos/asf/qpid-interop-test.git";
+
+    (cd qpid-proton.git && git log --since "$DATE" --format="format:%ce%n" >> 
$temp_list)
+    (cd qpid-dispatch.git && git log --since "$DATE" --format="format:%ce%n" 
>> $temp_list)
+    (cd qpid-jms.git && git log --since "$DATE" --format="format:%ce%n" >> 
$temp_list)
+    (cd qpid-interop-test.git && git log --since "$DATE" 
--format="format:%ce%n" >> $temp_list)
+)
+
+cat $temp_list | sort | uniq
+
+rm -rf $work_dir



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to