| |
@@ -51,7 +51,7 @@
|
| |
"@critical-path-standard",
|
| |
"@critical-path-xfce",
|
| |
]
|
| |
- PRIMARY_ARCHES = ("armhfp", "aarch64", "x86_64")
|
| |
+ PRIMARY_ARCHES = ("aarch64", "x86_64")
|
| |
ALTERNATE_ARCHES = ("ppc64le", "s390x")
|
| |
BODHI_RELEASEURL = "https://bodhi.fedoraproject.org/releases/?rows_per_page=500"
|
| |
FEDORA_BASEURL = "http://dl.fedoraproject.org/pub/fedora/linux/"
|
| |
@@ -126,9 +126,6 @@
|
| |
# be marked incorrectly
|
| |
conf.persistdir = temp_cache_dir
|
| |
conf.installroot = temp_install_root
|
| |
- # dnf needs arches, not basearches to work
|
| |
- if arch == "armhfp":
|
| |
- conf.arch = "armv7hl"
|
| |
else:
|
| |
conf.arch = arch
|
| |
packages = dict()
|
| |
@@ -269,9 +266,6 @@
|
| |
|
| |
def generate_critpath(release, args, output, jsonout, forcebranched=False):
|
| |
check_arches = args.arches.split(",")
|
| |
- if not (release.isdigit() and int(release) < 37):
|
| |
- # armhfp is gone on F37+
|
| |
- check_arches.remove("armhfp")
|
| |
alternate_check_arches = args.altarches.split(",")
|
| |
package_count = 0
|
| |
|
| |
F36 is EOL now, we don't generate critpath for it any more, so
we don't need this. This also fixes a crash if you passed arches
on the cmdline.
Signed-off-by: Adam Williamson awilliam@redhat.com