gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r6507 - in GNUnet: . contrib src/applications


From: gnunet
Subject: [GNUnet-SVN] r6507 - in GNUnet: . contrib src/applications
Date: Sun, 2 Mar 2008 00:59:10 -0700 (MST)

Author: grothoff
Date: 2008-03-02 00:59:10 -0700 (Sun, 02 Mar 2008)
New Revision: 6507

Modified:
   GNUnet/ChangeLog
   GNUnet/README
   GNUnet/UPDATING
   GNUnet/configure.ac
   GNUnet/contrib/config-daemon.scm
   GNUnet/contrib/doxygen
   GNUnet/src/applications/Makefile.am
   GNUnet/todo
Log:
version bump

Modified: GNUnet/ChangeLog
===================================================================
--- GNUnet/ChangeLog    2008-03-02 07:58:28 UTC (rev 6506)
+++ GNUnet/ChangeLog    2008-03-02 07:59:10 UTC (rev 6507)
@@ -1,5 +1,8 @@
 Sat Mar  1 21:14:02 MST 2008
        Fixed some dstore performance issues.
+       Made transports alternate between trying IPv4 and IPv6
+       if both are available (since one of them maybe
+       misconfigured).
 
 Mon Feb 25 23:25:48 MST 2008
        Cleanup of the DNS code: removed GNUNET_IPvXAddress

