Update pagure.io references to forge.fp.o appropriately
Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
ec9c972fec
commit
6f499e16b7
8 changed files with 18 additions and 18 deletions
|
|
@ -126,4 +126,4 @@ A: Yes, please consider looking into rename_script_helper, and validate_conventi
|
|||
---
|
||||
|
||||
**Maintainer**: Fedora Release Engineering Team
|
||||
**Questions**: File issues in [fedora-releng repository](https://pagure.io/releng)
|
||||
**Questions**: File issues in [fedora-releng repository](https://forge.fedoraproject.org/releng/tickets/issues)
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ def filelists(d, fname=None):
|
|||
|
||||
for file in os.listdir(d):
|
||||
fulldir = os.path.join(d, file)
|
||||
#"and 'Modular' not in fulldir" is for fixing https://pagure.io/releng/issue/7488
|
||||
#"and 'Modular' not in fulldir" is for fixing https://forge.fedoraproject.org/releng/tickets/issues/7488
|
||||
#Once the tools that use .composeinfo gets updated to support repos with no images
|
||||
#we can remove the conditional.
|
||||
if os.path.isdir(fulldir) and 'Modular' not in fulldir:
|
||||
|
|
|
|||
|
|
@ -20,15 +20,15 @@ from fedrq.backends.base import RepoqueryBase
|
|||
|
||||
# (namespace, name of SIG group, ACL, package name filter)
|
||||
POLICY = [
|
||||
# Flatpak SIG: https://pagure.io/fesco/fesco-docs/pull-request/72
|
||||
# Flatpak SIG: https://forge.fedoraproject.org/fesco/docs/pulls/72
|
||||
("flatpaks", "flatpak-sig", "commit", lambda x: x),
|
||||
# Go SIG: https://pagure.io/fesco/fesco-docs/pull-request/68
|
||||
# Go SIG: https://forge.fedoraproject.org/fesco/docs/pulls/68
|
||||
("rpms", "go-sig", "commit", lambda x: x in go_packages()),
|
||||
# Haskell SIG: https://pagure.io/fesco/fesco-docs/pull-request/89
|
||||
# Haskell SIG: https://forge.fedoraproject.org/fesco/docs/pulls/89
|
||||
("rpms", "haskell-lang-sig", "commit", lambda x: x.startswith("ghc-")),
|
||||
# R SIG: https://pagure.io/fesco/fesco-docs/pull-request/69
|
||||
# R SIG: https://forge.fedoraproject.org/fesco/docs/pulls/69
|
||||
("rpms", "r-maint-sig", "commit", lambda x: x.startswith("R-") or x in r_packages()),
|
||||
# Rust SIG: https://pagure.io/fesco/fesco-docs/pull-request/66
|
||||
# Rust SIG: https://forge.fedoraproject.org/fesco/docs/pulls/66
|
||||
("rpms", "rust-sig", "commit", lambda x: x.startswith("rust-")),
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ set -euo pipefail
|
|||
UPDATE="${UPDATE-}"
|
||||
|
||||
script="/usr/local/bin/find_unblocked_orphans.py"
|
||||
raw_url="https://www.pagure.io/releng/raw/main/f/scripts_new/packages/orphaned/find_unblocked_orphans.py"
|
||||
raw_url="https://forge.fedoraproject.org/releng/tooling/raw/branch/main/packages/orphaned/find_unblocked_orphans.py"
|
||||
|
||||
if [ -n "${UPDATE}" ]; then
|
||||
dl_dir="$(mktemp -d)"
|
||||
|
|
|
|||
|
|
@ -168,10 +168,10 @@ see https://packager-dashboard.fedoraproject.org/orphan
|
|||
"""
|
||||
|
||||
FOOTER = """-- \nThe script creating this output is run and developed by Fedora
|
||||
Release Engineering. Please report issues at its pagure instance:
|
||||
https://pagure.io/releng/
|
||||
Release Engineering. Please report issues at:
|
||||
https://forge.fedoraproject.org/releng/tickets/issues
|
||||
The sources of this script can be found at:
|
||||
https://pagure.io/releng/blob/main/f/scripts/find_unblocked_orphans.py
|
||||
https://forge.fedoraproject.org/releng/tooling/src/branch/main/packages/orphaned/find_unblocked_orphans.py
|
||||
"""
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ class SackError(Exception):
|
|||
# **IMPORTANT**: before adding any group to this list, ensure the
|
||||
# corresponding decision context is in at least one policy in the
|
||||
# Greenwave configuration:
|
||||
# https://pagure.io/fedora-infra/ansible/blob/main/f/roles/openshift-apps/greenwave/templates/fedora.yaml
|
||||
# https://forge.fedoraproject.org/infra/ansible/src/branch/main/roles/openshift-apps/greenwave/templates/fedora.yaml.j2
|
||||
# bad things will happen if any update is in a critical path group
|
||||
# with no corresponding greenwave policy. If no gating is required
|
||||
# for packages in the group, the context only needs to be added to
|
||||
|
|
@ -294,7 +294,7 @@ def write_files(critpath, outpaths, jsonoutpaths):
|
|||
print(f"Wrote grouped critpath data to {jsonout}")
|
||||
if jsonout == "rawhide.json":
|
||||
# kinda ugly hack so we get critpath data for ELN
|
||||
# https://pagure.io/releng/issue/12303
|
||||
# https://forge.fedoraproject.org/releng/tickets/issues/12303
|
||||
elnfiltered = {
|
||||
group: critpath[group] for group in critpath if f"@{group}" in ELN_CRITPATH_GROUPS
|
||||
}
|
||||
|
|
@ -317,7 +317,7 @@ def write_files(critpath, outpaths, jsonoutpaths):
|
|||
outtext = f"Wrote {package_count} items to {outpath}"
|
||||
if outpath == "rawhide.txt":
|
||||
# kinda ugly hack so we get critpath data for ELN
|
||||
# https://pagure.io/releng/issue/12303
|
||||
# https://forge.fedoraproject.org/releng/tickets/issues/12303
|
||||
elnpkgs = set()
|
||||
for grppkgs in elnfiltered.values():
|
||||
elnpkgs = elnpkgs.union(set(grppkgs))
|
||||
|
|
|
|||
|
|
@ -64,12 +64,12 @@ KOJICLI=koji
|
|||
"${KOJICLI}" edit-tag --perm=atomic "f${release}-atomic-host-installer"
|
||||
"${KOJICLI}" edit-tag --perm=atomic "f${release}-atomic-host-overrides"
|
||||
|
||||
# FCOS continuous builds: https://pagure.io/releng/issue/8165
|
||||
# FCOS continuous builds: https://forge.fedoraproject.org/releng/tickets/issues/8165
|
||||
"${KOJICLI}" add-tag "f${release}-coreos-continuous" --arches="x86_64 aarch64 ppc64le s390x"
|
||||
"${KOJICLI}" add-target "f${release}-coreos-continuous" "f${release}-build" "f${release}-coreos-continuous"
|
||||
"${KOJICLI}" edit-tag -x tag2distrepo.enabled=True "f${release}-coreos-continuous"
|
||||
|
||||
# FCOS signing tags that feed the coreos-pool tag: https://pagure.io/releng/issue/8294
|
||||
# FCOS signing tags that feed the coreos-pool tag: https://forge.fedoraproject.org/releng/tickets/issues/8294
|
||||
"${KOJICLI}" add-tag "f${release}-coreos-signing-pending" --parent coreos-pool
|
||||
|
||||
"${KOJICLI}" add-tag --parent module-package-list "module-f${release}-build"
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ for owner in sorted(tobuild.keys()):
|
|||
print('<dd><a href="http://koji.fedoraproject.org/koji/packageinfo?packageID=%s">%s</a></dd>' % (pkg, pkg))
|
||||
print('</dl>')
|
||||
print('<p>The script that generated this page can be found at ')
|
||||
print('<a href="https://pagure.io/releng/blob/main/f/scripts">https://pagure.io/releng/blob/main/f/scripts</a>.')
|
||||
print('There you can also report bugs and RFEs.</p>')
|
||||
print('<a href="https://forge.fedoraproject.org/releng/tooling/src/branch/main/release-process/mass-rebuilds/need_rebuild.py">https://forge.fedoraproject.org/releng/tooling/src/branch/main/release-process/mass-rebuilds/need_rebuild.py</a>.')
|
||||
print('Please report bugs and RFEs to <a href="https://forge.fedoraproject.org/releng/tickets/issues">the releng issue tracker</a>.</p>')
|
||||
print('</body>')
|
||||
print('</html>')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue