blob: 7b4eaf99e1707e79f597f618a1c0dedfe84c0368 (
plain)
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
|
## A Taskotron configuration file representing available YUM repositories inside
## Fedora infrastructure.
## This file is in a ConfigParser syntax, very similar to INI syntax known from
## Windows.
## There is a guide describing how to update this file after important Fedora
## release events, please see:
## https://fedoraproject.org/wiki/How_to_update_yumrepoinfo.conf_in_Taskotron
[DEFAULT]
# URLs to yum repos
# Please note: 'download.fedoraproject.org' is a redirect that points you to a
# random mirror every time. For faster and more reliable operation, pick a close
# mirror from https://mirrors.fedoraproject.org and use it in 'baseurl' and 'baseurl_altarch'.
baseurl = http://infrastructure.fedoraproject.org/pub/fedora/linux
baseurl_altarch = http://infrastructure.fedoraproject.org/pub/fedora-secondary
goldurl = %(baseurl)s/releases/%(path)s/Everything/%(arch)s/os
updatesurl = %(baseurl)s/updates/%(path)s/%(arch)s
rawhideurl = %(baseurl)s/%(path)s/Everything/%(arch)s/os
# list of supported architectures
arches = i386, x86_64
# we need to know which of them are alternate architectures. For those, baseurl_altarch is used
# instead of baseurl.
alternate_arches = i386
# a direct parent of this repo, essential for operations (dependencies)
parent =
# koji tag defaults to section name
tag = %(__name__)s
# release_status can be one of: obsolete, stable, branched or rawhide
# for non-top-parent repos this is an empty string
release_status =
# Rawhide
[rawhide]
url = %(rawhideurl)s
path = development/rawhide
tag = f27
release_status = rawhide
# Fedora 26
[f26]
url = %(rawhideurl)s
path = development/26
release_status = branched
[f26-updates]
url = %(updatesurl)s
path = 26
parent = f26
[f26-updates-testing]
url = %(updatesurl)s
path = testing/26
parent = f26-updates
# Fedora 25
[f25]
url = %(goldurl)s
path = 25
release_status = stable
alternate_arches =
[f25-updates]
url = %(updatesurl)s
path = 25
parent = f25
alternate_arches =
[f25-updates-testing]
url = %(updatesurl)s
path = testing/25
parent = f25-updates
alternate_arches =
# Fedora 24
[f24]
url = %(goldurl)s
path = 24
release_status = stable
alternate_arches =
[f24-updates]
url = %(updatesurl)s
path = 24
parent = f24
alternate_arches =
[f24-updates-testing]
url = %(updatesurl)s
path = testing/24
parent = f24-updates
alternate_arches =
|