Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2011-03-12 18:12:13 (GMT)
committer Daniel Drake <dsd@laptop.org>2011-03-12 18:13:42 (GMT)
commitbde63ae9d99530cebb221d74c1e6fba12e56d37c (patch)
tree27c43b330c672833c133ffef5f7888d5f4d0ef0e
parentf2016409e673ceb0b848dd769e19df0b257c18e5 (diff)
repos: add rawhide support
-rw-r--r--modules/repos/README4
-rw-r--r--modules/repos/ksmain.50.repos.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/modules/repos/README b/modules/repos/README
index 5b5c0be..3a52ddf 100644
--- a/modules/repos/README
+++ b/modules/repos/README
@@ -14,8 +14,8 @@ Firstly, the 'fedora' option:
fedora=fedora,fedora-updates,fedora-updates-testing
This is a comma-separated list of official Fedora repositories to enable
-for the build. The 3 possible options are fedora, fedora-update and
-fedora-updates-testing.
+for the build. The 4 possible options are fedora, fedora-updates,
+fedora-updates-testing and rawhide.
diff --git a/modules/repos/ksmain.50.repos.py b/modules/repos/ksmain.50.repos.py
index 11b13cf..44f250d 100644
--- a/modules/repos/ksmain.50.repos.py
+++ b/modules/repos/ksmain.50.repos.py
@@ -65,6 +65,8 @@ if fedora is not None:
repos["fedora-updates"] = ("mirrorlist", "http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f%s&arch=i386" % fver)
elif repo == "fedora-updates-testing":
repos["fedora-updates-testing"] = ("mirrorlist", "http://mirrors.fedoraproject.org/mirrorlist?repo=updates-testing-f%s&arch=i386" % fver)
+ elif repo == "rawhide":
+ repos["rawhide"] = ("mirrorlist", "http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=i386")
# generate repo lines including excludes
excludepkgs = list(excludepkgs)