Modified: GNUnet/README
===================================================================
--- GNUnet/README       2008-03-02 07:58:28 UTC (rev 6506)
+++ GNUnet/README       2008-03-02 07:59:10 UTC (rev 6507)
@@ -44,6 +44,9 @@
 
 Certain transports would also like to have:
 - libmicrohttpd >= 0.2.1  (available from http://gnunet.org/libmicrohttpd/)
+                          [If you want to use the HTTP transport and not use 
+                           100% CPU, you will need the yet unreleased 
+                           version 0.2.2 (or SVN HEAD)]
 - libcurl       >= 7.15.4
 - libesmtp      >= 1.0.4
 

Modified: GNUnet/UPDATING
===================================================================
--- GNUnet/UPDATING     2008-03-02 07:58:28 UTC (rev 6506)
+++ GNUnet/UPDATING     2008-03-02 07:59:10 UTC (rev 6507)
@@ -8,197 +8,19 @@
 data-preserving migration may not be possible.  For SVN versions,
 you're on your own.
 
-0.7.3 to HEAD
-=============
+0.7.3 (and earlier) to 0.8.0pre0
+================================
 
-Run gnunet-update.  Drop the tables in your old datastore(s) and
-delete "$GNUNETD_HOME/data/fs/" and "$GNUNETD_HOME/data/shared/".
+Migration of your datastore maybe possible but the required code has
+not been written (we had bigger fish to fry).  In order to update, run
+gnunet-update as usual.  Drop the tables in your old datastore(s) and
+delete "$GNUNETD_HOME/data/fs/" and "$GNUNETD_HOME/data/shared/" and
+"$GNUNETD_HOME/data/hosts/".
 
 Note that due to the various breaks in backwards-compatibility, peers
 running the new version will not connect to peers running 0.7.3 and
 older.  Check that the hostlists that you are using in your
 configuration file are for peers running HEAD.
 
-Read up on gnunet-auto-share.  
+Read up on gnunet-auto-share.
 
-
-0.7.2c to 0.7.3
-===============
-
-Run gnunet-update.
-Run "gnunet-setup -d", some options have changed and some are
-new.  You might want to consider enabling the HTTP transport.
-Also, for the dstore you can now select an implementation using
-MySQL -- previously we only had an sqLite implementation.  Note
-that this is a new option and one of the two choices must be
-selected.  "gnunet-setup -d" should pick "dstore_sqlite" by 
-default, but if you are using MySQL for the main database, you
-may want to change this.
-You need to grant the gnunet MySQL user additional priviledges
-for the dstore (creation of temporary tables), something like:
-
-GRANT CREATE TEMPORARY TABLES ON gnunet.* TO address@hidden;
-
-should do the trick.
-
-
-0.7.2b to 0.7.2c
-=================
-
-Run gnunet-update.
-
-
-0.7.2a to 0.7.2b
-=================
-
-Run gnunet-update.
-
-
-0.7.2 to 0.7.2a
-===============
-
-Run
-
-$ gnunet-update
-
-This may take a bit longer than usual (depending on your database
-size, it may take a few hours -- gnunet-update will iterate once over
-all entries in the database).  You will have to upgrade gnunet-gtk
-and/or gnunet-qt as well.
-
-
-0.7.1c to 0.7.2
-===============
-
-Stop gnunetd.  Remove "tcp_old" and "http" from the TRANSPORTS line in
-/etc/gnunetd.conf (should they exist).  Failure to do so will cause
-problems.  Then run
-
-$ gnunet-update
-
-and restart gnunetd.  Note that you must update gnunet-gtk and/or
-gnunet-qt as well.
-
-
-0.7.1b to 0.7.1c
-================
-
-Run
-
-$ gnunet-update
-
-This may take a bit longer than usual (depending on your
-database size, it may take a few hours!).  You may also
-want to manually re-run gnunet-insert (due to bugfixes
-related to content expiration and preview-generation
-bugs in an older libextractor version).
-
-
-0.7.1a to 0.7.1b
-================
-
-Run
-
-$ gnunet-update
-
-(as the same user that also runs gnunetd).  Check your configuration
-file for values with "$"-symbols.  If it contains any, you must add
-definitions for those paths into a special new section "PATHS" --
-otherwise GNUnet will not expand the "$"-variables.  Alternatively,
-reconfigure using gnunet-setup.  The default location for gnunetd's
-files changed from "/var/lib/GNUnet" to "/var/lib/gnunet".  If you
-create a new configuration file from scratch (or want to switch to
-the new default), you should rename the old directory at the time 
-of the change.
-
-
-0.7.1pre0, 0.7.1pre1, 0.7.1pre2 and 0.7.1 to 0.7.1a
-===================================================
-
-Run
-
-$ gnunet-update
-
-(as the same user that also runs gnunetd).
-
-
-0.7.0e to 0.7.1pre0
-===================
-
-First of all, read README.debian and study the changes in the
-dependencies.  Install all dependencies and check the version
-numbers.  Once you have managed to compile GNUnet, read on.
-
-There are now two TCP transports, one using the 0.7.1 protocol and one
-using the 0.7.0e protocol to allow the 0.7.1 network to connect with
-the 0.7.0 network.  The old TCP transport is hardwired to use port
-2089, so you may have to open some new holes in your firewall (you can
-only change the port by editing the source).  The new TCP transport
-will run at whatever port is specified in the configuration.
-
-Next you should edit your gnunetd.conf file as follows:
-* remove http, smtp from TRANSPORTS, add "tcp_old"
-* if HTTP-PROXY-PORT is set, add ":PORT-NUMBER" 
-  to the HTTP-PROXY line
-
-If your "gnunetd.conf" file is not in /etc,  you may
-have to edit scripts to pass "-c THE_PATH/gnunetd.conf"
-to gnunetd as an argument.  Alternatively, move the
-configuration to "/etc/gnunetd.conf".
-
-
-Finally, stop your old gnunetd process and run 
-
-# gnunet-update
-# gnunet-setup -d
-$ gnunet-setup 
-
-to update the configuration and run the setup tool to configure new
-options (you maybe able to skip gnunet-setup).  Restart gnunetd.
-
-
-0.7.0pre6, 0.7.0, 0.7.0{a,b,c,d} to 0.7.0e
-==========================================
-
-Run
-
-$ gnunet-update
-
-(as the same user that also runs gnunetd).
-
-
-0.7.0pre4 and 0.7.0pre5 to 0.7.0pre6
-====================================
-
-Run
-
-$ rm -f /var/lib/GNUnet/content/gnunet.dat ~/.gnunet/content/gnunet.dat
-$ gnunet-update
-
-(as the same user that also runs gnunetd).
-
-
-0.7.0pre1 and 0.7.0pre2 to 0.7.0pre3
-====================================
-
-Interesting.  You got those to RUN!?
-
-
-before 0.7.0pre1 to 0.7.0pre1
-=============================
-
-Migration is NOT possible, we're breaking compatibility big time.
-Note that 0.7.0pre1 is a pre-release for 0.7.0, so hands-off if you do
-not want to deal with a few bugs and the lack of documentation and
-user interfaces.  Generally, you want to do
-
-$ rm -rf .gnunet
-
-before starting 0.7.0pre1.  Also, while it maybe possible that 
-migration from 0.7.0pre1 to 0.7.0 will be painless, there's no
-guarantee for that.
-
-Note that many things have changed in this version, so please read
-the documentation very carefully, but also keep in mind that not
-all of the documentation is up-to-date with the code at this point.
-

Modified: GNUnet/configure.ac
===================================================================
--- GNUnet/configure.ac 2008-03-02 07:58:28 UTC (rev 6506)
+++ GNUnet/configure.ac 2008-03-02 07:59:10 UTC (rev 6507)
@@ -21,8 +21,8 @@
 #
 #
 AC_PREREQ(2.61)
-AC_INIT([GNUnet], [0.7.3],address@hidden)
-AM_INIT_AUTOMAKE([GNUnet], [0.7.3])
+AC_INIT([GNUnet], [0.8.0pre0],address@hidden)
+AM_INIT_AUTOMAKE([GNUnet], [0.8.0pre0])
 AC_CONFIG_HEADERS([config.h])
 
 AH_TOP([#define _GNU_SOURCE  1])

Modified: GNUnet/contrib/config-daemon.scm
===================================================================
--- GNUnet/contrib/config-daemon.scm    2008-03-02 07:58:28 UTC (rev 6506)
+++ GNUnet/contrib/config-daemon.scm    2008-03-02 07:59:10 UTC (rev 6507)
@@ -185,7 +185,8 @@
 If you do not specify a HOSTLISTURL, you must copy valid hostkeys to 
data/hosts manually.")
   '()
   #t
-  "http://gnunet.org/hostlist.php http://gnunet.mine.nu:8081/hostlist 
http://de.gnunet.org/cgi-bin/hostlist.cgi";
+;;  "http://gnunet.org/hostlist.php http://gnunet.mine.nu:8081/hostlist 
http://de.gnunet.org/cgi-bin/hostlist.cgi";
+  "http://vserver1236.vserver-on.de/hostlist-074";
   '()
   'always) )
 

Modified: GNUnet/contrib/doxygen
===================================================================
--- GNUnet/contrib/doxygen      2008-03-02 07:58:28 UTC (rev 6506)
+++ GNUnet/contrib/doxygen      2008-03-02 07:59:10 UTC (rev 6507)
@@ -5,7 +5,7 @@
 #---------------------------------------------------------------------------
 DOXYFILE_ENCODING      = UTF-8
 PROJECT_NAME           = GNUnet
-PROJECT_NUMBER         = 0.7.3
+PROJECT_NUMBER         = 0.8.0pre0
 OUTPUT_DIRECTORY       = /home/gnunet/WWW/doxygen
 CREATE_SUBDIRS         = NO
 OUTPUT_LANGUAGE        = English

Modified: GNUnet/src/applications/Makefile.am
===================================================================
--- GNUnet/src/applications/Makefile.am 2008-03-02 07:58:28 UTC (rev 6506)
+++ GNUnet/src/applications/Makefile.am 2008-03-02 07:59:10 UTC (rev 6507)
@@ -38,5 +38,5 @@
  tracekit \
  $(VPN_DIR) \
  fs \
- testing
-# chat
+ testing \
+ chat

Modified: GNUnet/todo
===================================================================
--- GNUnet/todo 2008-03-02 07:58:28 UTC (rev 6506)
+++ GNUnet/todo 2008-03-02 07:59:10 UTC (rev 6507)
@@ -3,9 +3,6 @@
 Annotations:
   RC == Release Critical
 
-0.8.0pre0 [2'08]:
-- more IPv6 testing
-
 0.8.0 [4'08] (aka "advanced features"):
 - document gnunet-auto-share on webpage
 - disconnect issues ("other peer sent too much" - solved?)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]