Revision: 723
http://ddccontrol.svn.sourceforge.net/ddccontrol/?rev=723&view=rev
Author: el_cubano
Date: 2007-10-27 19:40:13 -0700 (Sat, 27 Oct 2007)
Log Message:
-----------
Update FSF address and fix commit script to work with subversion
Modified Paths:
--------------
trunk/ddccontrol-db/AUTHORS
trunk/ddccontrol-db/COPYING
trunk/ddccontrol-db/commit.sh
Modified: trunk/ddccontrol-db/AUTHORS
===================================================================
--- trunk/ddccontrol-db/AUTHORS 2007-10-28 02:37:35 UTC (rev 722)
+++ trunk/ddccontrol-db/AUTHORS 2007-10-28 02:40:13 UTC (rev 723)
@@ -1,2 +1,3 @@
-Oleg I. Vdovikin <ol...@cs...>
-Nicolas Boichat <ni...@bo...>
\ No newline at end of file
+vdovikin:Oleg I. Vdovikin <ol...@cs...>
+nboichat:Nicolas Boichat <ni...@bo...>
+el_cubano:Roberto C. Sanchez <ro...@co...>
Modified: trunk/ddccontrol-db/COPYING
===================================================================
--- trunk/ddccontrol-db/COPYING 2007-10-28 02:37:35 UTC (rev 722)
+++ trunk/ddccontrol-db/COPYING 2007-10-28 02:40:13 UTC (rev 723)
@@ -2,7 +2,7 @@
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
@@ -305,7 +305,7 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Also add information on how to contact you by electronic and paper mail.
Modified: trunk/ddccontrol-db/commit.sh
===================================================================
--- trunk/ddccontrol-db/commit.sh 2007-10-28 02:37:35 UTC (rev 722)
+++ trunk/ddccontrol-db/commit.sh 2007-10-28 02:40:13 UTC (rev 723)
@@ -1,8 +1,12 @@
#!/bin/sh
+echo "Updating working copy..."
+svn update || exit 1
echo "Committing your changes (message: '$1')..."
-cvs commit -m "$1"
+svn commit -m "$1"
echo "Updating ChangeLog..."
-cvs2cl.pl -T --gmt -I ChangeLog
+svn update
+REVISION=$(svn info |grep ^Revision |cut -f2 -d' ')
+(TZ=GMT svn2cl -i -r $REVISION --authors=AUTHORS --stdout; cat ChangeLog) >ChangeLog.tmp && mv -f ChangeLog.tmp ChangeLog
echo "Committing ChangeLog..."
-cvs commit -m "Update ChangeLog" ChangeLog
+svn commit -m "Update ChangeLog" ChangeLog
echo "OK"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|