diff options
Diffstat (limited to 'zarb-ml/mageia-sysadm/2011-January/001501.html')
-rw-r--r-- | zarb-ml/mageia-sysadm/2011-January/001501.html | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/2011-January/001501.html b/zarb-ml/mageia-sysadm/2011-January/001501.html new file mode 100644 index 000000000..2f36e1dc6 --- /dev/null +++ b/zarb-ml/mageia-sysadm/2011-January/001501.html @@ -0,0 +1,121 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> +<HTML> + <HEAD> + <TITLE> [Mageia-sysadm] [204] fix problem with python threads on 2010.1 + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B204%5D%20fix%20problem%20with%20python%20threads%20on%202010.1&In-Reply-To=%3C20110104161553.F09254186C%40valstar.mageia.org%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + <LINK REL="Previous" HREF="001500.html"> + <LINK REL="Next" HREF="001503.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[Mageia-sysadm] [204] fix problem with python threads on 2010.1</H1> + <B>root at mageia.org</B> + <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B204%5D%20fix%20problem%20with%20python%20threads%20on%202010.1&In-Reply-To=%3C20110104161553.F09254186C%40valstar.mageia.org%3E" + TITLE="[Mageia-sysadm] [204] fix problem with python threads on 2010.1">root at mageia.org + </A><BR> + <I>Tue Jan 4 17:15:53 CET 2011</I> + <P><UL> + <LI>Previous message: <A HREF="001500.html">[Mageia-sysadm] [203] tag version 1.9 +</A></li> + <LI>Next message: <A HREF="001503.html">[Mageia-sysadm] [205] version 1.9.1 +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#1501">[ date ]</a> + <a href="thread.html#1501">[ thread ]</a> + <a href="subject.html#1501">[ subject ]</a> + <a href="author.html#1501">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>Revision: 204 +Author: boklm +Date: 2011-01-04 17:15:53 +0100 (Tue, 04 Jan 2011) +Log Message: +----------- +fix problem with python threads on 2010.1 + +Modified Paths: +-------------- + build_system/repsys/trunk/CHANGES + build_system/repsys/trunk/RepSys/binrepo.py + build_system/repsys/trunk/repsys + +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] +-------------- next part -------------- +An HTML attachment was scrubbed... +URL: </pipermail/mageia-sysadm/attachments/20110104/62a507a0/attachment.html> +</PRE> + + + + + + + + + + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="001500.html">[Mageia-sysadm] [203] tag version 1.9 +</A></li> + <LI>Next message: <A HREF="001503.html">[Mageia-sysadm] [205] version 1.9.1 +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#1501">[ date ]</a> + <a href="thread.html#1501">[ thread ]</a> + <a href="subject.html#1501">[ subject ]</a> + <a href="author.html#1501">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm +mailing list</a><br> +</body></html> |