Branch Fedora 41 from Rawhide
Signed-off-by: Samyak Jain <samyak.jn11@gmail.com>
This commit is contained in:
parent
b8b2f4b0e9
commit
5f164c7347
11 changed files with 72 additions and 8 deletions
|
@ -26,7 +26,49 @@ FEDORAALTDEST = '/pub/fedora-secondary/updates/'
|
|||
EPELDEST = '/pub/epel/'
|
||||
OSTREESOURCE = '/mnt/koji/compose/ostree/repo/'
|
||||
OSTREEDEST = '/mnt/koji/ostree/repo/'
|
||||
RELEASES = {'f40': {'topic': 'fedora',
|
||||
RELEASES = {'f41': {'topic': 'fedora',
|
||||
'version': '41',
|
||||
'modules': ['fedora', 'fedora-secondary'],
|
||||
'repos': {'updates': {
|
||||
'from': 'f41-updates',
|
||||
'ostrees': [{'ref': 'fedora/41/%(arch)s/updates/silverblue',
|
||||
'dest': OSTREEDEST,
|
||||
'arches': ['x86_64', 'ppc64le', 'aarch64']},
|
||||
{'ref': 'fedora/41/%(arch)s/updates/kinoite',
|
||||
'dest': OSTREEDEST,
|
||||
'arches': ['x86_64', 'ppc64le', 'aarch64']},
|
||||
{'ref': 'fedora/41/%(arch)s/updates/sericea',
|
||||
'dest': OSTREEDEST,
|
||||
'arches': ['x86_64', 'ppc64le', 'aarch64']},
|
||||
{'ref': 'fedora/41/%(arch)s/updates/onyx',
|
||||
'dest': OSTREEDEST,
|
||||
'arches': ['x86_64', 'ppc64le', 'aarch64']}],
|
||||
'to': [{'arches': ['x86_64', 'aarch64', 'source'],
|
||||
'dest': os.path.join(FEDORADEST, '41', 'Everything')},
|
||||
{'arches': ['ppc64le', 's390x'],
|
||||
'dest': os.path.join(FEDORAALTDEST, '41', 'Everything')}
|
||||
]},
|
||||
'updates-testing': {
|
||||
'from': 'f41-updates-testing',
|
||||
'ostrees': [{'ref': 'fedora/41/%(arch)s/testing/silverblue',
|
||||
'dest': OSTREEDEST,
|
||||
'arches': ['x86_64', 'ppc64le', 'aarch64']},
|
||||
{'ref': 'fedora/41/%(arch)s/testing/kinoite',
|
||||
'dest': OSTREEDEST,
|
||||
'arches': ['x86_64', 'ppc64le', 'aarch64']},
|
||||
{'ref': 'fedora/41/%(arch)s/testing/sericea',
|
||||
'dest': OSTREEDEST,
|
||||
'arches': ['x86_64', 'ppc64le', 'aarch64']},
|
||||
{'ref': 'fedora/41/%(arch)s/testing/onyx',
|
||||
'dest': OSTREEDEST,
|
||||
'arches': ['x86_64', 'ppc64le', 'aarch64']}],
|
||||
'to': [{'arches': ['x86_64', 'aarch64', 'source'],
|
||||
'dest': os.path.join(FEDORADEST, 'testing', '41', 'Everything')},
|
||||
{'arches': ['ppc64le', 's390x'],
|
||||
'dest': os.path.join(FEDORAALTDEST, 'testing', '41', 'Everything')}
|
||||
]}}
|
||||
},
|
||||
'f40': {'topic': 'fedora',
|
||||
'version': '40',
|
||||
'modules': ['fedora', 'fedora-secondary'],
|
||||
'repos': {'updates': {
|
||||
|
|
|
@ -116,7 +116,7 @@
|
|||
# bodhi2/backend/files/koji_sync_listener.py
|
||||
# This cronjob runs only once a day. The listener script runs reactively.
|
||||
cron: name="owner-sync" minute="15" hour="4" user="root"
|
||||
job="/usr/local/bin/lock-wrapper owner-sync '/usr/local/bin/owner-sync-pagure f41 f40 f39 f39-flatpak epel10.0 epel9 epel9-next epel8'"
|
||||
job="/usr/local/bin/lock-wrapper owner-sync '/usr/local/bin/owner-sync-pagure f42 f41 f40 f39 f39-flatpak epel10.0 epel9 epel9-next epel8'"
|
||||
cron_file=update-koji-owner
|
||||
user=apache
|
||||
when: env == "production"
|
||||
|
|
|
@ -36,6 +36,9 @@ arguments = {}
|
|||
# XXX If you modify this taglist. Please also modify the other copy in
|
||||
# bodhi2/backend/tasks/main.yml
|
||||
taglist = [
|
||||
"f42",
|
||||
"f42-container",
|
||||
"f42-flatpak",
|
||||
"f41",
|
||||
"f41-container",
|
||||
"f41-flatpak",
|
||||
|
|
|
@ -29,6 +29,8 @@ sigkeys = [
|
|||
'a15B79cc',
|
||||
[% elif release.version_int == 41 %]
|
||||
'e99d6ad1',
|
||||
[% elif release.version_int == 42 %]
|
||||
'105ef944',
|
||||
[% elif release.version_int == 6 %]
|
||||
'0608b895',
|
||||
[% elif release.version_int == 7 %]
|
||||
|
|
|
@ -195,6 +195,7 @@ package_list =
|
|||
all :: deny
|
||||
|
||||
sidetag =
|
||||
tag f42-build :: allow
|
||||
tag f41-build :: allow
|
||||
tag f40-build :: allow
|
||||
tag f39-build :: allow
|
||||
|
|
|
@ -126,6 +126,7 @@ rules: []
|
|||
id: "kojibuild_bodhipush_remoterule"
|
||||
product_versions:
|
||||
- fedora-rawhide
|
||||
- fedora-42
|
||||
- fedora-41
|
||||
- fedora-40
|
||||
- fedora-39
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
# Global list of koji tags we care about
|
||||
tags = ({'name': 'Rawhide', 'tag': 'f41'},
|
||||
tags = ({'name': 'Rawhide', 'tag': 'f42'},
|
||||
|
||||
{'name': 'Fedora 41', 'tag': 'f41-updates'},
|
||||
{'name': 'Fedora 41', 'tag': 'f41'},
|
||||
{'name': 'Fedora 41 Testing', 'tag': 'f41-updates-testing'},
|
||||
|
||||
{'name': 'Fedora 40', 'tag': 'f40-updates'},
|
||||
{'name': 'Fedora 40', 'tag': 'f40'},
|
||||
{'name': 'Fedora 40 Testing', 'tag': 'f40-updates-testing'},
|
||||
|
|
|
@ -1,12 +1,23 @@
|
|||
{
|
||||
"collections": [
|
||||
{
|
||||
"allow_retire": true,
|
||||
"branchname": "master",
|
||||
"date_created": "2014-05-14 12:36:15",
|
||||
"date_updated": "2024-08-13 14:07:23",
|
||||
"dist_tag": ".fc42",
|
||||
"koji_name": "rawhide",
|
||||
"name": "Fedora Linux",
|
||||
"status": "Under Development",
|
||||
"version": "devel"
|
||||
},
|
||||
{
|
||||
"allow_retire": true,
|
||||
"branchname": "master",
|
||||
"date_created": "2014-05-14 12:36:15",
|
||||
"date_updated": "2024-02-13 13:07:23",
|
||||
"dist_tag": ".fc41",
|
||||
"koji_name": "rawhide",
|
||||
"koji_name": "f41",
|
||||
"name": "Fedora Linux",
|
||||
"status": "Under Development",
|
||||
"version": "devel"
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# branched compose
|
||||
# MAILTO=releng-cron@lists.fedoraproject.org
|
||||
# 15 7 * * * root touch /tmp/fedora-compose-branched && TMPDIR=`mktemp -d /tmp/branched.XXXXXX` && chmod 755 $TMPDIR && cd $TMPDIR && git clone https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f40 && /usr/local/bin/lock-wrapper branched-compose "LANG=en_US.UTF-8 ./nightly.sh" && sudo -u ftpsync /usr/local/bin/update-fullfiletimelist -l /pub/fedora-secondary/update-fullfiletimelist.lock -t /pub fedora fedora-secondary && rm /tmp/fedora-compose-branched
|
||||
MAILTO=releng-cron@lists.fedoraproject.org
|
||||
15 7 * * * root touch /tmp/fedora-compose-branched && TMPDIR=`mktemp -d /tmp/branched.XXXXXX` && chmod 755 $TMPDIR && cd $TMPDIR && git clone https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f40 && /usr/local/bin/lock-wrapper branched-compose "LANG=en_US.UTF-8 ./nightly.sh" && sudo -u ftpsync /usr/local/bin/update-fullfiletimelist -l /pub/fedora-secondary/update-fullfiletimelist.lock -t /pub fedora fedora-secondary && rm /tmp/fedora-compose-branched
|
||||
|
|
|
@ -1 +1 @@
|
|||
FedoraBranched: False
|
||||
FedoraBranched: True
|
||||
|
|
|
@ -3,4 +3,4 @@
|
|||
# prebeta: After bodhi enablement/beta freeze and before beta release
|
||||
# postbeta: After beta release and before final release
|
||||
# current: After final release
|
||||
FedoraBranchedBodhi: current
|
||||
FedoraBranchedBodhi: preenable
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue