#508 Remove unused arches from completion
Merged a year ago by onosek. Opened a year ago by mikelo2.
mikelo2/fedpkg remove-old-arches  into  master

@@ -359,7 +359,7 @@ 

  

  _fedpkg_arch()

  {

-     echo "i386 i686 x86_64 armv5tel armv7hl armv7hnl ppc ppc64 ppc64le ppc64p7 s390 s390x"

+     echo "aarch64 armhfp i686 ppc64le s390x x86_64"

  }

  

  _fedpkg_branch()
@@ -388,4 +388,4 @@ 

  # sh-indent-comment: t

  # indent-tabs-mode: nil

  # End:

- # ex: ts=4 sw=4 et filetype=sh 

\ No newline at end of file

+ # ex: ts=4 sw=4 et filetype=sh

file modified
+2 -3
@@ -70,6 +70,5 @@ 

      return tuple(output.decode(sys.stdout.encoding).split())

  

  

- build_arches = ChoicesCompleter(("i386", "i686", "x86_64", "armv5tel",

-                                  "armv7hl", "armv7hnl", "ppc", "ppc64",

-                                  "ppc64le", "ppc64p7", "s390", "s390x"))

+ build_arches = ChoicesCompleter(("aarch64", "armhfp", "i686", "ppc64le",

+                                  "s390x", "x86_64"))

Signed-off-by: Mikel Olasagasti Uranga mikel@olasagasti.info

rebased onto c3388a3

a year ago

That wiki page is outdated it seems.

  • F36 will be the last one supporting https://fedoraproject.org/wiki/Changes/RetireARMv7
  • F37 and later builds by default for aarch64, i686, ppc64le, s390x, x86_64
  • EPEL8 and later builds by default for aarch64, ppc64le, x86_64
  • EPEL7 builds by default for ppc64le, x86_64

Looks better without the i386 :-).

Pull-Request has been merged by onosek

a year ago