1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Mageia-sysadm] [343] don't set uses-binrepo svn property as every package is using binrepo
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B343%5D%20don%27t%20set%20uses-binrepo%20svn%20property%20as%20every%0A%09package%20is%20using%20binrepo&In-Reply-To=%3C20110125182400.A0D8343116%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="002447.html">
<LINK REL="Next" HREF="002450.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-sysadm] [343] don't set uses-binrepo svn property as every package is using binrepo</H1>
<B>root at mageia.org</B>
<A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B343%5D%20don%27t%20set%20uses-binrepo%20svn%20property%20as%20every%0A%09package%20is%20using%20binrepo&In-Reply-To=%3C20110125182400.A0D8343116%40valstar.mageia.org%3E"
TITLE="[Mageia-sysadm] [343] don't set uses-binrepo svn property as every package is using binrepo">root at mageia.org
</A><BR>
<I>Tue Jan 25 19:24:00 CET 2011</I>
<P><UL>
<LI>Previous message: <A HREF="002447.html">[Mageia-sysadm] [342] add binrepo remove function
</A></li>
<LI>Next message: <A HREF="002450.html">[Mageia-sysadm] [344] set property binrepo-rev instead of mdv:binrepo-rev ( but still not used)
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#2449">[ date ]</a>
<a href="thread.html#2449">[ thread ]</a>
<a href="subject.html#2449">[ subject ]</a>
<a href="author.html#2449">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>Revision: 343
Author: boklm
Date: 2011-01-25 19:24:00 +0100 (Tue, 25 Jan 2011)
Log Message:
-----------
don't set uses-binrepo svn property as every package is using binrepo
Modified Paths:
--------------
build_system/mgarepo/trunk/MgaRepo/binrepo.py
Modified: build_system/mgarepo/trunk/MgaRepo/binrepo.py
===================================================================
--- build_system/mgarepo/trunk/MgaRepo/binrepo.py 2011-01-25 18:14:00 UTC (rev 342)
+++ build_system/mgarepo/trunk/MgaRepo/binrepo.py 2011-01-25 18:24:00 UTC (rev 343)
@@ -18,7 +18,6 @@
BINARIES_DIR_NAME = "SOURCES"
BINARIES_CHECKOUT_NAME = "SOURCES-bin"
-PROP_USES_BINREPO = "mdv:uses-binrepo"
PROP_BINREPO_REV = "mdv:binrepo-rev"
BINREPOS_SECTION = "binrepos"
@@ -57,8 +56,6 @@
return info["Repository Root"]
def enabled(url):
- #TODO use information from url to find out whether we have a binrepo
- # available for this url
use = config.getbool("global", "use-binaries-repository", False)
return use
@@ -223,7 +220,6 @@
rev = svn.commit(bindir, log=log)
else:
rev = svn.import_(bintopdir, topurl, log=log)
- svn.propset(PROP_USES_BINREPO, "yes", topdir)
svn.propset(PROP_BINREPO_REV, str(rev), topdir)
update.join()
svn.add(sources_path(topdir))
@@ -349,7 +345,6 @@
pass
if not os.path.exists(bindir):
create_package_dirs(bintopdir)
- svn.propset(PROP_USES_BINREPO, "yes", topdir)
svn.commit(topdir, log="%s: created binrepo structure" % silent)
download(topdir, show=False)
for path in paths:
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/mageia-sysadm/attachments/20110125/ee55a839/attachment.html>
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="002447.html">[Mageia-sysadm] [342] add binrepo remove function
</A></li>
<LI>Next message: <A HREF="002450.html">[Mageia-sysadm] [344] set property binrepo-rev instead of mdv:binrepo-rev ( but still not used)
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#2449">[ date ]</a>
<a href="thread.html#2449">[ thread ]</a>
<a href="subject.html#2449">[ subject ]</a>
<a href="author.html#2449">[ 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>
|