Modified: build_system/repsys/trunk/CHANGES
===================================================================
--- build_system/repsys/trunk/CHANGES 2011-01-04 16:10:45 UTC (rev 203)
+++ build_system/repsys/trunk/CHANGES 2011-01-04 16:15:53 UTC (rev 204)
@@ -1,4 +1,7 @@
-* Development
+* 1.9.1-binrepo
+- fix problem with python threads on 2010.1
+
+* 1.9-binrepo
- added support to "binary repository"
- added new commands upload, up and del to help handling tarballs in the
binaries repository
Modified: build_system/repsys/trunk/RepSys/binrepo.py
===================================================================
--- build_system/repsys/trunk/RepSys/binrepo.py 2011-01-04 16:10:45 UTC (rev 203)
+++ build_system/repsys/trunk/RepSys/binrepo.py 2011-01-04 16:15:53 UTC (rev 204)
@@ -297,6 +297,7 @@
def update_sources_threaded(*args, **kwargs):
t = threading.Thread(target=update_sources, args=args, kwargs=kwargs)
t.start()
+ t.join()
return t
def upload(path, message=None):
Modified: build_system/repsys/trunk/repsys
===================================================================
--- build_system/repsys/trunk/repsys 2011-01-04 16:10:45 UTC (rev 203)
+++ build_system/repsys/trunk/repsys 2011-01-04 16:15:53 UTC (rev 204)
@@ -4,7 +4,7 @@
import getopt
import sys
-VERSION="1.9-binrepo"
+VERSION="1.9.1-binrepo"
HELP = """\
Usage: repsys COMMAND [COMMAND ARGUMENTS]