summaryrefslogtreecommitdiff
path: root/filesystems/tahoe-lafs
diff options
context:
space:
mode:
authorgdt <gdt>2010-12-04 01:58:57 +0000
committergdt <gdt>2010-12-04 01:58:57 +0000
commit7128608d0484667a08f060f09b1de0a552c480ca (patch)
treeeaf091bcc962fabb4b09014fea45fc178bc54258 /filesystems/tahoe-lafs
parentb2463dcb4be7c1fa681f88570a8b6e388b37fd28 (diff)
downloadpkgsrc-7128608d0484667a08f060f09b1de0a552c480ca.tar.gz
* Release 1.8.1 (2010-10-28)
** Bugfixes and Improvements - Allow the repairer to improve the health of a file by uploading some shares, even if it cannot achieve the configured happiness threshold. This fixes a regression introduced between v1.7.1 and v1.8.0. (#1212) - Fix a memory leak in the ResponseCache which is used during mutable file/directory operations. (#1045) - Fix a regression and add a performance improvement in the downloader. This issue caused repair to fail in some special cases. (#1223) - Fix a bug that caused 'tahoe cp' to fail for a grid-to-grid copy involving a non-ASCII filename. (#1224) - Fix a rarely-encountered bug involving printing large strings to the console on Windows. (#1232) - Perform ~ expansion in the --exclude-from filename argument to 'tahoe backup'. (#1241) - The CLI's 'tahoe mv' and 'tahoe ln' commands previously would try to use an HTTP proxy if the HTTP_PROXY environment variable was set. These now always connect directly to the WAPI, thus avoiding giving caps to the HTTP proxy (and also avoiding failures in the case that the proxy is failing or requires authentication). (#1253) - The CLI now correctly reports failure in the case that 'tahoe mv' fails to unlink the file from its old location. (#1255) - 'tahoe start' now gives a more positive indication that the node has started. (#71) - The arguments seen by 'ps' or other tools for node processes are now more useful (in particular, they include the path of the 'tahoe' script, rather than an obscure tool named 'twistd'). (#174) ** Removed Features - The tahoe start/stop/restart and node creation commands no longer accept the -m or --multiple option, for consistency between platforms. (#1262) ** Packaging - We now host binary packages so that users on certain operating systems can install without having a compiler. <http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/README.html> - Use a newer version of a dependency if needed, even if an older version is installed. This would previously cause a VersionConflict error. (#1190) - Use a precompiled binary of a dependency if one with a sufficiently high version number is available, instead of attempting to compile the dependency from source, even if the source version has a higher version number. (#1233) ** Documentation - All current documentation in .txt format has been converted to .rst format. (#1225) - Added docs/backdoors.rst declaring that we won't add backdoors to Tahoe-LAFS, or add anything to facilitate government access to data. (#1216)
Diffstat (limited to 'filesystems/tahoe-lafs')
-rw-r--r--filesystems/tahoe-lafs/Makefile4
-rw-r--r--filesystems/tahoe-lafs/distinfo9
-rw-r--r--filesystems/tahoe-lafs/patches/patch-aa16
3 files changed, 23 insertions, 6 deletions
diff --git a/filesystems/tahoe-lafs/Makefile b/filesystems/tahoe-lafs/Makefile
index 084e111072e..65f2b81f0f2 100644
--- a/filesystems/tahoe-lafs/Makefile
+++ b/filesystems/tahoe-lafs/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2010/09/24 18:20:59 gdt Exp $
+# $NetBSD: Makefile,v 1.5 2010/12/04 01:58:57 gdt Exp $
#
-VERSION= 1.8.0
+VERSION= 1.8.1
DISTNAME= allmydata-tahoe-${VERSION}
EGG_NAME= allmydata_tahoe-${VERSION}
PKGNAME= tahoe-lafs-${VERSION}
diff --git a/filesystems/tahoe-lafs/distinfo b/filesystems/tahoe-lafs/distinfo
index f2cd5ca01e4..5a9f03ba38b 100644
--- a/filesystems/tahoe-lafs/distinfo
+++ b/filesystems/tahoe-lafs/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.2 2010/09/24 18:20:59 gdt Exp $
+$NetBSD: distinfo,v 1.3 2010/12/04 01:58:57 gdt Exp $
-SHA1 (allmydata-tahoe-1.8.0.tar.bz2) = d10b0445341c833e9ab5ed026a7f741420934158
-RMD160 (allmydata-tahoe-1.8.0.tar.bz2) = dc471c28f66ec6669f0851ae701089867f769142
-Size (allmydata-tahoe-1.8.0.tar.bz2) = 1102859 bytes
+SHA1 (allmydata-tahoe-1.8.1.tar.bz2) = bc653df007de93792bbd80e532c54318bf4b76b0
+RMD160 (allmydata-tahoe-1.8.1.tar.bz2) = a1375050cacfad838e23789355a11e3dafbb7c49
+Size (allmydata-tahoe-1.8.1.tar.bz2) = 1110783 bytes
+SHA1 (patch-aa) = be8b873d419ae688fdcc9cf0efbb9269259ebd13
diff --git a/filesystems/tahoe-lafs/patches/patch-aa b/filesystems/tahoe-lafs/patches/patch-aa
new file mode 100644
index 00000000000..ec784cd53d2
--- /dev/null
+++ b/filesystems/tahoe-lafs/patches/patch-aa
@@ -0,0 +1,16 @@
+$NetBSD: patch-aa,v 1.1 2010/12/04 01:58:57 gdt Exp $
+
+Upstream incorrectly installs test code. Patch from David-Sarah
+Hopwood (of upstream) in private mail.
+
+--- setup.py.orig 2010-11-30 05:41:58.000000000 +0000
++++ setup.py
+@@ -371,7 +371,7 @@ setup(name=APPNAME,
+ "sdist": MySdist,
+ },
+ package_dir = {'':'src'},
+- packages=find_packages("src"),
++ packages=find_packages("src", exclude=["buildtest"]),
+ classifiers=trove_classifiers,
+ test_suite="allmydata.test",
+ install_requires=install_requires,