Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Dziallas <sebastian@when.com>2009-06-20 18:44:50 (GMT)
committer Sebastian Dziallas <sebastian@when.com>2009-06-20 18:44:50 (GMT)
commit538f7226d0173e37e3578e9044e212f0162e2a5f (patch)
treea9e0ce53185c1a57f163257eb995ea53cacf7413
parent65fb615964680086f28e85b008282aa65c4effbb (diff)
and another small fix for repo creation file
-rw-r--r--repo4
1 files changed, 2 insertions, 2 deletions
diff --git a/repo b/repo
index e9155fa..96c7df5 100644
--- a/repo
+++ b/repo
@@ -27,7 +27,7 @@ target_repo = \
def fetch(packages):
for pkg in packages:
subprocess.check_call(['koji', 'download-build', '--arch=i586', '--arch=noarch',
- '--latestfrom=dist-f11-updates-candidate', pkg])
+ '--latestfrom=dist-f11-updates-testing', pkg])
def _createrepo(repo_path):
rpms = os.listdir('.')
@@ -54,7 +54,7 @@ def build(packages):
finally:
os.chdir(old_cwd)
-_i586 = ['xorg-x11-drv-openchrome']
+_i586 = []
_noarch = ['sugar-presence-service', 'sugar-turtleart', 'sugar-read', 'etoys']
build(_i586 + _noarch)